mirror of
https://github.com/notwa/mm
synced 2025-02-05 13:23:23 -08:00
add any item any time cheat
This commit is contained in:
parent
3f7e7a1a0d
commit
301acb98ea
1 changed files with 6 additions and 0 deletions
|
@ -96,6 +96,11 @@ function infinite_items:tick_on()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local any_item = Passive()
|
||||||
|
function any_item:tick_on()
|
||||||
|
addrs.buttons_enabled(0)
|
||||||
|
end
|
||||||
|
|
||||||
local everything = Callbacks()
|
local everything = Callbacks()
|
||||||
function everything:on()
|
function everything:on()
|
||||||
dofile("oneshot.lua")
|
dofile("oneshot.lua")
|
||||||
|
@ -253,6 +258,7 @@ local main_menu = Menu{
|
||||||
Toggle("L to Levitate", levitate),
|
Toggle("L to Levitate", levitate),
|
||||||
Toggle("A to Run Fast", supersonic),
|
Toggle("A to Run Fast", supersonic),
|
||||||
Toggle("Infinite Items", infinite_items),
|
Toggle("Infinite Items", infinite_items),
|
||||||
|
Toggle("Use Any Item", any_item),
|
||||||
Text(""),
|
Text(""),
|
||||||
Oneshot("100% Items", everything),
|
Oneshot("100% Items", everything),
|
||||||
LinkTo("Set Progress...", progress_menu),
|
LinkTo("Set Progress...", progress_menu),
|
||||||
|
|
Loading…
Add table
Reference in a new issue