Thread: How To make Wilderness to my custom home???

Results 1 to 8 of 8
  1. #1 How To make Wilderness to my custom home??? 
    Registered Member
    Join Date
    Jun 2013
    Posts
    221
    Thanks given
    49
    Thanks received
    7
    Rep Power
    0
    Please someone help me to make on my rsps wilderness..
    i coded home
    and outside it i want wilderness , pk area

    ...................

    or make video

    ...................

    Add me on skype : benn.bm
    i got teamviewer...................................
    Thanks for helping
    Reply With Quote  
     

  2. #2  
    squared

    Join Date
    Jun 2013
    Posts
    355
    Thanks given
    38
    Thanks received
    27
    Rep Power
    30
    Depends on what base you're using.. I'm betting that you're using PI, so simply change your START coordinates to something located in the wilderness.
    Reply With Quote  
     

  3. Thankful user:


  4. #3  
    Registered Member
    Join Date
    Jun 2013
    Posts
    221
    Thanks given
    49
    Thanks received
    7
    Rep Power
    0
    Player.java
    there is



    I guess its easy if you add me on skype : benn.bm
    and i pm you there my tv id , pass
    and then you connect to my tv and help me...

    Reply With Quote  
     

  5. #4  
    Banned

    Join Date
    Nov 2010
    Age
    14
    Posts
    2,639
    Thanks given
    158
    Thanks received
    280
    Rep Power
    0


    Just look for the coords you need for your own custom home and change them..

    and then change the shops/npc's and everything you want to be on your custom home.. lol
    Reply With Quote  
     

  6. Thankful user:


  7. #5  
    Registered Member
    Join Date
    Jun 2013
    Posts
    221
    Thanks given
    49
    Thanks received
    7
    Rep Power
    0
    Player.java
    there is

    public boolean inWild() {

    if(absX > 2941 && absX < 3392 && absY > 3518 && absY < 3968 || //Benn
    absX > 2941 && absX < 3392 && absY > 9918 && absY < 10367) {
    return true;
    }
    return false;
    }
    public boolean isInArd() {
    if(absX > 2583 && absX < 2729 && absY > 3255 && absY < 3343) {
    return true;
    }
    return false;
    }


    public boolean safeZone() {

    if(absX > 2943 && absX < 2949 && absY > 3358 && absY < 3374 || absX > 3009 && absX < 3018 && absY > 3355 && absY < 3359 || absX > 2612 && absX < 2622 && absY > 3330 && absY < 3335 || absX > 2648 && absX < 2658 && absY > 3279 && absY < 3287) {
    return true;
    }
    return false;
    }


    public boolean arenas() {
    if(absX > 3331 && absX < 3391 && absY > 3242 && absY < 3260) {
    return true;
    }
    return false;
    }

    public boolean inDuelArena() {
    if((absX > 3322 && absX < 3394 && absY > 3195 && absY < 3291) ||
    (absX > 3311 && absX < 3323 && absY > 3223 && absY < 3248)) {
    return true;
    }
    return false;
    }

    public boolean inHybridPk() {
    return absX > 2510 && absX < 2545 && absY > 4764 && absY < 4795;
    }

    public boolean inMulti() {
    if((absX >= 3136 && absX <= 3327 && absY >= 3519 && absY <= 3607) ||
    (absX >= 2607 && absX <= 2644 && absY >= 3296 && absY <= 3332) ||
    (absX >= 2949 && absX <= 3001 && absY >= 3370 && absY <= 3392) ||
    (absX >= 3250 && absX <= 3342 && absY >= 9800 && absY <= 9870) ||
    (absX >= 3190 && absX <= 3327 && absY >= 3648 && absY <= 3839) ||
    (absX >= 3200 && absX <= 3390 && absY >= 3840 && absY <= 3967) ||
    (absX >= 2992 && absX <= 3007 && absY >= 3912 && absY <= 3967) ||
    (absX >= 2946 && absX <= 2959 && absY >= 3816 && absY <= 3831) ||
    (absX >= 3008 && absX <= 3199 && absY >= 3856 && absY <= 3903) ||
    (absX >= 3008 && absX <= 3071 && absY >= 3600 && absY <= 3711) ||
    (absX >= 3072 && absX <= 3327 && absY >= 3608 && absY <= 3647) ||
    (absX >= 2624 && absX <= 2690 && absY >= 2550 && absY <= 2619) ||
    (absX >= 2371 && absX <= 2422 && absY >= 5062 && absY <= 5117) ||
    (absX >= 2896 && absX <= 2927 && absY >= 3595 && absY <= 3630) ||
    (absX >= 2892 && absX <= 2932 && absY >= 4435 && absY <= 4464) ||
    (absX >= 2256 && absX <= 2287 && absY >= 4680 && absY <= 4711) ||
    (absX >= 3180 && absX <= 3184 && absY >= 3432 && absY <= 3428)) {
    return true;
    }
    return false;
    }


    I guess its easy if you add me on skype : benn.bm
    and i pm you there my tv id , pass
    and then you connect to my tv and help me...
    Reply With Quote  
     

  8. #6  
    Banned

    Join Date
    Apr 2012
    Posts
    3,225
    Thanks given
    2,554
    Thanks received
    832
    Rep Power
    0
    /ma bad

    Player class, declare a new boolean for an area.
    e.g.;
    Code:
    public boolean inHomePvP() {
    if(absX >= **** && absX <= **** && absY >= **** && absY <= ****) {
    return true;
    }
    return false;
    }
    Check the usage of the inWild-boolean.
    Reply With Quote  
     

  9. Thankful user:


  10. #7  
    Banned
    Join Date
    Jul 2012
    Posts
    114
    Thanks given
    10
    Thanks received
    7
    Rep Power
    0
    Edit: Posted fix already.
    Reply With Quote  
     

  11. Thankful user:


  12. #8  
    Registered Member
    Join Date
    Jun 2013
    Posts
    221
    Thanks given
    49
    Thanks received
    7
    Rep Power
    0
    Why you guys can't add me on skype?

    its easy if you add me : benn.bm
    i pm there you my tv id pass
    and then you can control..........
    and do it.
    -Thanks for helping guys ! :*
    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. [GALKON] How to make/implement your own custom loginbox
    By Shaqattack118. in forum Tutorials
    Replies: 32
    Last Post: 07-04-2012, 02:47 AM
  2. Replies: 4
    Last Post: 12-01-2011, 07:27 PM
  3. How to make a webclient (MY WAY)
    By s4n3sc4p3 in forum Tutorials
    Replies: 17
    Last Post: 01-01-2009, 03:08 AM
  4. How to make a server [My way]
    By gnarly in forum Tutorials
    Replies: 9
    Last Post: 06-11-2008, 02:21 AM
  5. How to make Wilderness areas Simpler - EASY
    By BraydenF in forum Tutorials
    Replies: 5
    Last Post: 04-06-2008, 10: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
  •