Thread: Removing world objects/terrain, please at least look.

Results 1 to 4 of 4
  1. #1 Removing world objects/terrain, please at least look. 
    Registered Member
    Join Date
    Dec 2011
    Posts
    11
    Thanks given
    0
    Thanks received
    0
    Rep Power
    11
    Alright so, I'm a pretty decent coder, not advanced at all, but I know how to delete things such as altars and stuff, and I've deleted the wildy ditch on a server before, but the wildy ditch on this server, I can't find it anywhere in the server or client data to delete it, I've searched by the coordinates and everything, please help?
    Reply With Quote  
     

  2. #2  
    Member
    Join Date
    Sep 2012
    Age
    27
    Posts
    172
    Thanks given
    22
    Thanks received
    7
    Rep Power
    0
    Maybe search for the object ID? (23271)
    Reply With Quote  
     

  3. #3  
    Donator


    Join Date
    Nov 2012
    Age
    27
    Posts
    165
    Thanks given
    91
    Thanks received
    80
    Rep Power
    160
    Follow this package:

    Code:
    src.server.world.ObjectManager
    Find this method:
    Code:
    public void loadCustomSpawns(Client c) {
    Add the following:
    Code:
    c.getPA().checkObjectSpawn(-1, X_COORDINATE, Y_COORDINATE, HEIGHT_LEVEL, OBJECT_TYPE);
    Configure those constants.

    NOTE: I got this from http://www.rune-server.org/runescape...ml#post2274511
    Reply With Quote  
     

  4. #4  
    Middle Finger is Here


    Join Date
    Feb 2012
    Age
    31
    Posts
    2,546
    Thanks given
    377
    Thanks received
    502
    Rep Power
    162
    Not sure but i think playerassistant.java

    somewhere here

    Code:
    public void removeObject(int x, int y) {
    		object(-1, x, x, 10, 10);
    	}
    	
    	private void objectToRemove(int X, int Y) {
    		object(-1, X, Y, 10, 10);
    	}
    	
    	private void objectToRemove2(int X, int Y) {
    		object(-1, X, Y, -1, 0);
    	}
    	
    	public void removeObjects() {
    		
    	}
    Hi
    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: 11-27-2012, 08:09 AM
  2. [PI] Need help removing objects
    By I Mohandas I in forum Help
    Replies: 4
    Last Post: 11-03-2012, 01:46 AM
  3. Removing Objects
    By Oogle in forum Help
    Replies: 4
    Last Post: 11-01-2012, 01:18 AM
  4. [PI] Removing objects
    By Jmk600 in forum Help
    Replies: 3
    Last Post: 05-08-2011, 06:36 PM
  5. Replies: 1
    Last Post: 04-01-2010, 03:31 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
  •