mIRC Home    About    Download    Register    News    Help

Print Thread
#41952 15/08/03 05:47 AM
M
MTech
MTech
M
whats the event for mode +h on a nick? and whats the $thingy for the nick that it happens to?

#41953 15/08/03 05:53 AM
Joined: Feb 2003
Posts: 3,412
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,412
+h as in "helper" ? smirk

#41954 15/08/03 05:56 AM
M
MTech
MTech
M
like +o +h +v

#41955 15/08/03 05:59 AM
Joined: Feb 2003
Posts: 3,412
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,412
dont know that flag, what do it do?? if ($nick isop) = op
if ($nick isvo) = voice.. but never heard about +h ? thats half op or somthing? :tongue:

#41956 15/08/03 06:03 AM
M
MTech
MTech
M
its halfop i dont see a $halfop or whateverand i dont know the 'on event' for it

on *:VOICE:#: {
if ($vnick == $me) && (*Serv !iswm $nick) && (*.*.* !iswm $nick) .timer 1 5 /msg $chan ty $nick
}
on *:OP:#: {
if ($opnick == $me) && (*Serv !iswm $nick) && (*.*.* !iswm $nick) .timer 1 5 /msg $chan ty $nick
}

#41957 15/08/03 06:06 AM
Joined: Feb 2003
Posts: 3,412
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,412
sorry cant help you, im not on any network that using that flag so i never tryed to figure it out :tongue:

#41958 15/08/03 06:38 AM
P
pheonix
pheonix
P
on *:HELP:#:{
echo -a $hnick just got given half-op :-)
}
on *:DEHELP:#:{
echo -a $hnick just got they're half-op taken away :-(
}

Last edited by pheonix; 15/08/03 06:41 AM.
#41959 15/08/03 06:42 AM
Joined: May 2003
Posts: 215
L
Fjord artisan
Offline
Fjord artisan
L
Joined: May 2003
Posts: 215
I think you're looking for on HELP and on DEHELP, also the identifier $hnick

#41960 15/08/03 12:12 PM
M
MTech
MTech
M
on help? thats weird... how can i set a timer to pick a number randomly from say 4 - 10 seconds?

Last edited by MTech; 15/08/03 12:14 PM.
#41961 15/08/03 12:16 PM
P
pheonix
pheonix
P
/timer <amount of times> $r(4,10)

#41962 15/08/03 12:26 PM
M
MTech
MTech
M
i cant find help with $r...lol somone needs to update the help file =.=

#41963 15/08/03 12:30 PM
P
pheonix
pheonix
P
$r = $rand

#41964 15/08/03 12:37 PM
M
MTech
MTech
M
oh...ty smile

#41965 15/08/03 12:38 PM
P
pheonix
pheonix
P
np grin

#41966 15/08/03 08:18 PM
Joined: Jan 2003
Posts: 2,973
K
Hoopy frood
Offline
Hoopy frood
K
Joined: Jan 2003
Posts: 2,973
/timer <amount of times> $r(4,10)

that pck a random number only the first time. if a want a net number each iteration, use $!rand or $!r


Link Copied to Clipboard