17.04.2014, 23:10
How to do roleplay chat?... This is shows the message only to the play who sended the message... i want it will send to everyone in this range... (sorry for bad english)
PHP код:
public OnPlayerText(playerid, text[])
{
format(String,sizeof(String),"%s says: %s",GetName(playerid),text);
GetPlayerPos(playerid,X,Y,Z);
if(IsPlayerInRangeOfPoint(playerid, 13.0, X, Y, Z)){
SendClientMessage(playerid,-1,String);}else{return 0;}
return 0;
}