Fixes And Addons

Fixed Rig Slot Not Working It Is Now Same As Modest Menu Version Of UltimateMenu Script

Added Reports Menu (Only To Show Stats About Your Account) Thx To @BerBerOnGithub https://github.com/UltimateMenu/UltimateMenu/pull/36

<div align="center">
  <h1> New ScreenShots V2.2 Fix</h1>
</div>

[![Ultimate Menu V2.2](https://ultimatemenu.github.io/ScreenShots/YimMenu/V2.2/Screenshot%202024-08-21%20120920.png)](https://ultimatemenu.github.io/ScreenShots/YimMenu/V2.2/Screenshot%202024-08-21%20120920.png)
[![Ultimate Menu V2.2](https://ultimatemenu.github.io/ScreenShots/YimMenu/V2.2/Screenshot%202024-08-21%20120222.png)](https://ultimatemenu.github.io/ScreenShots/YimMenu/V2.2/Screenshot%202024-08-21%20120222.png)
This commit is contained in:
L7NEG 2024-08-21 12:20:18 +03:00
parent 92269eb9a2
commit 75652c055e
3 changed files with 64 additions and 14467 deletions

View File

@ -117,5 +117,5 @@ No ETA for big updates also because i don't know actually if im going to be able
## About
- By the way to anyone who ask's about the Ultimate-Menu script, is not entire mine, there is actually in credits every single person who i taked code from and who helped me with this.
## Latest Ultimate Menu Kiddions update was on: 14/08/2024
## Latest Ultimate Menu YimMenu update was on: 14/08/2024
## Latest Ultimate Menu YimMenu update was on: 21/08/2024

File diff suppressed because it is too large Load Diff

View File

@ -8429,13 +8429,12 @@ CasinoServicesMenu = OnlineServicesMenu:add_tab("Casino Services Menu")
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
local cslots = "casino_slots"
slots_random_results_table = 1348
prize_wheel_win_state = 280
prize_wheel_prize = 14
prize_wheel_prize_state = 45
CasinoServicesMenu:add_separator()
CasinoServicesMenu:add_text("Casino Chips")
chipsVal = 1800
CasinoServicesMenu:add_imgui(function()
@ -8446,13 +8445,37 @@ CasinoServicesMenu:add_imgui(function()
end
end)
bypass_casino_bans = CasinoServicesMenu:add_checkbox("Bypass Casino Cooldown")
CasinoServicesMenu:add_button("Bypass Casino Cooldown", function()
stats.set_int("MPPLY_CASINO_CHIPS_WON_GD", 0)
stats.set_int("MPPLY_CASINO_CHIPS_WONTIM", 0)
stats.set_int("MPPLY_CASINO_GMBLNG_GD", 0)
stats.set_int("MPPLY_CASINO_BAN_TIME", 0)
stats.set_int("MPPLY_CASINO_CHIPS_PURTIM", 0)
stats.set_int("MPPLY_CASINO_CHIPS_PUR_GD", 0)
stats.set_int("MPPLY_CASINO_CHIPS_SOLD", 0)
stats.set_int("MPPLY_CASINO_CHIPS_SELTIM", 0)
end)
CasinoServicesMenu:add_text("Winning too much too quickly might get you banned, enable this at your own risk.")
CasinoServicesMenu:add_separator()
CasinoServicesMenu:add_separator()
CasinoServicesMenu:add_text("Slots")
rig_slot_machine = CasinoServicesMenu:add_checkbox("Rig Slot Machines")
CasinoServicesMenu:add_button("Rig Slot Machines", function()
for i = 3, 196 do
if i ~= 67 and i ~= 132 then
locals.set_int(cslots, slots_random_results_table + i, 6)
end
end
end)
CasinoServicesMenu:add_button("Lose Slot Machines", function()
for i = 3, 196 do
if i ~= 67 and i ~= 132 then
locals.set_int(cslots, slots_random_results_table + i, 0)
end
end
end)
CasinoServicesMenu:add_separator()
CasinoServicesMenu:add_text("Lucky Wheel")
@ -8519,42 +8542,6 @@ CasinoServicesMenu:add_button("Give Clothing", function()
end)
end)
if SCRIPT.GET_NUMBER_OF_THREADS_RUNNING_THE_SCRIPT_WITH_THIS_HASH(joaat("casino_slots")) ~= 0 then
local needs_run = false
if rig_slot_machine:is_enabled() then
for slots_iter = 3, 196, 1 do
if slots_iter ~= 67 and slots_iter ~= 132 then
if locals.get_int("casino_slots", slots_random_results_table + slots_iter) ~= 6 then
needs_run = true
end
end
end
else
local sum = 0
for slots_iter = 3, 196, 1 do
if slots_iter ~= 67 and slots_iter ~= 132 then
sum = sum + locals.get_int("casino_slots", slots_random_results_table + slots_iter)
end
end
needs_run = sum == 1348
end
if needs_run then
for slots_iter = 3, 196, 1 do
if slots_iter ~= 67 and slots_iter ~= 132 then
local slot_result = 6
if rig_slot_machine:is_enabled() == false then
math.randomseed(os.time() + slots_iter)
slot_result = math.random(0, 7)
end
locals.set_int("casino_slots", slots_random_results_table + slots_iter, slot_result)
end
end
end
end
if bypass_casino_bans:is_enabled() then
stats.set_int("MPPLY_CASINO_CHIPS_WON_GD", 0)
end
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
DLCUnlockerMenu = L7NEG:add_tab("1.69 Unlocker Menu")
@ -12514,9 +12501,7 @@ AirCargoMenu:add_button("Set Value", function()
globals.set_int(CARGO6, HangarCrateVlaue)
globals.get_int(CARGO7, HangarCrateVlaue)
globals.set_int(CARGO8, HangarCrateVlaue)
gui.show_message(
"Crate Value Setter",
"Your Crates Values was set to " .. HangarCrateVlaue .. ".")
gui.show_message("Crate Value Setter", "Your Crates Values was set to " .. HangarCrateVlaue .. ".")
end)
AirCargoMenu:add_separator()
@ -12703,6 +12688,29 @@ end)
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
ReportsMenu = L7NEG:add_tab("Reports Menu")
ReportsMenu:add_text("Griefing:" .. stats.get_int("MPPLY_GRIEFING"))
ReportsMenu:add_text("Exploiting:" .. stats.get_int("MPPLY_EXPLOITS"))
ReportsMenu:add_text("Abusing Bugs:" .. stats.get_int("MPPLY_GAME_EXPLOITS"))
ReportsMenu:add_text("Annoying People In Text:" .. stats.get_int("MPPLY_TC_ANNOYINGME"))
ReportsMenu:add_text("Hate Speech In Text:" .. stats.get_int("MPPLY_TC_HATE"))
ReportsMenu:add_text("Annoying People In Voice:" .. stats.get_int("MPPLY_VC_ANNOYINGME"))
ReportsMenu:add_text("Hate Speech In Voice:" .. stats.get_int("MPPLY_VC_HATE"))
ReportsMenu:add_text("Offensive Language:" .. stats.get_int("MPPLY_OFFENSIVE_LANGUAGE"))
ReportsMenu:add_text("Offensive Tagplate:" .. stats.get_int("MPPLY_OFFENSIVE_TAGPLATE"))
ReportsMenu:add_text("Offensive Content:" .. stats.get_int("MPPLY_OFFENSIVE_UGC"))
ReportsMenu:add_text("Bad Crew Name:" .. stats.get_int("MPPLY_BAD_CREW_NAME"))
ReportsMenu:add_text("Bad Crew Motto:" .. stats.get_int("MPPLY_BAD_CREW_MOTTO"))
ReportsMenu:add_text("Bad Crew Status:" .. stats.get_int("MPPLY_BAD_CREW_STATUS"))
ReportsMenu:add_text("Bad Crew Emblem:" .. stats.get_int("MPPLY_BAD_CREW_EMBLEM"))
ReportsMenu:add_separator()
ReportsMenu:add_text("Now onto your commends:")
ReportsMenu:add_separator()
ReportsMenu:add_text("Friendly:" .. stats.get_int("MPPLY_FRIENDLY"))
ReportsMenu:add_text("Helpful:" .. stats.get_int("MPPLY_HELPFUL"))
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
local gun_van_tab = L7NEG:add_tab("Gun Van Menu")
local gunvan_locations = {
@ -14336,7 +14344,7 @@ end)
MissionsSelectorAndCooldownMenu = L7NEG:add_tab("Missions Selector And cooldown Menu")
MissionsSelectorAndCooldownMenu:add_button("Remove Dax Fooligan missions CoolDown ", function()
stats.set_int(MPX() .. "_XM22JUGGALOWORKCDTIMER", -1)
stats.set_int(MPX() .. "XM22JUGGALOWORKCDTIMER", -1)
end)
MissionsSelectorAndCooldownMenu:add_button("Remove VIP/MC Cool Down", function()