Jump to content


Air horn script


  • This topic is locked This topic is locked
126 replies to this topic

#21 Guest_francismori7_*

Guest_francismori7_*
  • Guests

Posted 10 July 2008 - 05:35 AM

Well, it now works, but, doesn't play over the sirens.

#22 Guest_lord_bonev_*

Guest_lord_bonev_*
  • Guests

Posted 10 July 2008 - 09:38 AM

where i must to put this "Qsiren.wav: and the "beep" sound to work for all vehicles?

#23 Guest_Caddi17_*

Guest_Caddi17_*
  • Guests

Posted 10 July 2008 - 02:33 PM

Heyy, i was just wondering, where do i put all the files to add them to the mod?

#24 Guest_francismori7_*

Guest_francismori7_*
  • Guests

Posted 10 July 2008 - 03:53 PM

Heyy, i was just wondering, where do i put all the files to add them to the mod?

Depends if you want Nyox's or mine.

#25 Guest_Caddi17_*

Guest_Caddi17_*
  • Guests

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_*

Guest_francismori7_*
  • Guests

Posted 10 July 2008 - 04:53 PM

Oh, whats the difference between yours and Nyox's?

Nyox's is a second siren, mine is only a air horn.

#27 Guest_Caddi17_*

Guest_Caddi17_*
  • Guests

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_*

Guest_firefighter116_*
  • Guests

Posted 10 July 2008 - 05:17 PM

ok so does the air horn work now. does it just honk and go off or is it still continuious im confused

#29 Guest_Caddi17_*

Guest_Caddi17_*
  • Guests

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 Newfoundking

Newfoundking

    The Real Slim Shady

  • Moderator
  • 7,253 posts
  • Gender:Male
  • Location:Newfoundland

Posted 10 July 2008 - 05:30 PM

okay I want that one, that is over the siren

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_*

Guest_Caddi17_*
  • Guests

Posted 10 July 2008 - 05:41 PM

do you guys know how to install it or are u waiting on where to put it?

#32 Guest_francismori7_*

Guest_francismori7_*
  • Guests

Posted 10 July 2008 - 06:21 PM

Ok, ill take yours then, where do i put it?

airhorn.wav: Emergency 4\Mods\Los Angeles Mod v1.5\Audio\Fx\sirens

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_*

Guest_Caddi17_*
  • Guests

Posted 10 July 2008 - 06:50 PM

Alright thanks man, looking foward to using it :D

#34 Nyox

Nyox

    Firefighter

  • Members
  • 13 posts
  • Gender:Male
  • Location:Brescia,lombardia,Italy

Posted 11 July 2008 - 12:14 PM

i have also installed your script and it works perfectly.But i still have the icon problem.

is there a way to fix it?

Thanks
Posted Image

#35 Guest_Caddi17_*

Guest_Caddi17_*
  • Guests

Posted 11 July 2008 - 02:25 PM

Umm, i did what u told me to do but i either dont hae the icon or or didnt work

EDIT: never mind i got it working

#36 Hoppah

Hoppah

    Boss cat

  • Administrators
  • 3,879 posts
  • Gender:Male
  • Location:Special Needs Department

Posted 11 July 2008 - 05:07 PM

Or try this, a shorter version (not tested!). :)
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_*

Guest_francismori7_*
  • Guests

Posted 11 July 2008 - 05:30 PM

Hoppah, you should include this in 1.7 because LA uses many times the air horn.

#38 aleksanderwoods

aleksanderwoods

    Captain

  • Members
  • 179 posts
  • Gender:Male
  • Location:Bergen, Norway

Posted 11 July 2008 - 06:11 PM

Where shall I put it?

Signature removed. Please use a smaller image.


#39 Guest_francismori7_*

Guest_francismori7_*
  • Guests

Posted 11 July 2008 - 07:51 PM

Where shall I put it?

In a new file called LAHorn.script in Scripts/Game/Commands directory of the mod.

#40 Hoppah

Hoppah

    Boss cat

  • Administrators
  • 3,879 posts
  • Gender:Male
  • Location:Special Needs Department

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.