06.02.2012, 22:57
Hum, mais como funcionaria isso ai?
eu adiciono e da um erro
(940) : warning 203: symbol is never used: "Detector" //Linha nгo existe sу vai atй 939
eu adiciono e da um erro
(940) : warning 203: symbol is never used: "Detector" //Linha nгo existe sу vai atй 939
pawn Код:
Detector(Float: radi, playerid, string[], color)
{
if(!IsPlayerConnected(playerid))
return false;
static Pos[3];
GetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
for(new i; i < GetMaxPlayers(); i++)
{
if(!IsPlayerInRangeOfPoint(i, radi, Pos[0], Pos[1], Pos[2])) continue;
SendClientMessage(i, color, string);
}
return true;
}