Kanıt:
silah slotuna zırh vs koyulabiliyor. bunun kontrolü için;
SelectEmptySlot içinde ara
Python:itemType = item.GetItemType()
altına ekle
[CODE lang="python" title="uifastequip.py"] if selectedSlotPos == 0 + (index_change_equip-1) * 30 and not item.IsWearableFlag(item.WEARABLE_BODY):
return
elif selectedSlotPos == 1 + (index_change_equip-1) * 30 and not item.IsWearableFlag(item.WEARABLE_HEAD):
return
elif selectedSlotPos == 2 + (index_change_equip-1) * 30 and not item.IsWearableFlag(item.WEARABLE_FOOTS):
return
elif selectedSlotPos == 3 + (index_change_equip-1) * 30 and not item.IsWearableFlag(item.WEARABLE_WRIST):
return
elif selectedSlotPos == 4 + (index_change_equip-1) * 30 and not item.IsWearableFlag(item.WEARABLE_WEAPON):
return
elif selectedSlotPos == 5 + (index_change_equip-1) * 30 and not item.IsWearableFlag(item.WEARABLE_NECK):
return
elif selectedSlotPos == 6 + (index_change_equip-1) * 30 and not item.IsWearableFlag(item.WEARABLE_EAR):
return
elif selectedSlotPos == 10 + (index_change_equip-1) * 30 and not item.IsWearableFlag(item.WEARABLE_SHIELD):
return[/CODE]
KANIT