Mod Request: disable circle/b prompt on Roach

+
Mod Request: disable circle/b prompt on Roach

Hi there,

I was wondering if someone would be willing to make a small mod to disable or at least hide the circle/b prompt that pops up on Roach whenever you dismount him.

It's a bit of an eyesore for me and not even Friendly HUD comes with the option to disable this. The knly way to do it is to disable HUD entirely but this is a no-go as doing so also disables quest and item updates.

Let me know if you can be of help, my gratitude will be great!
 
Here you go :)

Details:

On line 92 of hudModuleInteractions.ws there is this event:

Code:
event  OnRequestShowHold()
    {
         bShowHoldIndicator = true;
    }

I just changed it to this:

Code:
event  OnRequestShowHold()
    {
        if(m_currentHoldInteraction == 'HorseDismount' )
        {
            bShowHoldIndicator = false;
        }
        else
        {
            bShowHoldIndicator = true;
        }
    }

 

Attachments

  • disablepromt.zip
    6.5 KB · Views: 75
Thank you very much, works like a charm!
Might be worth posting on the Nexus even, I'm sure I'm not the only one who wants something like this. Simple but goes a long way immersion-wise!
 
Lim3zer0 thanks for the file. really loved it. more people have to use this nice mod. would be great if you post it on Nexus.
 
Last edited:
Lim3zer0
Hey Lim, I've found a kink with your little mod. If I'm sprinting with Roach and dismount while sprinting the circle prompt still appears! Would you be willing to take a look at it?
If not that's totally fine too.
 
Top Bottom