Debug - Get Outfit
#82
This allows you to get the outfit of a creature/player/npc and print it to debug in a right click menu. I used this for finding values for outfits of existing creatures without having to go through the monster files.
Just add this to your client game_interface under the right click menu .
Just add this to your client game_interface under the right click menu .
if creatureThing then
menu:addOption(tr('Print Outfit', creatureName), function()
print("Outfit for: "..creatureThing:getName())
for key, stat in pairs(creatureThing:getOutfit()) do
print(key..':' .. stat)
end
end)
end
- remove | + add
12 Mar 2022