Thread: How can i dump OSRS Data for server side

Results 1 to 4 of 4
  1. #1 How can i dump OSRS Data for server side 
    Registered Member Bubble-Gum's Avatar
    Join Date
    Mar 2014
    Posts
    18
    Thanks given
    8
    Thanks received
    2
    Rep Power
    11
    Hello,

    I would like to know how i can find the

    NPC: IDS + Emotes (Attack,Defence)
    Items ID

    for the osrs data.

    Thanks for ready.
    Reply With Quote  
     

  2. #2  
    Registered Member
    Join Date
    Jul 2014
    Posts
    306
    Thanks given
    62
    Thanks received
    40
    Rep Power
    0
    dumping the ids are client sided.
    Just write a command that can read the cache and print out all the info you need.
    Quote Originally Posted by lostlegend View Post
    its not os-legacy its switched to Project-Insanity.
    And Very Much i ReCoded MEself. Check it out and u wil see ur self.
    People allways bothering with saying OS-LEGACY.. U NEVER CHECKED SERVERDONT COMPLAIN CHECK IT OUT B4 COMPLAINING
    Reply With Quote  
     

  3. #3  
    Extreme Donator

    Join Date
    Apr 2015
    Posts
    371
    Thanks given
    215
    Thanks received
    79
    Rep Power
    74
    Add more to it.
    Code:
    public static void dumpData() {
    		try {
    			FileWriter fw = new FileWriter("NPCDump.cfg");
    			String themodels;
    			for (int j = 0; j < 14377; j++) {
    				EntityDef npc = EntityDef.forID(j);
    				themodels = Arrays.toString(npc.anIntArray94);
    				fw.write(j + " " + npc.name + " 	Stand: " + npc.standAnim + " 	Walk: " + npc.walkAnim + "	Model: " + themodels + "\r\n");
    			}
    			fw.close();
    		} catch (IOException ioe) {ioe.printStackTrace();}
    	}
    Reply With Quote  
     

  4. #4  
    Registered Member Bubble-Gum's Avatar
    Join Date
    Mar 2014
    Posts
    18
    Thanks given
    8
    Thanks received
    2
    Rep Power
    11
    Thanks for helping gonna try it out
    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: 6
    Last Post: 07-26-2013, 03:28 AM
  2. Replies: 0
    Last Post: 08-11-2011, 11:17 AM
  3. how can i change head icons for npcs?
    By digistr in forum Help
    Replies: 2
    Last Post: 05-30-2009, 04:14 PM
  4. how can i add walls on my server?
    By Kingdad38 in forum Help
    Replies: 0
    Last Post: 05-07-2009, 08:22 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
  •