Thread: How To Make Safe Zones

Results 1 to 2 of 2
  1. #1 How To Make Safe Zones 
    Shade
    Guest
    Credits Php2

    How to make safe zones

    First step , open up client.java , search for
    Code:
    nonwild
    or
    Code:
    safezone
    those two are usually it , the first nonwild or until you come to something like
    Code:
    public boolean nonWild() {
    if((absX >= 3249 && absX <= 3258 && absY >= 3438 && absY <=3431 ) || (absX >= 3039 && absX <= 3111 && absY >= 3475 && absY <=3523 ) ||
    Lets take this one:
    Code:
    || (absX >= 3039 && absX <= 3111 && absY >= 3475 && absY <=3523 ) ||
    The first 4 digits it says "3039" that is the first coordinate absX the second one after that says "3111" dont worry about that one yet, just go to the 4 digit after that one, and you can see its "3475" and that is where your absY goes witch is coordinate Y so if you where standing in coordinate X: 3343 Coordinate Y: 3441 then you would put the code like this:

    Code:
    || (absX >= 3343 && absX <= 3111 && absY >= 3441 && absY <=3523 ) ||
    Ok lets get your safe zone going, go to the spot you want to get a safe zone and go all the way soouth till you dont want it safe anymore and then go left till you dont want it to be safe anymore and then stop at that spot and get your coordinate X and Y usually u can get it by going to the run panel on ur client and you will see them.

    Code:
    || (absX >= FIRST COORD .A. && absX <= FIRST COORD .B. && absY >= SECOND COORD .A. && absY <=SECOND COORD .B. ) ||

    Where it says FIRST COORD .A. thats where you put Coordinate X and where it says Second coord .a. put Coord Y, then go all the way to the right top like you did with the bottom left, and you will have to do the same except put it where it says First coord b put coord x there like you did on FIRST COORD .a. then put coord Y on SECOND COORD .B. so i hope that explains it all so please post if you get errors.


    ALSO IF YOU MAKE THE SMALLEST MISTAKE LIKE IF YOU PUT 2 SPACES AFTER A COORD OR U DELETE ONE IT WONT WORK DO AS IT SAYS ABOVE


    made by php2

    rep+ would make me happy
     

  2. #2  
    Registered Member

    Join Date
    Nov 2007
    Posts
    405
    Thanks given
    0
    Thanks received
    0
    Rep Power
    114

    I guess its good... but its complicated for newbs, you could've done is easier,
    nice anyways
    but no r3p...
    Lemon
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •