
Forum: http://tiny.cc/myster/
IRC: #Nynja @LUNet
Tag(s): [MysTer] or [Mr] or =Mr= or [Mr_N]

VanStryder

[MysTer]HawK
[MysTer]Xader

MichaelDeSanta
Cena

[Mr]RomanEmpire
[MysTer]Dragon
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menuelse if ( cmd == "pmirc" )
{
if (status[ player.ID ].IsReg == false) MessagePlayer(RED+"** [KM-Error]: >> "+ORANGE+"You Need To Registered First!",player);
else if ( status[ player.ID ].IsLogged == false ) MessagePlayer(RED+"** [KM-Error]: >> "+ORANGE+"You Need To Logged-In First!",player);
else if ( !text ) MessagePlayer(ORANGE+"Usage: /" + cmd + " [User] [Message]", player );
else if ( NumTok( text, " " ) < 2 ) MessagePlayer(ORANGE+"Usage: /" + cmd + " [User] [Message]", player );
else {
local user = GetTok( text, " ", 1 );
local msg = GetTok( text, " ", 2, NumTok( text, " " ));
EchoNotice( user, ICOL_LBLUE+"> Private Message from "+ICOL_RED+""+player.Name+""+ICOL_LBLUE+": "+msg );
MessagePlayer( WHITE+"> Sent Message to "+RED+""+user+""+WHITE+": "+msg, player );
}
}