mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: May 2004
Posts: 1
1
Mostly harmless
OP Offline
Mostly harmless
1
Joined: May 2004
Posts: 1
ok, so i want to autovoice ANY nick with RJ| in its nick. so RJ|92, RJ|23 etc, will get voiced.

heres my script, which works for a friend of mine, but not me:

on *:JOIN:#RJ2K3:{
if (RJ| isin $nick) {
mode $chan +v $nick
}
}

im running polaris 2.08 on mIRC 6.12

...any ideas?

Joined: Aug 2003
Posts: 1,831
I
Hoopy frood
Offline
Hoopy frood
I
Joined: Aug 2003
Posts: 1,831
/avoice on
/avoice RJ|*!*@* #channelname [network]
/help /avoice

Joined: Jun 2003
Posts: 5,024
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Jun 2003
Posts: 5,024
As Iori implied, it'd be simpler, easier and more sensible to use the mIRC AVoice feature - although I thought if you were using 'isin' you'd have *RJ|*!*@* on your AVoice list ;p

For the benefit of edumacation however, your code should work fine. However, firstly you might like to use on @*:join:#RJ2K3:{ as this means it'll only activate when you're an op (Which is of course the only time you can voice someone, bar non-default modes such as half-op).
The most likely reason it doesn't work though is conflicting code. Put the code in a new file, in Remotes (ALT+R, and File > New). Also make sure Remotes are on with /remote on.

Regards,


Mentality/Chris

Link Copied to Clipboard