Choose Outfit
#52
Uses the outfit window randomise to select an outfit.
I don't recommend you use this but its just an example on how to use other modules.
I don't recommend you use this but its just an example on how to use other modules.
UI.Button("Outfit", function()
g_game.requestOutfit()
schedule(100, function()
if modules.game_outfit.outfitWindow then
modules.game_outfit.outfitWindow:hide()
modules.game_outfit.randomize()
schedule(1000, function()
modules.game_outfit.accept()
end)
end
end)
end)
- remove | + add
09 Aug 2021