11.03.2014, 15:00
Bem, queria fazer algo que й encontrado em servidores RPG. o cara fala e sу que vк o que ele falou й quem ta perto dele. Seguindo a lуgica de minha programaзгo HARD, consegui fazer isso kk :
sу que infelizmente deu erro. error 036: empty statement.
e foi na linha que verifica se os players estгo prуximos ao cara que falou
if(IsPlayerInRangeOfPoint( i , 0.5, x, y, z ));
se alguem puder da uma ajuda ai. !
pawn Code:
public OnPlayerText(playerid, text[])
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
for( new i = 0; i <MAX_PLAYERS; i++)
{
if(IsPlayerInRangeOfPoint( i , 0.5, x, y, z ));
{
{
new var[100], name[80];
GetPlayerName(playerid, name, 80);
format(var, sizeof(var), "%s Diz: %s", name, playerid, text);
SendClientMessage(i, Branco ,var);
return true;
}
}
}
return 0;
}
e foi na linha que verifica se os players estгo prуximos ao cara que falou
if(IsPlayerInRangeOfPoint( i , 0.5, x, y, z ));
se alguem puder da uma ajuda ai. !