root/uitooltip.py
Kodda WARP_SCROLLS = [...] satırını bul ve hemen altına şu satırı ekle:
Kod:
C++:
Kod
arat:
elif item.ITEM_TYPE_BELT == itemType:
self.__AppendLimitInformation()
self.__AppendAffectInformation()
self.__AppendAttributeInformation(attrSlot)
self.__AppendAccessoryMetinSlotInfo(metinSlot, constInfo.GET_BELT_MATERIAL_VNUM(itemVnum))
Bu bloğu şu şekilde değiştir:
Kod:
Kod
elif item.ITEM_TYPE_BELT == itemType:
self.__AppendLimitInformation()
self.__AppendAffectInformation()
self.__AppendAttributeInformation(attrSlot)
index = item.GetValue(0)
if 0 <= index < len(extra_slot):
usable_slot = extra_slot[index]
self.AppendTextLine("Kullanılabilir Slot : %s" % usable_slot, self.SPECIAL_POSITIVE_COLOR)
else:
self.AppendTextLine("Kullanılabilir Slot : Bilinmiyor", self.SPECIAL_POSITIVE_COLOR)
self.__AppendAccessoryMetinSlotInfo(metinSlot, constInfo.GET_BELT_MATERIAL_VNUM(itemVnum))
Daha Çok Göster