-
Member
[Tut] how to fix your d2h
ok,
1.first open client.java
2. press ctrl + f and search for
code :
if (targetSlot == playerWeapon && playerEquipment[playerShield] != -1 && (Item.itemTwoHanded[wearID] == true || item2handed(wearID) == true)) {
remove(playerEquipment[playerShield] , playerShield);
}
replace it with :
if (targetSlot == playerWeapon && playerEquipment[playerShield] != -1 && (Item.itemTwoHanded[wearID] == true || item2handed(wearID) == true) && freeSlots() >= 2) {
remove(playerEquipment[playerShield] , playerShield);
}
if (targetSlot == playerShield && playerEquipment[playerWeapon] != -1 && (Item.itemTwoHanded[wearID] == true || item2handed(wearID) == true) && freeSlots() >= 2) {
remove(playerEquipment[playerWeapon] , playerWeapon);
}
else if (targetSlot == playerShield && playerEquipment[playerWeapon] != -1 && (Item.itemTwoHanded[wearID] == true || item2handed(wearID) == true) && freeSlots() < 2){
remove(playerEquipment[playerWeapon] , playerWeapon);
}
else if (targetSlot == playerWeapon && playerEquipment[playerShield] != -1 && (Item.itemTwoHanded[wearID] == true || item2handed(wearID) == true) && freeSlots() < 2){
remove(playerEquipment[playerShield] , playerShield);
}
now your ready to use your d2H :cool2:
all comments are welcomed
-
-
Member
Re: [TUT]how to fix your d2h[TUT]
huh? how did this post come? there's 2 :S
how do i delete it! ahh someone help me
-
Re: [TUT]how to fix your d2h[TUT]