The welcome message below thing is not working. But I dont understand what the problem is. Tried many variations, but non seem to work.
Code:
on *:JOIN:#channel:{
if $+(!,%,$nick,.,welcomed) {
set -u43200 $+(%,$nick,.,welcomed) 1
msg $nick 05Hi $nick $+ , this is a message that you will receive only once every 12 hours.
}
}
I guess doing this on address is even better. Can you help?
Your syntx is wrong, i have not tested it but try the following amended code
Code:
on !*:JOIN:#channel:{
if !$($+(%,$nick,.,welcomed,$cid),2) {
set -u43200 $+(%,$nick,.,welcomed,$cid) 1
msg $nick 05Hi $nick $+ , this is a message that you will receive only once every 12 hours.
}
}
I just reread your post. A script going on the address would be alot better. So here it is.
Code:
on !*:JOIN:#channel:{
if !$($+(%,$wildsite,.,welcomed,.,$cid),2) {
set -u43200 $+(%,$wildsite,.,welcomed,.,$cid) 1
msg $nick 05Hi $nick $+ , this is a message that you will receive only once every 12 hours.
}
}