25.06.2011, 19:41
With this CODE i log off the server and log in under a different acc and am able to get in the car but not start the engine.
When i log in with my account that owns the car, its still locked
When i log in with my account that owns the car, its still locked
Код:
public OnVehicleStreamIn(vehicleid, forplayerid) { for(new i = 0; i < MAX_PLAYERS; i++) { if(PlayerInfo[i][pPcarkey] == vehicleid && CarInfo[vehicleid][cLock] == 1) { for(new u = 0; u < MAX_PLAYERS; u++) { SetVehicleParamsForPlayer(vehicleid, u, 0, 1); } } if(PlayerInfo[i][pPcarkey2] == vehicleid && CarInfo[vehicleid][cLock] == 1) { for(new u = 0; u < MAX_PLAYERS; u++) { SetVehicleParamsForPlayer(vehicleid, u, 0, 1); } } } return 1; }