thanks for the fast reply iamdeath
much appreciated. problem is, it has to be like this... say i am on #chan without my bot. and i want for it to join the chan... so i type the word
come right? and on my mirc script, there are line that wil recognize what i just say and then my script will automatically query the bot:
Code: Select all
on *:input:#:{
if ($nick == mynick) && ($1 == come) { .msg botname join # }
if ($nick == mynick) && ($1 == goaway) { .msg botname part # }
}
and when the bot recieves a query message:
join #chan from me, it will then add #chan to its internal channel list (
again not sure if this is possible with out manualy configureing the bot or with DDC add chan) and then joins the channel. same thing if i say
goaway. my mircscript will capture my on *:input:# -->
goaway and triggers the /msg botname part #chan
just a thought: the
goaway command doesnt necesarily have to be like the come command in a sense that, the bot cud just capture that i just sed goaway in a channel and it'l know that it has to part that channel without me /msg-ing him to part #chan... i hope i am clear
what do u think iamdeath?