private message to player

serverkid

New member
Messages
48
Points
0
is there a way to send private message or private announcement to a player?

im making a script which add items to a player and when they login, they will receive the item,

so if they are online, i need to tell them to relogin. thanks in advance
default_smile.png


 
Use message. I'm assuming your script contains a variable in which the target player's name is stored (i.e. .@playerName$), so you can include a message for them after the script has sent a gift - regardless of whether or not they are online (if they're online, they'll receive it).

Example:

Code:
message .@playerName$, "A GM has sent you a gift. Please relog to receive it.";
 
Last edited by a moderator:
Back
Top