18.10.2009, 03:11
Example of Locking All the Vehicles for Everyone:
Код:
public OnVehicleStreamIn(vehicleid, forplayerid) { for(new i = 0; i < MAX_PLAYERS; i++) { if(IsPlayerConnected(i)) { SetVehicleParamsForPlayer(vehicleid, i, 0, 1); } } }