10.01.2014, 13:21
Quote:
pawn Код:
|
Код:
public OnPlayerStateChange(playerid, newstate, oldstate) { if(oldstate == PLAYER_STATE_DRIVER) { SetTimerEx("delcar", 15000, 0, "i", vehicleid); } return 1; } forward delcar(vehicleid); public delcar(vehicleid) { DestroyVehicle(vehicleid); return 1; }