[Tut] how to fix your d2h

Results 1 to 3 of 3
  1. #1
    Member owner abz is offline
    MemberRank
    Feb 2008 Join Date
    Under Your BedLocation
    69Posts

    [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


  2. #2
    Member owner abz is offline
    MemberRank
    Feb 2008 Join Date
    Under Your BedLocation
    69Posts

    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

  3. #3
    Canadian Mike is offline
    MemberRank
    Dec 2007 Join Date
    Toronto, ONLocation
    2,747Posts

    Re: [TUT]how to fix your d2h[TUT]

    Closed as request.



Advertisement