Skip to content
MSN

Private Msg

A TG007 community discussion started by Phenom™.

Discussion 10 posts
Page 1 of 1
Open
Topic #6585 · 10 published posts · 806 views

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.

Edited May 9, 2006 2:40 AM by «Çhãin™»
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 :lol:

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