mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Feb 2022
Posts: 12
M
Pikka bird
OP Offline
Pikka bird
M
Joined: Feb 2022
Posts: 12
Hello,
i would show this custom WHOIS :

[SSL] nick-user is under SSL connection
[Spoof] nickuser is under Cloaked connection


raw 320:*:{ myCustomMsg -a SSL $2 is under SSL connection | haltdef }
raw 320:*:{ myCustomMsg -a Spoof $2 is under Cloaked connection | haltdef }

but i got
[SSL] nick-user is under SSL connection
[SSL] nick-user is under SSL connection



becouse same number raws:

RAW 320 - user is a Cloaked Connection (Spoof)
RAW 320 - user is a Secure Connection (SSL/TLS)

Someone can help me, please?

Thanks

Joined: Feb 2011
Posts: 450
K
Pan-dimensional mouse
Offline
Pan-dimensional mouse
K
Joined: Feb 2011
Posts: 450
What IRCd / network is this?

You could do something like this:

Code
raw 320:*:{
  if (SSL isin $1-) { myCustomMsg -a SSL $2 ... | haltdef }
  if (Cloaked isin $1-) { myCustomMsg -a Spoof $2 ... | haltdef }
}

Joined: Feb 2022
Posts: 12
M
Pikka bird
OP Offline
Pikka bird
M
Joined: Feb 2022
Posts: 12
thanks a lot, it's works!
I am from IRCnet


Link Copied to Clipboard