Thread: Full Wilderness

Results 1 to 5 of 5
  1. #1 Full Wilderness 
    Registered Member
    Joker's Avatar
    Join Date
    Nov 2009
    Age
    28
    Posts
    1,845
    Thanks given
    378
    Thanks received
    1,206
    Rep Power
    5000
    I need to make my whole game a Wilderness, with no levels, just any level can fight any level basically. I also want some codes to add to make banks safe zones, and maybe an explanation of why to help me understand it. I'm a pretty decent 317 coder, but I don't know anything about modifying Wilderness zones, as I taught myself coding.

    So maybe just post a code to make the whole world a wilderness, and another code to add to make custom safe zones, possibly an explanation too?

    Thanks.
    Reply With Quote  
     

  2. #2  
    Franklin
    Guest
    For what base?
    if delta theres a tut for it.
    Reply With Quote  
     

  3. #3  
    Abyss
    Guest
    So basically like PvP?
    Reply With Quote  
     

  4. #4  
    Registered Member
    Purely chill's Avatar
    Join Date
    May 2009
    Posts
    838
    Thanks given
    91
    Thanks received
    11
    Rep Power
    315
    So, look for something like "isInWilderness" and you should see something similar to:
    Code:
    		if (Type == 1) {
    			if ((coordY >= 3520) && (coordY <= 3967) && (coordX <= 3392) && (coordX >= 2942)) {
    				return true;
    			}
    So change to to something like:
    Code:
    		if (Type == 1) {
    			if ((coordY >= 1) && (coordY <= 10000) && (coordX <= 10000) && (coordX >= 1)) {
    				return true;
    			}
    < is less than
    > is more than
    You can probably figure it out from there.
    Also, I taught myself coding, it doesn't mean you can't learn methods.
    Spoiler for Signature:
    Nightly Firefox builds The 64-bit one has too many glitches, get the 32-bit one.
    Reply With Quote  
     

  5. #5  
    Registered Member
    Joker's Avatar
    Join Date
    Nov 2009
    Age
    28
    Posts
    1,845
    Thanks given
    378
    Thanks received
    1,206
    Rep Power
    5000
    I'll try that Purely, thanks.
    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

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