First of all i apologize my bad english but i found nothing about that in this forum and nothing in Google and for that reason i post here
http://forum.egghelp.org/viewtopic.php? ... ght=botnet <<< this dosent work i think because ist for the quakenet -.-
I have 7 Bots, 1 Request Bot = Hub , 2 Fun Bots , 2 News Bots, 2 Stats Bots these are Leave-Bots
Now to the script when someone comes in the chan and type
Code: Select all
(nick) !request BOTS
(RequestBot) Funny = FUN-BOT
(RequestBot) Happy = FUN-BOT
(RequestBot) News-Bot = NEWS-BOT
(RequestBot) Rss-Freak = NEWS-BOT
(RequestBot) ChanStat = STATS-BOT
(RequestBot) WebStats = STATS-BOT
Code: Select all
(nick) !request Happy #chan
(bot) Sending Bot to #chan
WhIt3noIs3
edit:
For the !bots tigger i can use this i only need !request botnick #chan
Code: Select all
bind pub - !bots bots
proc bots {nick uhost hand channel rest} {
putnow "PRIVMSG $channel :Funny = FUN-BOT"
putnow "PRIVMSG $channel :Happy = FUN-BOT"
putnow "PRIVMSG $channel :News-Bot = NEWS-BOT"
putnow "PRIVMSG $channel :Rss-Freak = NEWS-BOT"
putnow "PRIVMSG $channel :ChanStat = NEWS-BOT"
putnow "PRIVMSG $channel :WebStat = NEWS-BOT"
return 0
}