Thread: [PI] Every Wildy [Rep+]

Page 1 of 2 12 LastLast
Results 1 to 10 of 14
  1. #1 [PI] Every Wildy [Rep+] 
    Registered Member FreekySteve69's Avatar
    Join Date
    Jun 2009
    Posts
    606
    Thanks given
    21
    Thanks received
    11
    Rep Power
    42
    How can i make every where in the game wildy? I have tried a few things but nothing works. Can someone help please. ~Thanks.
    Thank Me or Even REP+ Me If I Really Helped With Anything!
    I first try to code myself, then I look for tutorials, next i try ask someone for help. I try once again to fix the problem, Finally I post for help.

    Reply With Quote  
     

  2. #2  
    Banned

    Join Date
    May 2011
    Posts
    1,238
    Thanks given
    193
    Thanks received
    267
    Rep Power
    0
    Find the inWild() boolean and change/add coordinates.
    Reply With Quote  
     

  3. Thankful user:


  4. #3  
    Registered Member FreekySteve69's Avatar
    Join Date
    Jun 2009
    Posts
    606
    Thanks given
    21
    Thanks received
    11
    Rep Power
    42
    i tried it. It didn't work.

    Code:
    	public boolean inWild() {
    		if(isInFala() || isInArd() || inFunPk()) {
    		return true;
    		}
    		if(absX > 2941 && absX < 3392 && absY > 3518 && absY < 3966 
    		|| absX > 3343 && absX < 3384 && absY > 9619 && absY < 9660
    		|| absX > 2941 && absX < 3392 && absY > 9918 && absY < 10366
    		|| absX > 2608 && absX < 2617 && absY > 3087 && absY < 3098
    		|| absX > 2612 && absX < 2622 && absY > 3330 && absY < 3335
    		|| absX > 2601 && absX < 2620 && absY > 3140 && absY < 3157
    		|| absX > 2648 && absX < 2658 && absY > 3279 && absY < 3287
    		|| absX > 2520 && absX < 2526 && absY > 4774 && absY < 4780
    		|| absX > 3293 && absX < 2729 && absY > 3403 && absY < 3343) {	
    			return true;
    		}
    		return false;
    	}
    Thank Me or Even REP+ Me If I Really Helped With Anything!
    I first try to code myself, then I look for tutorials, next i try ask someone for help. I try once again to fix the problem, Finally I post for help.

    Reply With Quote  
     

  5. #4  
    Banned

    Join Date
    Mar 2011
    Posts
    4,062
    Thanks given
    194
    Thanks received
    689
    Rep Power
    0
    Quote Originally Posted by Dragonluck4 View Post
    i tried it. It didn't work.

    Code:
    	public boolean inWild() {
    		if(isInFala() || isInArd() || inFunPk()) {
    		return true;
    		}
    		if(absX > 2941 && absX < 3392 && absY > 3518 && absY < 3966 
    		|| absX > 3343 && absX < 3384 && absY > 9619 && absY < 9660
    		|| absX > 2941 && absX < 3392 && absY > 9918 && absY < 10366
    		|| absX > 2608 && absX < 2617 && absY > 3087 && absY < 3098
    		|| absX > 2612 && absX < 2622 && absY > 3330 && absY < 3335
    		|| absX > 2601 && absX < 2620 && absY > 3140 && absY < 3157
    		|| absX > 2648 && absX < 2658 && absY > 3279 && absY < 3287
    		|| absX > 2520 && absX < 2526 && absY > 4774 && absY < 4780
    		|| absX > 3293 && absX < 2729 && absY > 3403 && absY < 3343) {	
    			return true;
    		}
    		return false;
    	}
    pretty sure it would be like

    Code:
    public boolean inWild() {
    		if(absX > 0 && absY > 0) {	
    			return true;
    		}
    		return false;
    	}
    Reply With Quote  
     

  6. Thankful users:


  7. #5  
    Banned

    Join Date
    Jun 2009
    Posts
    2,916
    Thanks given
    169
    Thanks received
    806
    Rep Power
    0
    public boolean isInPvP() {
    if(absX > 0 && absX < 9999 && absY > 0 && absY < 9999 && heightLevel >= 4 && heightLevel <= 4 || absX >= 3143 && absX <= 3260 && absY >= 3402 && absY <= 3490 || absX >= 2938 && absX <= 3060 && absY >= 3321 && absY <= 3389 || absX >= 3182 && absX <= 3274 && absY >= 3377 && absY <= 3424 || absX >= 2937 && absX <= 3032 && absY >= 3384 && absY <= 3404 || absX >= 3226 && absX <= 3266 && absY >= 3149 && absY <= 3321) {
    return true;
    }
    return false;
    }
    replace heighlevel with == 0
    Reply With Quote  
     

  8. Thankful user:


  9. #6  
    Registered Member FreekySteve69's Avatar
    Join Date
    Jun 2009
    Posts
    606
    Thanks given
    21
    Thanks received
    11
    Rep Power
    42
    Ok i'm going to give it a try tomorrow and i'll get back to you guys. Thanks.
    Thank Me or Even REP+ Me If I Really Helped With Anything!
    I first try to code myself, then I look for tutorials, next i try ask someone for help. I try once again to fix the problem, Finally I post for help.

    Reply With Quote  
     

  10. #7  
    Registered Member FreekySteve69's Avatar
    Join Date
    Jun 2009
    Posts
    606
    Thanks given
    21
    Thanks received
    11
    Rep Power
    42
    Nope i tried both allstar's way and relex law's way but neither worked.
    Thank Me or Even REP+ Me If I Really Helped With Anything!
    I first try to code myself, then I look for tutorials, next i try ask someone for help. I try once again to fix the problem, Finally I post for help.

    Reply With Quote  
     

  11. #8  
    Banned

    Join Date
    Jun 2009
    Posts
    2,916
    Thanks given
    169
    Thanks received
    806
    Rep Power
    0
    Quote Originally Posted by Dragonluck4 View Post
    Nope i tried both allstar's way and relex law's way but neither worked.
    than you should quit.
    Reply With Quote  
     

  12. #9  
    Registered Member FreekySteve69's Avatar
    Join Date
    Jun 2009
    Posts
    606
    Thanks given
    21
    Thanks received
    11
    Rep Power
    42
    Wait, i managed to get every where wildy but when i'm in varrock or something it's says that im in -10 wildy? How can i fix this?
    Thank Me or Even REP+ Me If I Really Helped With Anything!
    I first try to code myself, then I look for tutorials, next i try ask someone for help. I try once again to fix the problem, Finally I post for help.

    Reply With Quote  
     

  13. #10  
    Banned

    Join Date
    Jun 2009
    Posts
    2,916
    Thanks given
    169
    Thanks received
    806
    Rep Power
    0
    if (wildLevel < 0 || wildlevel > 60){
    wildLevel = 10;
    }
    ..come on dude
    Reply With Quote  
     

Page 1 of 2 12 LastLast

Thread Information
Users Browsing this Thread

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


User Tag List

Similar Threads

  1. Replies: 1
    Last Post: 06-03-2011, 06:42 PM
  2. Replies: 4
    Last Post: 12-23-2010, 02:35 PM
  3. in Wildy
    By Mocro in forum Help
    Replies: 0
    Last Post: 07-03-2009, 02:10 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •