Your browser does not support JavaScript or its disabled!
Please turn it on, or be aware that some features on this website will not work correctly.
1.3K
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 .
File: gameinterface.lua | 275b | 8 lines.
  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
Ads