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.5K
Suggestions
Exercise Dummy - Ext | 01/07/22 | 2.5K
gamebot hotkey | 18/12/22 | 2.7K
Damage Highscores | 19/10/21 | 3.9K
Change FPS | 05/10/21 | 1.6K
Warning replace | 18/08/24 | 208
Vocation Selector | 22/06/24 | 348
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.
--[[
  Script made by Lee (Discord: l33_) - www.trainorcreations.com
  If you want to support my work, feel free to donate at https://trainorcreations.com/donate
  PS. Stop ripping off my work and selling it as your own.
]]--
  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

12 Mar 2022
Ads