mIRC Home    About    Download    Register    News    Help

Print Thread
#184761 01/09/07 11:52 AM
P
Panic
Panic
P
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

Joined: Dec 2002
Posts: 3,534
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,534
Code:
ON me:*:Join:#: msg # <Some Message Here>

P
Panic
Panic
P
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

Joined: Apr 2006
Posts: 464
O
Fjord artisan
Offline
Fjord artisan
O
Joined: Apr 2006
Posts: 464
Code:
on *:TEXT:!part*:#:{
  if (($2 == CrazyMan) && ($nick isop $chan)) {
    part $chan
  }
}

Joined: Dec 2002
Posts: 3,534
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,534
Code:
ON *:Text:!part CrazyMan:#:{
  if ($nick isop $chan) {
    part $chan
  }
}

P
Panic
Panic
P
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

Joined: Dec 2002
Posts: 3,534
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,534
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.

P
Panic
Panic
P
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

Joined: Dec 2002
Posts: 3,534
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,534
I showed you the full code in my previous post. Also, don't forget those code tags. smile

P
Panic
Panic
P
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

P
Panic
Panic
P
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

Joined: Jun 2006
Posts: 506
D
Fjord artisan
Offline
Fjord artisan
D
Joined: Jun 2006
Posts: 506
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

P
Panic
Panic
P
thanks

P
Panic
Panic
P
re visting this topic this does not work sorry have no idea why?

Thanks
Panic


Link Copied to Clipboard