• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

MaNGOS Classic Transmog Error 1.12.1

westtunger

Emulation Addict
Line 266 :
local newItem = player:GetItemByPos(-1, slot)

but the function is :

item = Player:GetItemByPos( bag, slot )

where

Code:
number bag
The bag the Item is in, you can get this with Item:GetBagSlot.

Valid numbers: integers from 0 to 255.

number slot
The slot the Item is in within the bag, you can get this with Item:GetSlot.

Valid numbers: integers from 0 to 255.

So you need to change this -1 to something else.

Try with bag = 255 :

Code:
bag = 255
slots 0-18 equipment
slots 19-22 equipped bag slots
slots 23-38 backpack
slots 39-66 bank main slots
slots 67-74 bank bag slots
slots 86-117 keyring
 
Last edited:
Top