Using available animations for it would look odd
Miawwe
View profile on GTA5-Mods.com »
Posts made by Miawwe
-
RE: [C#][RAGE] How to take money from player?posted in General Modding Discussion
You can use
GTA.Player.Moneyto set or get how much money does the player have, so for example if you want to sell the player something for $40 you'd do:GTA.Player.Money - GTA.Player.Money(40); -
RE: Need help with showing image on screen with UI.DrawTexture()posted in General Modding Discussion
I figured it out, thanks anyway!
-
Need help with showing image on screen with UI.DrawTexture()posted in General Modding Discussion
Hello, I'm trying to make the
UI.DrawTexture()work, but i can't find any proper documentation, could you please link me something, i tried to make it work with this topic on gta forums and also i researched some Microsoft documentation on the Point and Size properties, but it doesn't seem to work. I tried setting the position and size with thisposImage = new Point(618, 330); Size sizeImage = new Size(1000, 1000);And inside
onTicki tried loading it withUI.DrawTexture(texture, 100, 10, 100, posImage, sizeImage);(the texture is just
String texture = AppDomain.CurrentDomain.BaseDirectory + "\\hud.png";) But it doesn't show anything inside the game. Any help will be appreciated!