09.05.2017, 13:31
testa esse, OBS: estб usando include YSI/iterate ( foreach )
Код:
public OnPlayerText(playerid, text[ ]) { new Float:X, Float:Y, Float:Z; GetPlayerPos(playerid, X, Y, Z); foreach(new all : Player) // contagem de todos os player online { if(IsPlayerInRangeOfPoint(all, 100.0, X, Y, Z)) //se estiver em um range de 100 proximo de vc { new string[128]; format(string,128,"%s[%d]: %s"NomeRP(playerid),playerid,text); SendClientMessage(playerid,GetPlayerColor(playerid),string); } } return false; }