mIRC Homepage
Posted By: yung Running bOts - 28/12/04 06:26 PM
Hey i juss recently registered a channel, for our counter strike clan, and now i heard about a bot called "clanbot" so i was wondering if anyone can assist me on how i can load that bot on my channel
Posted By: GogetaX Re: Running bOts - 28/12/04 06:28 PM
they best way it to do by your self =]
its realy easy...

just use on *:TEXT:.... and u already have a bot...
Posted By: yung Re: Running bOts - 28/12/04 06:31 PM
i did read the readme.txt fille....i did everything it said...but i still dont have clanbot in my channel....and also i heard.. im supposed be having another copy of mirc to run bots ?? i dont know
Posted By: GogetaX Re: Running bOts - 28/12/04 06:34 PM
i guess u need to open another copy of mirc...
and make the bot in the other copy of mirc...
Posted By: yung Re: Running bOts - 28/12/04 06:35 PM
hOw??? lol.
Posted By: GogetaX Re: Running bOts - 28/12/04 06:36 PM
youg, what exacly the clanbot need to do?
mabye ill explain to u how to build it...
Posted By: GogetaX Re: Running bOts - 28/12/04 06:37 PM
Quote:
hOw??? lol.


just CTRL + C and CTRL + V on mirc folder, then u get 2 copyes...

one copy, it for your personal using, then secund one, its for a bot...
Posted By: yung Re: Running bOts - 28/12/04 06:42 PM
okay...well first of all i want it to greet people who joined
have some command the users can type to see members in our clan
a way i can setup practices for clans
adverstise our clan somethig like that
if a scrim is taking place..have the bot tell the information. like server ip, and password

stuff like thattt, can u help me out?
Posted By: yung Re: Running bOts - 28/12/04 06:49 PM
hey..i was reading the readme.txt file for clan, and i was wondering wat "Set up the perform as you would as ClaNBoT WILL NOT join your channels
automatically for you!" that meant...wat does it mean my "set up the perform" wheres that?
Posted By: GogetaX Re: Running bOts - 28/12/04 06:50 PM
greet people:
Note: when u c %%%, replace it with your #channel
on *:JOIN:%%%:{
msg $chan Welcome $nick to $chan $+ !
}

to c members:
every member will write this on channel:
Note: They need to type '!join to clan' to join...
Note: replace $$$ with your Clan Name
on *:TEXT:!join to clan:%%%:{
write Members.txt $nick
msg $chan $$$ have a new member! $nick $+ !
}

here is a code that u can c all the members...
Note: Weite !members on the channel
on *:TEXT:!members:%%%:{
msg $chan Member List:
play $chan Members.txt
}

and i guess its all...
have problems?
if u have ICQ, MSN, write to me..
ICQ: 302549017
MSN/email: sergy100@netvision.net.il
Posted By: yung Re: Running bOts - 28/12/04 06:55 PM
whooa cool thxxx.......but onneeeEE ProbLEm....lol where do i write alll thattt...sryyyy newbie at mirccc
Posted By: GogetaX Re: Running bOts - 28/12/04 06:57 PM
Tools in start mena > Script Editor, selecting remote, and writing all of this in down of all the codes..
Posted By: yung Re: Running bOts - 28/12/04 06:59 PM
okayyy cool thxx i aprreciate it
Posted By: GogetaX Re: Running bOts - 28/12/04 07:01 PM
no problem ^^
Posted By: yung Re: Running bOts - 28/12/04 07:05 PM
ooppss wait waitttt one moree questitonn sry....do i write that script on the second copy of mirc ...or the original??? sry again lol
Posted By: GogetaX Re: Running bOts - 28/12/04 07:07 PM
never mind where...
Posted By: yung Re: Running bOts - 28/12/04 07:11 PM
wow i feel like an idiot..lol well thx again
Posted By: DanielC Re: Running bOts - 29/12/04 12:34 PM
you may want to add a minor thing to this. I added it in bold.

greet people:
Note: when u c %%%, replace it with your #channel
on *:JOIN:%%%:{
if ($nick != $me) msg $chan Welcome $nick to $chan + !
}

that way you wont be welcoming yourself to the channel eveytime you join.
Posted By: SladeKraven Re: Running bOts - 29/12/04 12:48 PM
Why not just use,
Code:
on !*:Join:%%%: {
  if ($nick != $me) msg $chan Welcome $nick to $chan + !
}


To the original poster, if you want an auto greet.

The following code allows users to customize their own greeting message.

Code:
on 1:Text:!greet*:#: {
  if (!$2) { 
    .notice $nick No message set.
    writeini -n greet.ini Greetings $nick $+ .
    halt 
  }
  else { 
    writeini -n greet.ini Greet $nick $2- 
    halt 
  }
}

on !*:JOIN:#: {
  if ($readini(greet.ini,Greet,$nick)) { 
    msg $chan $readini(greet.ini,Greet,$nick) 
    halt 
  }
}
Posted By: ricky_knuckles Re: Running bOts - 30/12/04 12:56 AM
i can write you a simple bot or put one of mine in your #
just give me the server and #

------------------------------------or-----------------------------------
tell me what you want it to do and ill make it

-----
i run a clan channel myself
Posted By: tidy_trax Re: Running bOts - 30/12/04 11:41 PM
Quote:
Why not just use,
Code:
on !*:Join:%%%: {
  if ($nick != $me) msg $chan Welcome $nick to $chan + !
}


The ! prefix in that on join event makes the if ($nick != $me) statement useless.
Posted By: SladeKraven Re: Running bOts - 31/12/04 05:48 PM
Aye, I really have no idea why I added that at all. Cheers for observation.
© mIRC Discussion Forums