mIRC Home    About    Download    Register    News    Help

Print Thread
#44364 27/08/03 10:33 AM
F
Frank_Butcher
Frank_Butcher
F
Hello people.

I no i sound like a complete noob but i have a channel on quakenet uk and i want to add a bot to the channel to host it and to make it ours. Now im a complete irc noob and i need to know how to create one of these bots. Can someone tell me how??

Thanks smile

Last edited by Frank_Butcher; 27/08/03 10:34 AM.
#44365 27/08/03 04:29 PM
Joined: Jan 2003
Posts: 2,973
K
Hoopy frood
Offline
Hoopy frood
K
Joined: Jan 2003
Posts: 2,973
First, and best, place to start is /help. I would look up /help on text for how to get commands to trigger. Next you might want to look for /help /mode, /help /kick, and just for an all around good tutorial /ircintro.

All the /commands can be typed in any window, and will bring you to the topic. Tou give you an idea, if you wanted to op a use when they type !opme, you could use

on @*:TEXT:!opme:#: {
/mode $chan +o $nick
}

On Text - Trigger when a user types something in the channel (:#:)
@ - Means only perform this command if the bot has op (+o/@)
@* - The * means trigger for all levels (for more help on use levels, try /help levels)
!opme - The text you are looking for
/mode - Set the mode on channel $chan to op the person who typed the command (that being $nick)

#44366 27/08/03 08:24 PM
Joined: Dec 2002
Posts: 3,015
P
Hoopy frood
Offline
Hoopy frood
P
Joined: Dec 2002
Posts: 3,015
To "make it yours" you can register it with quakenet and make use of their L or Q bots, which should provide what you want from a bot. Altho i'm not really familiar with quakenet, their website at http://www.quakenet.org/ has tons of help files and a forum if you need more network specific help.

Beyond that, if you want your own bot, decide if you want an eggdrop bot, which would have to be run on a shell and is more complex (and is scripted in TCL) or a mircbot (uses mIRC scripting, as in KT's reply) which would need someone to run it 24/7 on their puter. (see www.mircscripts.org or http://www.mishscript.de/help/mircbot.htm )


Link Copied to Clipboard