Thread: How do you find an npc's model ID?

Results 1 to 10 of 10
  1. #1 How do you find an npc's model ID? 
    Registered Member Versatile's Avatar
    Join Date
    Dec 2014
    Age
    26
    Posts
    433
    Thanks given
    247
    Thanks received
    9
    Rep Power
    9
    Title says it all. How do you find it's npc id?
    Spoiler for Don't be a deadfool:
    Reply With Quote  
     

  2. #2  
    Banned

    Join Date
    Oct 2012
    Posts
    4,710
    Thanks given
    1,679
    Thanks received
    1,105
    Rep Power
    0
    Dump them from the client?
    Reply With Quote  
     

  3. #3  
    Registered Member smurfen's Avatar
    Join Date
    Nov 2015
    Posts
    28
    Thanks given
    1
    Thanks received
    3
    Rep Power
    43
    RuneScape NPC ID List - RuneLocus first u use dat then u use the frostcache editor and check the model id
    Attached image
    Reply With Quote  
     

  4. #4  
    Registered Member Versatile's Avatar
    Join Date
    Dec 2014
    Age
    26
    Posts
    433
    Thanks given
    247
    Thanks received
    9
    Rep Power
    9
    Quote Originally Posted by smurfen View Post
    RuneScape NPC ID List - RuneLocus first u use dat then u use the frostcache editor and check the model id
    How do you use it? I've read instructions, but I'm still unclear with it. I get errors when I click "submit" on the button for the tool.
    Do I have to edit something or what?

    Quote Originally Posted by _Patrick_ View Post
    Dump them from the client?
    I don't get it. Help?
    Spoiler for Don't be a deadfool:
    Reply With Quote  
     

  5. #5  
    Registered Member smurfen's Avatar
    Join Date
    Nov 2015
    Posts
    28
    Thanks given
    1
    Thanks received
    3
    Rep Power
    43
    wich revison are u on
    Attached image
    Reply With Quote  
     

  6. #6  
    High Quality Designs

    JxkeDesigns's Avatar
    Join Date
    Nov 2015
    Posts
    194
    Thanks given
    117
    Thanks received
    34
    Rep Power
    89
    I have a command ingame for it
    Reply With Quote  
     

  7. #7  
    Banned
    Join Date
    Dec 2015
    Posts
    240
    Thanks given
    66
    Thanks received
    42
    Rep Power
    0
    theres a thread that tells you how. It should be in the tutorial section
    Reply With Quote  
     

  8. #8  
    Registered Member PurpleUnicorn's Avatar
    Join Date
    Mar 2016
    Posts
    18
    Thanks given
    0
    Thanks received
    0
    Rep Power
    11
    Seriously... Go to Entitydef.java, press CTRL+F and look up what freaking NPC you want...
    Model ID is there...
    I support >>> AetherScape <<<


    You already earned my respect.
    Remember, it will only take a second to destroy the respect.
    Respect me and I will respect you.
    Disrespect me and I'll just ditch you.
    Reply With Quote  
     

  9. #9  
    What?

    Luminous's Avatar
    Join Date
    Apr 2015
    Posts
    489
    Thanks given
    231
    Thanks received
    341
    Rep Power
    179
    Create server sided a command that returns the NPC definition opcode for model ID in npcdefinition class
    Reply With Quote  
     

  10. #10  
    Owner of Runixscape
    Aviansie's Avatar
    Join Date
    Mar 2014
    Posts
    230
    Thanks given
    74
    Thanks received
    4
    Rep Power
    0
    Dear author of this post. If you are using 667-742, this will be useful:
    Throw this into your commands.
    Code:
            if (cmd[0].equalsIgnoreCase("nmid")) {
                int id = Integer.parseInt(cmd[1]);
                for (int j = 0; j < 90000; j++){
                    for (int i = 0; i<90000; i++){
                        try {
                player.sm("<col=0f00ff>ModelID "+j+ "</col> for <col=ff00ff>NPC " + id + " </col>is:<col=00ff00> " +NPCDefinitions.getNPCDefinitions(id).modelIds[j]);
                        } catch (Exception e){
                               
                        }
                }
                }
    
                return true;
    }
    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: 10
    Last Post: 08-25-2012, 04:01 PM
  2. Replies: 6
    Last Post: 06-07-2011, 02:10 PM
  3. Replies: 1
    Last Post: 04-27-2010, 06:10 PM
  4. Replies: 5
    Last Post: 06-29-2008, 11:07 PM
  5. Replies: 5
    Last Post: 01-10-2008, 01: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
  •