mIRC Home    About    Download    Register    News    Help

Print Thread
#239295 10/10/12 12:24 PM
A
anthonytan
anthonytan
A
on *:TEXT:*Trigger*:#:{
/msg $me $address($nick,2) Triggered
}


Hi

Currently i'll receive a pm (*!*@abc.com Trigger)

i need help to change the *!*@abc.com to *@abc.com ??

any idea? pls.



#239296 10/10/12 02:11 PM
Joined: Nov 2006
Posts: 1,552
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Nov 2006
Posts: 1,552
Manipulate your string with text- and token identifiers.
But instead of $address(nick,N) which relies on the IAL, I'd use some identifier that is directly associated with the event ($fulladdress, $address, $wildsite or $site):
Code:
*@ $+ $site
or
Code:
$mid($wildsite,3-)

Horstl #239297 10/10/12 04:14 PM
A
anthonytan
anthonytan
A
Originally Posted By: Horstl
Manipulate your string with text- and token identifiers.
But instead of $address(nick,N) which relies on the IAL, I'd use some identifier that is directly associated with the event ($fulladdress, $address, $wildsite or $site):
Code:
*@ $+ $site
or
Code:
$mid($wildsite,3-)


Hey Horstl,

I didn't know there is $site etc. Thank alot;)


Link Copied to Clipboard