This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

flags

Old posts that have not been replied to for several years.
Locked
K
Kaarel
Halfop
Posts: 91
Joined: Sat Apr 26, 2003 5:24 am

flags

Post by Kaarel »

Ok, I am tired that when people change host or name does not get to use bot command !ban !kick


1- how to clear all users from bot user list
2- is wrigth to use .adduser or .+user , Id like to that way, even a nick change his nick or host he still can use bot commands
User avatar
caesar
Mint Rubber
Posts: 3778
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

1. directly from dccc with it: .-user user.. and so on, or via an tcl using the foreach and deluser. Also don't forget to skip yourself from beeing deleted. :)

eg:

Code: Select all

foreach deluser [userlist] {
if {$deluser == "yourhandle"} {continue }
userdel $deluser
}
2. do a .help adduser and a .help +user .. you will see the difference. Basicaly they do the same thing but different. Also, dosen't matter what nick you have IF the hostmask matches one in the bot's list of your user.
Once the game is over, the king and the pawn go back in the same box.
Locked