
Air horn script
#21
Guest_francismori7_*
Posted 10 July 2008 - 05:35 AM
#22
Guest_lord_bonev_*
Posted 10 July 2008 - 09:38 AM
#23
Guest_Caddi17_*
Posted 10 July 2008 - 02:33 PM
#24
Guest_francismori7_*
Posted 10 July 2008 - 03:53 PM
Depends if you want Nyox's or mine.Heyy, i was just wondering, where do i put all the files to add them to the mod?
#25
Guest_Caddi17_*
Posted 10 July 2008 - 04:12 PM
Depends if you want Nyox's or mine.
Oh, whats the difference between yours and Nyox's?
#26
Guest_francismori7_*
Posted 10 July 2008 - 04:53 PM
Nyox's is a second siren, mine is only a air horn.Oh, whats the difference between yours and Nyox's?
#27
Guest_Caddi17_*
Posted 10 July 2008 - 04:58 PM
Nyox's is a second siren, mine is only a air horn.
Ok, ill take yours then, where do i put it?
#28
Guest_firefighter116_*
Posted 10 July 2008 - 05:17 PM
#29
Guest_Caddi17_*
Posted 10 July 2008 - 05:20 PM
ok so does the air horn work now. does it just honk and go off or is it still continuious im confused
im prety sure its fixed, it just goes on and off
#30
Posted 10 July 2008 - 05:30 PM
Wanna play multiplayer without any of the commitment? Emergency Planet hosts casual multiplayer to all its members! Contact me for more information
Executive Director: EMP Gulag
Do you have a warning that you want to go away, or are you facing another punishment you don't want? Contact me for the NEW alternative!
#31
Guest_Caddi17_*
Posted 10 July 2008 - 05:41 PM
#32
Guest_francismori7_*
Posted 10 July 2008 - 06:21 PM
airhorn.wav: Emergency 4\Mods\Los Angeles Mod v1.5\Audio\Fx\sirensOk, ill take yours then, where do i put it?
Create a new file in "Emergency 4\Mods\Los Angeles Mod v1.5\Scripts\Game\Command" named "LAHorn.script". Put this code in it:
int DummyGroup = 22; object VcmdHorn : CommandScript { VcmdHorn() { SetIcon("sirens"); SetCursor("sirens"); SetRestrictions(RESTRICT_SELFEXECUTE); SetPossibleCallers(ACTOR_VEHICLE); } bool CheckPossible(GameObject *Caller) { if (!Caller->IsValid()) return false; return true; } bool CheckTarget(GameObject *Caller, Actor *Target, int childID) { if (!Target->IsValid() || Target->GetID() != Caller->GetID()) return false; return true; } void PushActions(GameObject *Caller, Actor *Target, int childID) { Vehicle v(Caller); int hornsoundID; Vector CarPos = v.GetPosition(); hornsoundID = Audio::PlaySample3D("mod:Audio/FX/Sirens/airhorn.wav", CarPos, false); //Audio::StopSample(hornsoundID); } }; object DummyHasSiren : CommandScript { DummyHasSiren() { SetGroupID(DummyGroup); } bool CheckTarget(GameObject *Caller, Actor *Target, int childID) { return false; } void PushActions(GameObject *Caller, Actor *Target, int childID) { } };
Add the command to all the cars you want it to in the editor. The command is "VcmdHorn".
PS: Everything is fixed and works perfectly.
Airhorn.wav uploaded:
#33
Guest_Caddi17_*
Posted 10 July 2008 - 06:50 PM

#35
Guest_Caddi17_*
Posted 11 July 2008 - 02:25 PM
EDIT: never mind i got it working
#36
Posted 11 July 2008 - 05:07 PM

object VcmdHorn : CommandScript { VcmdHorn() { SetIcon("sirens"); SetCursor("sirens"); SetRestrictions(RESTRICT_SELFEXECUTE); SetPossibleCallers(ACTOR_VEHICLE); } bool CheckPossible(GameObject *Caller) { if (!Caller->IsValid()) return false; return true; } bool CheckTarget(GameObject *Caller, Actor *Target, int childID) { if (!Target->IsValid() || Target->GetID() != Caller->GetID()) return false; return true; } void PushActions(GameObject *Caller, Actor *Target, int childID) { Audio::PlaySample3D("mod:Audio/FX/Sirens/airhorn.wav", Caller->GetPosition(), false); } };
#37
Guest_francismori7_*
Posted 11 July 2008 - 05:30 PM
#38
Posted 11 July 2008 - 06:11 PM
Signature removed. Please use a smaller image.
#39
Guest_francismori7_*
Posted 11 July 2008 - 07:51 PM
In a new file called LAHorn.script in Scripts/Game/Commands directory of the mod.Where shall I put it?
#40
Posted 11 July 2008 - 08:04 PM
Hoppah, you should include this in 1.7 because LA uses many times the air horn.
No, it's not usefull. I would prefer a whole menu where you can between sirens (yelp, horn, wail etc..), but that's only possible in missionscripts.