Metin2 iBeast - Item Vnum

Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

GT_Rambo

Member
Joined
Feb 13, 2021
Messages
38
Credits
0

Non-Src > Client > root > uitooltip.py:

Code:
Expand Collapse Copy
import chr
import player

[...]

    def AddItemData(self, itemVnum, metinSlot, attrSlot = 0, flags = 0, unbindTime = 0, window_type = player.INVENTORY, slotIndex = -1):
        self.itemVnum = itemVnum
        item.SelectItem(itemVnum)
        itemType = item.GetItemType()
        itemSubType = item.GetItemSubType()

        [...]

        if chr.IsGameMaster(player.GetMainCharacterIndex()):
            self.AppendTextLine("Item Vnum: %i" % itemVnum, self.PRICE_COLOR)
          
        self.ShowToolTip()

[...]
 
Back
Top