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
TargetBot Toggle | 04/10/24 | 2.7K
Simple Loot Channel | 17/10/23 | 1.4K
Get Outfits from Tile | 26/07/22 | 1.3K
Drop - vBot extension | 07/11/22 | 2.1K
Skills Hud | 04/10/24 | 3.5K
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