Jump to content

1 Screenshot

About This File

RAW RESOURCES ONLY - NO SCRIPT HERE.

 

Today I have for you a beast resource that will fix your problems with Ped Displaying using Native Menu Ped. This resource contains Custom Scaleform changes to some menu components, and pause menu definition, that allows the Ped to be rendered WITHOUT a background box around it, or even on screen (fuck you Rockstar for making this Scaleform so shit).

 

You use this in the same way you use any other raw resource by placing the contents into client_packages/game_resources 

 

If you already modify the Pause Menu xml file in some way, please see the changes in my own pausemenu.xml files and attempt to add them to your own, it shouldn't cause any problems!

 

The script can be found in many different places already, so no need to show it here - this is not possible to render on top of CEF, so just use CSS to make some hole in your UI that this can show through.

 

The menu version is custom here so that if Rockstar adds anything else or messes with dependencies, it doesn't immediately break. This means it's not really "documented" in natives (duh)

 

The version used should be as follows:

 

mp.game.ui.activateFrontendMenu(mp.game.joaat('FE_MENU_VERSION_RAGEBEAST'), false, -1);
  • Like 5
  • Mask 1

User Feedback

Recommended Comments

xNameless69

Posted (edited)

Just for note, a purely script way exists to do this also with FE_MENU_VERSION_EMPTY_NO_BACKGROUND :

 

const { a } = mp.game.hud.getColour(117); // Original Colour

mp.game.hud.replaceColourWithRgba(117, 0, 0, 0, 0); // Replace with "transparent" - do this on HUD show

mp.game.hud.replaceColourWithRgba(117, 0, 0, 0, a); // Replace with original transparency - do this on HUD hide (to ensure no other menu has no backgrounds)

 

Edited by xNameless69
CreS

Posted

Also, more deeply than Nameless, you can use the following native:

 

mp.game.invoke('0xF314CF4F0211894E', 117, 0, 0, 0, 186); // REPLACE_HUD_COLOUR_WITH_RGBA
Junx

Posted

Can we get the source of this? the FLA pls

ememoide

Posted

 

Hi, I'm making an inventory and I want to place the character in the UI, how do I do it? I don't really understand your code.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...