ok first off open up your client.java and serch for
Code:
public boolean Attack()
Now look for your dark bow code.
Replace this with yours.
Code:
if(playerEquipment[playerWeapon] == (15156))
if(DDStimer == 0 && actionTimer == 0) {
actionTimer = 8;
DDS2Damg = true;
DDStimer = 1;
PkingDelay = 8;
hitDiff = 10 + misc.random(20);
}
That will make you always hit 2 times on players. now for NPC's.
Search for:
Code:
public boolean Attacknpc()
Then replace your code with:
Code:
if(playerEquipment[playerWeapon] == (15156))
if(DDStimer == 0 && actionTimer == 0) {
actionTimer = 8;
DDS2Damg = true;
DDStimer = 1;
PkingDelay = 8;
hitDiff = 10 + misc.random(20);
}
Credits:
90% to 0wn3r on silab forums.
10% to me for brining to rune-server.
Enjoy!