mIRC Home    About    Download    Register    News    Help

Print Thread
#253401 13/06/15 02:49 AM
Joined: Mar 2015
Posts: 26
A
Anti Offline OP
Ameglian cow
OP Offline
Ameglian cow
A
Joined: Mar 2015
Posts: 26
Hello all,

I have some problem with this type of variables.
On remote I put :

on *:JOIN:#:{
set %entered [ $+ $nick ] joined
}

I expected to have a variable named :

%entered+nick_name joined

but I got :

%entered$nick joined

Where is the error ? Why mIRC don't replace the identifier $nick with its value ?

Thanks



Last edited by Anti; 13/06/15 02:50 AM.
Anti #253402 13/06/15 02:51 AM
Joined: Jan 2004
Posts: 1,358
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Jan 2004
Posts: 1,358
set %entered [ $+ [ $nick ] ] joined

Anti #253406 13/06/15 04:06 AM
Joined: Jun 2014
Posts: 248
B
Fjord artisan
Offline
Fjord artisan
B
Joined: Jun 2014
Posts: 248
or

set %entered $+ $nick joined


Link Copied to Clipboard