Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/05/22 in all areas

  1. Version 1.0.0

    483 downloads

    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);
    1 point
  2. class com.rockstargames.gtav.levelDesign.BaseScriptUI extends MovieClip { var TIMELINE; var CONTENT; var BOUNDING_BOX; function BaseScriptUI() { super(); } function INITIALISE(mc) { this.TIMELINE = mc; this.CONTENT = this.TIMELINE.attachMovie("CONTENT","CONTENT",this.TIMELINE.getNextHighestDepth()); this.BOUNDING_BOX = this.TIMELINE.attachMovie("BOUNDING_BOX","BOUNDING_BOX",this.TIMELINE.getNextHighestDepth()); this.BOUNDING_BOX._visible = false; } } By setting the vars at the top, you don't need to do step 8. The reason why it isn't there when you create the .swf file is due to it throwing errors.
    1 point
×
×
  • Create New...