[Ajuda] Luzes ligam automaticamente, motores nгo? - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Luzes ligam automaticamente, motores nгo? (
/showthread.php?tid=652008)
Luzes ligam automaticamente, motores nгo? -
BrunnoFdc - 01.04.2018
Bom dia pessoal.
Alguйm conhece alguma forma de fazer com que as luzes dos carros liguem automaticamente, porйm os motores fiquem desligados?
Eu poderia usar a funзгo ManualVehicleEngineAndLights() para fazer com que os motores nгo liguem automaticamente, mas daн as luzes nгo ligam.
Enfim, sabem alguma forma?
Re: Luzes ligam automaticamente, motores nгo? -
thejimmy - 01.04.2018
PHP код:
SetVehicleParamsEx(vehicleid, engine, lights, alarm, doors, bonnet, boot, objective);
http://wiki.sa-mp.com/wiki/SetVehicleParamsEx
new engine, lights, alarm, doors, bonnet, boot, objective;
GetVehicleParamsEx(vehicleid, engine, lights, alarm, doors, bonnet, boot, objective);
SetVehicleParamsEx(vehicleid, engine, VEHICLE_PARAMS_ON, alarm, doors, bonnet, boot, objective);
Re: Luzes ligam automaticamente, motores nгo? -
Adiiti - 01.04.2018
Usa um SetTimer e com o gettime vocк liga os farуis conforme for a hora
Re: Luzes ligam automaticamente, motores nгo? -
BrunnoFdc - 01.04.2018
Quote:
Originally Posted by thejimmy
PHP код:
SetVehicleParamsEx(vehicleid, engine, lights, alarm, doors, bonnet, boot, objective);
http://wiki.sa-mp.com/wiki/SetVehicleParamsEx
new engine, lights, alarm, doors, bonnet, boot, objective;
GetVehicleParamsEx(vehicleid, engine, lights, alarm, doors, bonnet, boot, objective);
SetVehicleParamsEx(vehicleid, engine, VEHICLE_PARAMS_ON, alarm, doors, bonnet, boot, objective);
|
Vou dar uma olhada nisso depois. Thanks
Quote:
Originally Posted by Adiiti
Usa um SetTimer e com o gettime vocк liga os farуis conforme for a hora
|
Й uma boa ideia. Thx.