Jump to content

Fixer splashing sound remover


tatocosentino

Recommended Posts

Hi guys

 

Hoping that i'm in the right section, this is my idea: you know that annoying splashing effect of the fixer in New Vegas, right? Well, i really would love to remove it. So, if anyone could tell me if it's possible, and if anyone could do a mod for that, it would be great. I would even do it myself, but i really don't know how. If you can eve just explain me how to do it via GECK and stuff, i will do it myself. :pirate:

 

Thanks a lot (I'm sorry for my bad english)

Link to comment
Share on other sites

  • 4 weeks later...

By splashing effect, do you mean the sound that plays every 15-30 seconds while your vision blurs? The same one used if you get poisoned?

 

That can be removed by simply commenting out a line in the Fixer effect script. Find "FixerEffectSCRIPT" in the GECK and open it, it should look like this:

scn FixerEffectSCRIPT

float timerEffect

begin ScriptEffectStart
	
	float randomTime
	set randomTime to 10.0 + 20.0/99.0 * GetRandomPercent
	set timerEffect to randomTime
	ShowMessage FixerDizzyMsg

end

begin ScriptEffectUpdate

	if timerEffect <= 0
		PlaySound FXPoisonStinger
		ApplyImageSpaceModifier Addiction01ISFX
		set timerEffect to 10.0 + 20/99.0 *GetRandomPercent
	else
		set timerEffect to (timerEffect - GetSecondsPassed)
	endif 
end

Now comment out the line that says PlaySound FXPoisonStinger by placing a semicolon in front of it and save the script. You can also remove the line if you want, it makes no difference.

Link to comment
Share on other sites

By splashing effect, do you mean the sound that plays every 15-30 seconds while your vision blurs? The same one used if you get poisoned?

 

That can be removed by simply commenting out a line in the Fixer effect script. Find "FixerEffectSCRIPT" in the GECK and open it, it should look like this:

scn FixerEffectSCRIPT

float timerEffect

begin ScriptEffectStart
	
	float randomTime
	set randomTime to 10.0 + 20.0/99.0 * GetRandomPercent
	set timerEffect to randomTime
	ShowMessage FixerDizzyMsg

end

begin ScriptEffectUpdate

	if timerEffect <= 0
		PlaySound FXPoisonStinger
		ApplyImageSpaceModifier Addiction01ISFX
		set timerEffect to 10.0 + 20/99.0 *GetRandomPercent
	else
		set timerEffect to (timerEffect - GetSecondsPassed)
	endif 
end

Now comment out the line that says PlaySound FXPoisonStinger by placing a semicolon in front of it and save the script. You can also remove the line if you want, it makes no difference.

 

There's allready a few Mods that fix this. I believe Mission Mojave,the unoffical New Vegas patch,fixes it.

 

Well, thanks for the reply guys! I'll try both :D

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...