Repair vehicle with LMB? - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Repair vehicle with LMB? (
/showthread.php?tid=403200)
Repair vehicle with LMB? -
Techno_no1 - 29.12.2012
How can i repair my car using LMB?
Tnx.
Re: Repair vehicle with LMB? -
FTLOG - 29.12.2012
Simple:
Код:
OnPlayerKeyStateChange( playerid, newkeys, oldkeys ) {
if( IsPlayerInAnyVehicle && newkeys & KEY_FIRE ) RepairVehicle( GetPlayerVehicleID( playerid ));
return true;
}
Re: Repair vehicle with LMB? -
Techno_no1 - 29.12.2012
Thanks, it works.