12.11.2011, 23:32
usa assim
ai voce so precisarб por uma cor, testa ai o code fiz aqui agora.
se funcionar fica assim ex:
vк ai ^^
ou entao pode ser isto:
pawn Код:
forward ProxDetector(Float:radi, playerid, string[], color);
public ProxDetector(Float:radi, playerid, string[], color)
{
new Float:Pos[3];
GetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(IsPlayerInRangeOfPoint(i, radi, Pos[0], Pos[1], Pos[2]))
{
SendClientMessage(i, color, string);
}
}
}
return 1;
}
se funcionar fica assim ex:
pawn Код:
ProxDetector(30.0, playerid, string, COLOR_PURPLE);
ou entao pode ser isto:
pawn Код:
GetPlayerName(playerid)
// o certo seria
new Name[MAX_PLAYER_NAME];
GetPlayerName(playerid, Name, MAX_PLAYER_NAME);