Delta Help

Grime

Why So Grimey?
Joined
Feb 6, 2011
Messages
30
Points
0
I need help making it so npcs can be attacked by more than 1 person.

Anyone what I edit/remove? :)
 
open client.java and search for this:



Code:
public boolean multiCombat() {

And you should see someting like this:


Code:
if((absX >= 3144 && absX <= 3184 && absY >= 3519 && absY <=3656)

To make your own you got to add this kind of a code:


Code:
|| (absX >= #### && absX <= #### && absY >= #### && absY <=####)

Add the X and Ys.

Example:


Code:
(absX >= 3081 && absX <= 3090 && absY >= 4804 && absY <=4872)
 
So I just put the X and Y's of the npcs right?

If you want it to always be multi-combat then change the multiCombat method to always return true.

Code:
public boolean multiCombat() {
     return true;
}
 
Back
Top