Thread: Removing PVP from PI.

Results 1 to 4 of 4
  1. #1 Removing PVP from PI. 
    .supersyn

    myK-'s Avatar
    Join Date
    Aug 2008
    Posts
    1,781
    Thanks given
    22
    Thanks received
    40
    Rep Power
    399
    thanks fixed
    Reply With Quote  
     

  2. #2  
    Registered Member
    iHybrid's Avatar
    Join Date
    Sep 2010
    Posts
    2,095
    Thanks given
    636
    Thanks received
    352
    Rep Power
    81
    Go into your player class and find the inWild boolean then replace it with what I have.

    If you need help adding/editing the areas let me know.

    Code:
    public boolean inWild() {
    	if(absX > 2941 && absX < 3392 && absY > 3518 && absY < 3966 || 
    		absX > 2941 && absX < 3392 && absY > 9918 && absY < 10366 || 
    		absX > 3174 && absX < 3225 && absY > 3399 && absY < 3471) {
    		if (!inBank())
    			return true;
    	}
    	return false;
    }
    
    public boolean inBank() {
    	if (absX > 3180 && absX < 3186 && absY > 3432 && absY < 3447 || 
    		absX > 3213 && absX < 3221 && absY > 3409 && absY < 3420) {
    		return true;
    	} else {
    
    	}
    	return false;
    }
    Rep/Thanks is always appreciated
    Reply With Quote  
     

  3. #3  
    .supersyn

    myK-'s Avatar
    Join Date
    Aug 2008
    Posts
    1,781
    Thanks given
    22
    Thanks received
    40
    Rep Power
    399
    Quote Originally Posted by iHybrid View Post
    Go into your player class and find the inWild boolean then replace it with what I have.

    If you need help adding/editing the areas let me know.

    Code:
    public boolean inWild() {
    	if(absX > 2941 && absX < 3392 && absY > 3518 && absY < 3966 || 
    		absX > 2941 && absX < 3392 && absY > 9918 && absY < 10366 || 
    		absX > 3174 && absX < 3225 && absY > 3399 && absY < 3471) {
    		if (!inBank())
    			return true;
    	}
    	return false;
    }
    
    public boolean inBank() {
    	if (absX > 3180 && absX < 3186 && absY > 3432 && absY < 3447 || 
    		absX > 3213 && absX < 3221 && absY > 3409 && absY < 3420) {
    		return true;
    	} else {
    
    	}
    	return false;
    }

    Rep/Thanks is always appreciated
    Don't I got to take out the PVP shit before I do that?
    Reply With Quote  
     

  4. #4  
    Registered Member
    Join Date
    Aug 2010
    Posts
    739
    Thanks given
    32
    Thanks received
    51
    Rep Power
    35
    Just take out the pvp boolean and remove the if in pvp statements wherever else they are.
    [SPOIL]
    Quote Originally Posted by Archon Server View Post
    What do you mean compile?
    Quote Originally Posted by Hughes View Post
    I don't know the program i need to open a CLASS file since every time i try to open one in notepad it brings up random symbols.

    Quote Originally Posted by Flux View Post
    Quote Originally Posted by Tyluur View Post
    your better
    my better
    [/SPOIL]
    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: 1
    Last Post: 04-01-2010, 03:31 AM
  2. Removing ...
    By Bliss-Scape in forum Help
    Replies: 0
    Last Post: 12-12-2009, 10:33 PM
  3. [525]Removing Pvp[525]
    By da kamekaze in forum Help
    Replies: 3
    Last Post: 07-30-2009, 11:24 PM
  4. Removing an Npc[Esp]
    By Hackur in forum Help
    Replies: 22
    Last Post: 04-28-2009, 07:39 PM
  5. Replies: 4
    Last Post: 12-27-2008, 05:46 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
  •