1
0
Fork 0
mirror of https://github.com/notwa/mm synced 2024-06-25 19:47:12 -07:00

add any item any time cheat

This commit is contained in:
Connor Olding 2015-11-14 16:45:36 -08:00
parent 3f7e7a1a0d
commit 301acb98ea

View File

@ -96,6 +96,11 @@ function infinite_items:tick_on()
end
end
local any_item = Passive()
function any_item:tick_on()
addrs.buttons_enabled(0)
end
local everything = Callbacks()
function everything:on()
dofile("oneshot.lua")
@ -253,6 +258,7 @@ local main_menu = Menu{
Toggle("L to Levitate", levitate),
Toggle("A to Run Fast", supersonic),
Toggle("Infinite Items", infinite_items),
Toggle("Use Any Item", any_item),
Text(""),
Oneshot("100% Items", everything),
LinkTo("Set Progress...", progress_menu),