13.04.2012, 21:26
Desenvolvi um sistema + ou -.
Por via das dъvidas, teste antes de botar no servidor.
Por via das dъvidas, teste antes de botar no servidor.
pawn Код:
#include a_samp
new bool:Conhece[MAX_PLAYERS char][MAX_PLAYERS char];
public OnPlayerText(playerid, text[])
{
static
string[128],
Nome[24],
Float:_X,
Float:_Y,
Float:_Z
;
string[0] = '\0';
GetPlayerName(playerid, Nome, 24);
GetPlayerPos(playerid, _X, _Y, _Z);
for(new i, e = GetMaxPlayers(); i != e; ++i){
if(IsPlayerConnected(i)){
if(IsPlayerInRangeOfPoint(i, 30.0, _X, _Y, _Z)){
format(string, sizeof(string),"%s: %s", Conhece[playerid][i] ? Nome :("Desconhecido"));
SendClientMessage(i, -1, string);
}
}
}
return 1;
}