Look's realy powerful but can i remove a submenu item ? I call _menu.Clear(); but don't work.
Reveres
View profile on GTA5-Mods.com »
Posts made by Reveres
-
RE: Cusom main menu item
-
Cusom main menu item
Hi.
I need some help with main menu. Is way to add custom menu tab or edit/remove existing ?
Thanks for help. -
RE: CEF in game
But it is in FiveM or GTA:O mods, I want to create own HTML UI in clear GTA V without FiveM or GTA:O.
-
RE: CEF in game
Yes, i readed it in GTA:O, so is any way to create this ?
-
CEF in game
Hi.
I also readed about CEF (chromium embedded framework), and i have some question. How i can implement CEF to show page in game, or how to add some pretty text with transparent background?
Thanks for help -
RE: How to: Dynamic DLL Mod loading
But how i can load dll or custom texture/model to GTA Game in runtime
-
How to: Dynamic DLL Mod loading
Hi
I want to load dynamic dll, can anyone help me ? Tutorial, sample code ?
Thanks for reply -
Disable controls like PauseMenu
Hi.
How i can disable controls like PauseMenu
i blocked Cheat Input "Tilde" key but i cant disable PauseMenu/GameMenu on "P" key or "Escape" key.
I tried enumerate on all Control Hash but my GTA crash on 0x100... hash.
Yes i writing custom input text.
Thanks for help.
-
[Tutorial] Custom sprite
Hi today i show u how create a custom sprite to render it on screen.
Requirements
- ScriptHookV
- openIV.asi (install from openIV software)
- backup original game files (/update/update.rpf)
Let's start
Copy file from /update/update.rpf to /mods/update/update.rpf
Run openIV software and open file
/mods/update/update.rpf/x64/textures/scripts_txds.rpf
Then Right click>New>Texture dictionary (I named it customTexture).
Open customTexture.ytd.
Click Import button(1).
In new window select your texture (.png/.jpg) (2) and click Open (3).
Dont forget click Save (4).
Done.To draw sprite:
UISprite sprite = new UISprite("customTexture", "textureName(without extension)", new Size(100, 100), new Point(100, 100));
//in Tick
sprite.Draw();I think that helped.
Greeings for @LeeC2202 for help.