mIRC Homepage
Posted By: Panic Calling All Scripters - 01/09/07 11:52 AM
Hello all scripters i know i have made a few scripting help posts in the past few days but i am really really bad at scripting so i currently have this script

On *:Invite:#: {
if (!$istok(%stopjoin,#,44)) {
join #
.notice Panic,trollman118 I was invited to # by $nick
}
}

ON *:Text:!stopjoin:#: {
if ($istok(trollman118 Panic,$nick,32)) {
%stopjoin = $addtok(%stopjoin,#,44)
msg $chan I will no longer Auto Join this channel on invite Anymore!
part #
}
}

ON *:Notice:!allowjoin &:?: {
if ($istok(trollman118 Panic,$nick,32)) && ($istok(%stopjoin,$2,44)) {
%stopjoin = $remtok(%stopjoin,$2,44)
join $2
}
}

and it works fine but one thing when the bot gets on the channel if it is not in !stopjoin can i get it to say something alot like the Runescript on join

Can you guys help me!

Thank you
Panic
ctcwcu head
Posted By: SladeKraven Re: Calling All Scripters - 01/09/07 12:21 PM
Code:
ON me:*:Join:#: msg # <Some Message Here>
Posted By: Panic Re: Calling All Scripters - 01/09/07 12:52 PM
Last thing how do i do a part like runescript can this be made only that ops in the room and if they type !part CrazyMan and he leaves
Posted By: OrionsBelt Re: Calling All Scripters - 01/09/07 12:54 PM
Code:
on *:TEXT:!part*:#:{
  if (($2 == CrazyMan) && ($nick isop $chan)) {
    part $chan
  }
}
Posted By: SladeKraven Re: Calling All Scripters - 01/09/07 12:58 PM
Code:
ON *:Text:!part CrazyMan:#:{
  if ($nick isop $chan) {
    part $chan
  }
}
Posted By: Panic Re: Calling All Scripters - 01/09/07 01:06 PM
and can it notice Panic and trollman118 when someone uses the part CrazyMan command can it tell us what room and who did it

Thank you
Panic
ctcwcu head
Posted By: SladeKraven Re: Calling All Scripters - 01/09/07 01:23 PM
I wish you'd have said that in your original post would have saved alot more time. No worries though.

Just add .notice Panic $nick used the part command in # inside the if statement, after part $chan.

Code:
ON *:Text:!part CrazyMan:#:{
  if ($nick isop $chan) {
    part $chan
    .notice Panic $nick used the part command in #
  }
}

Like so.

But that really is pretty basic stuff, you should refer to the bible first. I mean help file.

On a side note, when posting code on the forums it makes it easier if the code is inside the code tags. Which is the # symbol inbetween quote and php tags.
Posted By: Panic Re: Calling All Scripters - 01/09/07 01:32 PM
It is not working it is like this

}
ON *:Text:!part CrazyMan:#:{
if ($nick isop $chan) {
part $chan .notice Panic,trollman118 $nick used the part command in #
}


Thank you
Panic
ctcwcu head
Posted By: SladeKraven Re: Calling All Scripters - 01/09/07 01:48 PM
I showed you the full code in my previous post. Also, don't forget those code tags. smile
Posted By: Panic Re: Calling All Scripters - 01/09/07 06:02 PM
Ok thanks i guess there was a error because i could not see the code well i am on my laptopbot now and i can thank you so much you have been a great help to me and everyone that uses my bot including staff members and other such users

Thank you again
Panic
ctcwcu head
Posted By: Panic Re: Calling All Scripters - 01/09/07 06:06 PM
Originally Posted By: SladeKraven
I wish you'd have said that in your original post would have saved alot more time. No worries though.

Just add .notice Panic $nick used the part command in # inside the if statement, after part $chan.

Code:
ON *:Text:!part CrazyMan:#:{
  if ($nick isop $chan) {
    part $chan
    .notice Panic $nick used the part command in #
  }
}

Like so.

But that really is pretty basic stuff, you should refer to the bible first. I mean help file.

On a side note, when posting code on the forums it makes it easier if the code is inside the code tags. Which is the # symbol inbetween quote and php tags.


Well yes but on my mirc it is really strange there is no help file i have uninstalled Mirc and re installed it but i still can't get it i have even re downloaded it
Posted By: deegee Re: Calling All Scripters - 01/09/07 09:36 PM
Originally Posted By: Panic
Well yes but on my mirc it is really strange there is no help file i have uninstalled Mirc and re installed it but i still can't get it i have even re downloaded it


Note that it isn't "mirc.hlp" now, it's "mirc.chm"

/help or /help <keyword> still work the same, as does the F1 key wink
Posted By: Panic Re: Calling All Scripters - 02/09/07 08:27 AM
thanks
Posted By: Panic Re: Calling All Scripters - 02/09/07 04:39 PM
re visting this topic this does not work sorry have no idea why?

Thanks
Panic
© mIRC Discussion Forums