[help] - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: [help] (
/showthread.php?tid=263157)
[help] -
decastro96 - 20.06.2011
What command for /Car engine?
Re: [help] -
=WoR=Varth - 20.06.2011
SetVehicleParamsEx(vehicleid, engine, lights, alarm, doors, bonnet, boot, objective);
https://sampwiki.blast.hk/wiki/SetVehicleParamsEx
Re: [help] -
decastro96 - 20.06.2011
that not help, can you send nomal command for /engine to start the
Re: [help] -
=WoR=Varth - 20.06.2011
pawn Код:
CMD:on(playerid,params[])
{
SetVehicleParamsEx(vid,VEHICLE_PARAMS_ON,lights,alarm,doors,bonnet,boot,objective);
return 1;
}
CMD:off(playerid,params[])
{
SetVehicleParamsEx(vid,VEHICLE_PARAMS_OFF,lights,alarm,doors,bonnet,boot,objective);
return 1;
}