Xdragon
June 20th, 2010, 14:14
I didnt make this i forgot who made it so yea 100% credits to him.
its not hard u need only to copy and Paste
Make a backup of your client bc i dont know how to the fix errors maybe some.
Server based: Delta
First Open client.java and search for this :
public class client extends Player implements Runnable {
Add this under it :
public boolean DCDamg = false;
public int DCdown = 0;
Than search for this :
if(playerEquipment[playerWeapon] == 5698 && specialAmount > 24){
specialAtk(true, 25, 252, 0x426);
getHit(8);
usingSpecial = true;
frame174(386, 000, 020);
}
Add this under the last }
if(playerEquipment[playerWeapon] == #### && specialAmount > 49){
specialAtk(true, 50, 252, 2068);
DCdown = 4;
DCDamg = true;
getHit(8);
usingSpecial = true;
}
Replace #### whith your claws id
Than search for this :
if(playerEquipment[playerWeapon] == 5698 && specialAmount > 24){
specialAtkNPC(true, 25, 252, 0x426);
npcDamage(8);
frame174(385, 000, 020);
}
Add this under the last }
if(playerEquipment[playerWeapon] == #### && specialAmount > 49){
specialAtkNPC(true, 50, 282, 2068);
DCdown = 4;
DCDamg = true;
npcDamage(8);
}
Replace the #### whith your claws id
Now search for :
public boolean process() {
Add this under it :
if ((IsAttackingNPC) && DCDamg == true ) {
if (DCdown == 2 ) {
startAnimation(2068);
}
SpecDamgNPC(30);
DCdown -= 1;
if (DCdown == 0 ) {
DCDamg = false;
}
}
if (IsAttacking == true && DCDamg == true ) {
if (DCdown == 2 ) {
startAnimation(2068);
}
SpecDamg(25);
DCdown -= 1;
if (DCdown == 0 ) {
DCDamg = false;
}
}
Now save and close client.java
Now open Special.java
and search for this :
case 5698:
Under that add :
case 6587:
Replace 6587 whith your claws id
Now search again for :
case 5698:
And add under it :
case 6587:
Replace 6587 whith your claws id
Save & Compile it should now work and get no errors
Rep Only if u want it i only added this bc it was no more on runelocus bc the crash =]
Have Fun!
its not hard u need only to copy and Paste
Make a backup of your client bc i dont know how to the fix errors maybe some.
Server based: Delta
First Open client.java and search for this :
public class client extends Player implements Runnable {
Add this under it :
public boolean DCDamg = false;
public int DCdown = 0;
Than search for this :
if(playerEquipment[playerWeapon] == 5698 && specialAmount > 24){
specialAtk(true, 25, 252, 0x426);
getHit(8);
usingSpecial = true;
frame174(386, 000, 020);
}
Add this under the last }
if(playerEquipment[playerWeapon] == #### && specialAmount > 49){
specialAtk(true, 50, 252, 2068);
DCdown = 4;
DCDamg = true;
getHit(8);
usingSpecial = true;
}
Replace #### whith your claws id
Than search for this :
if(playerEquipment[playerWeapon] == 5698 && specialAmount > 24){
specialAtkNPC(true, 25, 252, 0x426);
npcDamage(8);
frame174(385, 000, 020);
}
Add this under the last }
if(playerEquipment[playerWeapon] == #### && specialAmount > 49){
specialAtkNPC(true, 50, 282, 2068);
DCdown = 4;
DCDamg = true;
npcDamage(8);
}
Replace the #### whith your claws id
Now search for :
public boolean process() {
Add this under it :
if ((IsAttackingNPC) && DCDamg == true ) {
if (DCdown == 2 ) {
startAnimation(2068);
}
SpecDamgNPC(30);
DCdown -= 1;
if (DCdown == 0 ) {
DCDamg = false;
}
}
if (IsAttacking == true && DCDamg == true ) {
if (DCdown == 2 ) {
startAnimation(2068);
}
SpecDamg(25);
DCdown -= 1;
if (DCdown == 0 ) {
DCDamg = false;
}
}
Now save and close client.java
Now open Special.java
and search for this :
case 5698:
Under that add :
case 6587:
Replace 6587 whith your claws id
Now search again for :
case 5698:
And add under it :
case 6587:
Replace 6587 whith your claws id
Save & Compile it should now work and get no errors
Rep Only if u want it i only added this bc it was no more on runelocus bc the crash =]
Have Fun!