AllDayGrindingV2   -  Mar 20, 2014

So Im Creating a bot On twitch and I have it In one channel With around 20 Commands. Does anyone know Using mIRC How I can run it in different chats with Different commands? I know how to do /join #

[AFX]  -  Mar 20, 2014

on :text:!something:: {
if ($chan = #channelname) { commands}
elseif ($chan = #channelname1) { commands }
elseif ($chan = #channelname2) { commands }
so on and so fourth
}

or

on :text::*: {
if ($chan = #channelname) {
if ($1 = !something) { commands }
elseif ($chan = #channelname1) {
if ($1 = !something) { commands }
}
}

can get even more cleaner with this code but i am not going to get into that

/help on TEXT for more information
/help if statements for more information
/help $1 for more information

AllDayGrindingV2  -  Mar 21, 2014

So where do I put that? Into the code thing and put it after each channels commands? I'm only 14 and starting out

[AFX]  -  Mar 23, 2014

i suggest reading over mirc's help file for more information since you are "starting out". it is really difficult for me to explain to a newbie to MSL what to do, where to put things, why things break, etc etc, nor do i have to the time to do so. you can even start out by examining other scripts that may function similar to what you are trying to accomplish

AllDayGrindingV2  -  Mar 25, 2014

Where can I find other scripts, I can't find any

Sign in to comment

Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.