Thread: Easiest way to adding non teleport section?

Results 1 to 6 of 6
  1. #1 Easiest way to adding non teleport section? 
    Donator


    Join Date
    Jul 2010
    Posts
    748
    Thanks given
    100
    Thanks received
    67
    Rep Power
    116
    i have mapped out the coords of my custom jail area(to make a boxed in area), but i remember seeing an int around in my server files for the wildy zone...Where can i find these again...
    Thanks!

    -Trent
    Reply With Quote  
     

  2. #2  
    Registered Member titas lol's Avatar
    Join Date
    Dec 2010
    Age
    13
    Posts
    311
    Thanks given
    11
    Thanks received
    13
    Rep Power
    1
    walking.java?
    Reply With Quote  
     

  3. #3  
    Donator


    Join Date
    Jul 2010
    Posts
    748
    Thanks given
    100
    Thanks received
    67
    Rep Power
    116
    Quote Originally Posted by titas lol View Post
    walking.java?
    Nope, but thanks for the suggestion.
    Reply With Quote  
     

  4. #4  
    Registered Member titas lol's Avatar
    Join Date
    Dec 2010
    Age
    13
    Posts
    311
    Thanks given
    11
    Thanks received
    13
    Rep Power
    1
    player.java look for
    Code:
     isBarr
    Reply With Quote  
     

  5. #5  
    Donator


    Join Date
    Jul 2010
    Posts
    748
    Thanks given
    100
    Thanks received
    67
    Rep Power
    116
    Found it!
    public boolean inWild() {
    if(absX > 2941 && absX < 3392 && absY > 3518 && absY < 3966 ||
    absX > 2941 && absX < 3392 && absY > 9918 && absY < 10366) {
    return true;
    }
    return false;
    }

    Thanks man!
    Now how do i add my new coords?
    Reply With Quote  
     

  6. #6  
    Registered Member titas lol's Avatar
    Join Date
    Dec 2010
    Age
    13
    Posts
    311
    Thanks given
    11
    Thanks received
    13
    Rep Power
    1
    Code:
    	public boolean isInYourstuff() {		
    		if(absX >= #### && absX <= #### && absY >= #### && absY <= ####) {
    			return true;
    		}
    		return false;
    	}
    Reply With Quote  
     


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: 10
    Last Post: 07-16-2010, 01:20 PM
  2. Adding Random Teleport
    By Demon in forum Help
    Replies: 19
    Last Post: 10-15-2009, 01:17 AM
  3. How to Move Teleports into the Teleport section
    By Noobface128 in forum Tutorials
    Replies: 2
    Last Post: 08-05-2008, 04:01 PM
  4. [TUT] Adding Teleport Book [TUT]
    By WolvesSoulZ in forum Tutorials
    Replies: 5
    Last Post: 10-01-2007, 04:40 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •