08.05.2013, 22:50
Quote:
Of all the Players...
pawn Код:
|
new Storage[MAX_PLAYERS]; // Global
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++)
{
new Storage[i] = GetPlayerVehicleID(i);
//code (What you want to do with it)
}
Of all the Players...
pawn Код:
|
for(new i = 0; i < MAX_PLAYERS; i++)
{
new Storage[i] = GetPlayerVehicleID(i);
//code (What you want to do with it)
}