Credits: 100% to me
Knowledge C&p and able to read
Difficulty: 1/10
tested on: Jc
Step 1 Making Special Bar show For vesta spear
Go to Equipment.java located in the model folder and search for
after that add
Code:
weaponId == 13905 ||
and your done with special bar showing.
step 2 Adding the special
go to combat and click playercombat.java there search for
you should see something like this
Code:
if (p.getEquipment().get(3).getDefinition().getId() == 4151) { //Whip
//p.specDelay = 5;
p.animate(1658, 0);
p2.graphics(341, 0);
p2.hit(meleeDamage);
under that add
Code:
if (p.getEquipment().get(3).getDefinition().getId() == 13905) { //Vesta's spear
//p.specDelay = 5;
p.animate(10499, 0);
p.graphics(1835, 0);
p2.hit(meleeDamage);
}
you have finished now compile and run it should work