|
Joined: Oct 2005
Posts: 54
Babel fish
|
OP
Babel fish
Joined: Oct 2005
Posts: 54 |
i was wondering if someone knew of a good tutorial for people that are just starting out too make bots i really wana learn how to make bots just dont know some good tutorial soo please help me!!!
|
|
|
|
Joined: Jun 2003
Posts: 5,024
Hoopy frood
|
Hoopy frood
Joined: Jun 2003
Posts: 5,024 |
Please do NOT use the 'Notify Moderator' button to draw attention to your post, it won't make us answer you, but rather, do the opposite.
Regards,
Mentality/Chris
|
|
|
|
Joined: Aug 2004
Posts: 7,252
Hoopy frood
|
Hoopy frood
Joined: Aug 2004
Posts: 7,252 |
I don't know of a tutorial that covers bots, as bots can incorporate a number of different aspects, some of which have tutorials. A location with a lot of tutorials, ranging from newbies to expert levels is Tutorials
|
|
|
|
Joined: Oct 2005
Posts: 54
Babel fish
|
OP
Babel fish
Joined: Oct 2005
Posts: 54 |
srri thats what i thought it was for .... soo u think u can help me?
|
|
|
|
Joined: Aug 2004
Posts: 7,252
Hoopy frood
|
Hoopy frood
Joined: Aug 2004
Posts: 7,252 |
The Notify Moderator button is to bring special attention to a post, usually for things like inappropriate content, multiple postings of the same thing in different forum areas, etc.
And check out my previous response.
|
|
|
|
Joined: Oct 2005
Posts: 54
Babel fish
|
OP
Babel fish
Joined: Oct 2005
Posts: 54 |
umm that tutorial has nothing about bots on it i need somthing that will explain a lil bit about bots
|
|
|
|
Joined: Oct 2005
Posts: 11
Pikka bird
|
Pikka bird
Joined: Oct 2005
Posts: 11 |
maybe if you could list some of the features you want in your bot, it would be easier for everyone else.
|
|
|
|
Joined: Oct 2005
Posts: 54
Babel fish
|
OP
Babel fish
Joined: Oct 2005
Posts: 54 |
well i just wana learn the basics...
|
|
|
|
Joined: Jul 2003
Posts: 655
Fjord artisan
|
Fjord artisan
Joined: Jul 2003
Posts: 655 |
A good place to start is by typing /help and reading. The scripting functions are the same no matter what the purpose. Then when you have an idea of what you want to create you can proceed to the above mentioned tutorials page and see if there are any that cover similar things.
"Allen is having a small problem and needs help adjusting his attitude" - Flutterby
|
|
|
|
Joined: Aug 2005
Posts: 1,052
Hoopy frood
|
Hoopy frood
Joined: Aug 2005
Posts: 1,052 |
Here's a tutorial simple and short put this on your bot (2nd mirc script) or anything like that put this in HOLD on keyboard ALT press R let go > Click File > New put this there on @:TEXT:*:#: { ;basically here says your creating a on text event so if a text is said in a channel we call it on text and also only Operators (ops) can performed this commandif ($1 == !fire) && ($2 ison #) { ;here we basically say if $1 (1st word) equals to !fire then perform next command and also makes sure that $2 (being the 2nd word which is the nickname is on the channel before kicking or banning) describe $chan has fired $2 from channel ;Same has using /me has fired nick from channel you see i use $2 here the reason is because $2 = the second word so if i use !fire Dave it will fire dave from channelmode # +b $address($2,3) ;Bans the address of the $2 (2nd word being the nickname)kick # $2 You have been fired from $chan ;kicks you guessed it $2 (2nd word being the nick) from # (current channel script is performed in) } } else read /help on TEXT or /help like someone said 
if $reality > $fiction { set %sanity Sane }
Else { echo -a *voices* }
|
|
|
|
Joined: Dec 2002
Posts: 3,547
Hoopy frood
|
Hoopy frood
Joined: Dec 2002
Posts: 3,547 |
I hope not all tutorials are like that, that wont work..  on @ <level>:TEXT:*:#: { * Andy points Lpfix towards the On Text section of the help file.. 
-Andy
|
|
|
|
Joined: Aug 2005
Posts: 1,052
Hoopy frood
|
Hoopy frood
Joined: Aug 2005
Posts: 1,052 |
I thought you were suppose to be..  anyhoo yeah i missed out the * or 1 :S
if $reality > $fiction { set %sanity Sane }
Else { echo -a *voices* }
|
|
|
|
Joined: Aug 2004
Posts: 7,252
Hoopy frood
|
Hoopy frood
Joined: Aug 2004
Posts: 7,252 |
That is a Tutorial section, not a single tutorial, and each of those tutorials can help you learn about the different parts that can be used either by themselves or in conjunction with others to make a bot.
|
|
|
|
Joined: Feb 2004
Posts: 2,019
Hoopy frood
|
Hoopy frood
Joined: Feb 2004
Posts: 2,019 |
Meep meep!
I don't see the $eval tutorial in Mscriptbox yet o.O
Gone.
|
|
|
|
Joined: Oct 2004
Posts: 8,330
Hoopy frood
|
Hoopy frood
Joined: Oct 2004
Posts: 8,330 |
A bot is nothing more than a lot of scripts put together on a an extra client. All tutorials will help you to add scripts to do what you need into the bot. That's how you make a bot.
For example, if you want the bot to prevent floods, go look up a flood protection tutorial and add a script for flood protection into the bot. If you want it to send a !help file to someone, or just respond with text to a trigger like that, look up tutorials about ON TEXT or DCC SEND. And, of course, the help file is a great resource.
Invision Support #Invision on irc.irchighway.net
|
|
|
|
Joined: Dec 2002
Posts: 164
Vogon poet
|
Vogon poet
Joined: Dec 2002
Posts: 164 |
mScriptBox 1.10 has been released now - Be happy with it 
DALnet: #HelpDesk, #mIRC, #MISHScript - Undernet: #mIRC, #mIRC-Scripts
|
|
|
|
|