@Aurora11 thxxx i just deleted all of my files except for the .rpf files and the x64 or update
OneMinuteYT
View profile on GTA5-Mods.com »
Posts made by OneMinuteYT
-
RE: How to delete ENB mod?posted in General Modding Discussion
-
RE: Unable to spend money while using a custom pedposted in Installation Help & Troubleshooting
@mirai310 and does the mod even work with no other mods
-
RE: Unable to spend money while using a custom pedposted in Installation Help & Troubleshooting
@mirai310 character swap wouls be the only option if you ask me..
-
RE: need to know something with creating menu'sposted in General Modding Discussion
@Jitnaught cuz otherwise it gives errors
playermenu.OnItemSelect += (sender, item, index) => (This is what i need for the kind of options such as Add money.
name.CheckboxEvent += (item, state) => (this is what i need to get the checkbox)i cant use
var addwanted = new UIMenuItem("Add Wanted Level", "Adds A Wanted Level");
var godmode = new UIMenuCheckboxItem("God Mode", false);playermenu.AddItem(addwanted);
playermenu.AddItem(godmode);playermenu.OnItemSelect += (sender, item, index) =>
if (item == addwanted)
{
if (Game.Player.WantedLevel < 5) { Game.Player.WantedLevel += 1; }
UI.Notify("Added A Wanted Level");
}godmode.CheckboxEvent += (item, state) =>{
if (item == godmode)
{
Game.Player.IsInvincible = true;
UI.Notify("godmode on");
} -
RE: need to know something with creating menu'sposted in General Modding Discussion
@Jitnaught yo ik this topic is old but when i use this it works and all but i got lots of var so if i do this only this godModeItem would work. But what if i got
var godModeItem = new UIMenuCheckboxItem("God mode", false);
var lol = new UIMenuCheckboxItem("lol", false);
? cuz then: lol.CheckboxEvent += (item, state) => wouldnt work
-
CheckboxEvent problemposted in General Modding Discussion
If i do this:
godmode.CheckboxEvent += (item, state) =>
{ if (item == godmode) { Game.Player.IsInvincible = state; UI.Notify($"Godmode {(state ? "enabled" : "disabled")}"); } if (item == addwanted) { if (Game.Player.WantedLevel < 5) { Game.Player.WantedLevel += 1; } UI.Notify("Added A Wanted Level");then only the GodMode option would work but how do i let the others work to? it prob has to do with the CheckboxEvent += (item, state) =>
-
RE: How can i make my script Check if im in a vehicle?posted in General Modding Discussion
@Jitnaught you saved my life lots of times bro.
-
How can i make my script Check if im in a vehicle?posted in General Modding Discussion
How can i make my script Check if im in a vehicle?