i need a private msg code that when someone join the script whisper, in a whisper box the chat user for msn groups.
Because for some odd reason my code it shows the msg on the main screen.
i need a private msg code that when someone join the script whisper, in a whisper box the chat user for msn groups.
Because for some odd reason my code it shows the msg on the main screen.
on ^*:JOIN:*: {
if ($nick == $me) { halt }
privmsg $nick <yourMessageHere>
}
on me:*:join:#:hop #
I believe you dont need to halt if your doing a whisper. If I'm not mistaken ... you cant whisper yourself.
I dunno what you mean, but i had this problem where when i tried to whisper people it showed in screen to them, try; sockwrite -n $sockname WHISPER $sockname $right($gettok($1,1,33),-1) :message
try this
on *:join:#: {
/privmsg $nick Welcome to the room
/close -m $Nick
}
no need for the '/'
Pomperom
works fine with it ![]()
Looks ugly tho
Not only that, in most instances, / is unnecessary when identifing things. Such as echo, msg, setting variables etc etc.
on *:JOIN:#: { if ($nick != $me) {
privmsg $nick Hello
}
}
or this,
similar to X-System's but a little different
Sign in to reply or start a new topic where your account has permission.