Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- stock UnlockVehicle(vehicleid) {
- new engine, lights, alarm, doors, bonnet, boot, objective;
- GetVehicleParamsEx(vehicleid, engine, lights, alarm, doors, bonnet, boot, objective);
- SetVehicleParamsEx(vehicleid, engine, lights, alarm, true, bonnet, boot, objective);
- return 1;
- }
- stock LockVehicle(vehicleid) {
- new engine, lights, alarm, doors, bonnet, boot, objective;
- GetVehicleParamsEx(vehicleid, engine, lights, alarm, doors, bonnet, boot, objective);
- SetVehicleParamsEx(vehicleid, engine, lights, alarm, false, bonnet, boot, objective);
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement