08.11.2010, 12:48
Contar Players na Бrea
Esta funзгo retorna nъmeros de players em uma бrea
Por favor parem de postar cуdigos inъteis e repetidos!
Esta funзгo retorna nъmeros de players em uma бrea
pawn Код:
stock ContarPlayersArea(Float:minx, Float:maxx, Float:miny, Float:maxy)
{
new PlayersNaArea,Float:x, Float:y, Float:z;
for(new i;i<MAX_PLAYERS;i++) if(IsPlayerConnected(i))
{
GetPlayerPos(i, x, y, z);
if (x > minx && x < maxx && y > miny && y < maxy)
{
PlayersNaArea++;
}
}
return PlayersNaArea;
}
printf("Nesta Area tem %d Players", ContarPlayersArea(500,200,300,500)); //- Modo de Uso