17.02.2011, 03:14
ReStreamed, OnGameModeInit is called when the gamemode loads, there will be no players connected at the time so it will work, look here is what i do
since that works the wiki must be wrong
pawn Код:
//Create Vehicles Here
for(new i; i < MAX_VEHICLES; i++)
{
if(IsVehicleConnected(i))
{
new randnumplate = random(sizeof(RandomPlates));
SetVehicleNumberPlate(i, RandomPlates[randnumplate]);
}
}