10.10.2018, 22:39
Quote:
Код:
new String[100], aname[24];//isso sгo duas string GetPlayerName(playerid, aname, 24);//aqui eu armazeno o nome do player na string aname format(String, sizeof(aname), "Seu nome й : %s", aname);//aqui eu insiro na String o nome do player com %s ou %e jб que й texto |
PHP код:
new Float:pos[3];
GetPlayerPos(playerid, pos[0], pos[1], pos[2]);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerInRangeOfPoint(i, 10.0, pos[0], pos[1], pos[2]))
{
SendClientMessage(i, -1, String);
}
}