Thread: Kronos - Npc ID?

Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1 Kronos - Npc ID? 
    Registered Member
    Join Date
    Nov 2020
    Posts
    78
    Thanks given
    41
    Thanks received
    2
    Rep Power
    23
    How do I find npc ids?

    Also I req. Old Man's Easter Egg Exchange npc ID? & Wilderness Points Exchange npc ID?

    I will appreciate.
    Reply With Quote  
     

  2. #2  
    D
    D is offline
    Extreme Donator


    Join Date
    Sep 2014
    Posts
    138
    Thanks given
    95
    Thanks received
    89
    Rep Power
    1287
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  3. #3  
    Donator

    Kid Buu's Avatar
    Join Date
    Aug 2017
    Posts
    427
    Thanks given
    169
    Thanks received
    222
    Rep Power
    399
    It seems you're basically asking rune-server to fix every bug you've found so far. Have you looked into these issues or just tested them in game?

    For example;
    Does the Maul (or) creation have code that simply isn't working or do you have to write it from scratch?
    Reply With Quote  
     

  4. #4  
    Registered Member
    Join Date
    Nov 2020
    Posts
    78
    Thanks given
    41
    Thanks received
    2
    Rep Power
    23
    Quote Originally Posted by D View Post
    [Only registered and activated users can see links. ]
    I don't need your links if you are irrelevant. Just leave my topic and don't show me ur face again here.

    Quote Originally Posted by Kid Buu View Post
    It seems you're basically asking rune-server to fix every bug you've found so far. Have you looked into these issues or just tested them in game?

    For example;
    Does the Maul (or) creation have code that simply isn't working or do you have to write it from scratch?
    You are also, if you are irrelevant. Just leave my topic and don't show me ur face again here.

    Don't fill posts at my expense.
    Reply With Quote  
     

  5. #5  
    Registered Member

    Join Date
    Jun 2016
    Posts
    459
    Thanks given
    190
    Thanks received
    137
    Discord
    View profile
    Rep Power
    231
    Quote Originally Posted by Ilgaz View Post
    I don't need your links if you are irrelevant. Just leave my topic and don't show me ur face again here.



    You are also, if you are irrelevant. Just leave my topic and don't show me ur face again here.

    Don't fill posts at my expense.
    Half the things you first requested help with were simple things you could find how to fix in a matter of seconds if you took the time to search for it

    [Only registered and activated users can see links. ] - For npc ids gl
    Reply With Quote  
     

  6. #6  
    Banned

    Join Date
    Jun 2013
    Posts
    500
    Thanks given
    119
    Thanks received
    69
    Discord
    View profile
    Rep Power
    0
    Quote Originally Posted by Ilgaz View Post
    I don't need your links if you are irrelevant. Just leave my topic and don't show me ur face again here.



    You are also, if you are irrelevant. Just leave my topic and don't show me ur face again here.

    Don't fill posts at my expense.
    Don't be a twat at people being honest, and who are you?
    Reply With Quote  
     

  7. #7  
    Registered Member
    Join Date
    Nov 2020
    Posts
    78
    Thanks given
    41
    Thanks received
    2
    Rep Power
    23
    Quote Originally Posted by A NULL View Post
    Don't be a twat at people being honest, and who are you?
    We are all people here and I am a person who asked for help overall. No need to get smart and clever here.

    Who I am? You don't need to know like I don't know who u are.
    Reply With Quote  
     

  8. #8  
    Donator

    Kid Buu's Avatar
    Join Date
    Aug 2017
    Posts
    427
    Thanks given
    169
    Thanks received
    222
    Rep Power
    399
    Quote Originally Posted by Ilgaz View Post
    I don't need your links if you are irrelevant. Just leave my topic and don't show me ur face again here.



    You are also, if you are irrelevant. Just leave my topic and don't show me ur face again here.

    Don't fill posts at my expense.
    Irrelevant? I was asking to properly assist you with the one issue, lmao. If you have code for it that doesn't work I would have been willing to look at it if posted.

    Quote Originally Posted by Ilgaz View Post
    We are all people here and I am a person who asked for help overall. No need to get smart and clever here.

    Who I am? You don't need to know like I don't know who u are.
    Also how are you going to make this statement after getting smart with almost every commenter on your thread, unprovoked?

    With that attitude you better learn to identify issues & solve them on your own fairly quickly. Also don't take that attitude into a server launch if you do anything with this source because it will ultimately fail. Glad to see you narrowed down your thread. Assuming you read the link on how to ask for help? Maybe now the community might be able & willing to help you. Also, To find NPC id's you could download any cache dump of your desired revision found on this forum with a 5 second search or visit the link shadowtea shared. Sorry for "filling posts at your expense" won't see me on anymore of your help threads.
    Reply With Quote  
     

  9. Thankful user:


  10. #9  
    what the dog doin

    mikan's Avatar
    Join Date
    Aug 2017
    Posts
    917
    Thanks given
    698
    Thanks received
    731
    Discord
    View profile
    Rep Power
    4898
    osrsbox npc ids

    //thread
    Reply With Quote  
     

  11. Thankful user:


  12. #10  
    BoomScape #1
    BoomScape's Avatar
    Join Date
    May 2013
    Posts
    2,202
    Thanks given
    254
    Thanks received
    210
    Discord
    View profile
    Rep Power
    43
    Quote Originally Posted by Ilgaz View Post
    How do I find npc ids?

    Also I req. Old Man's Easter Egg Exchange npc ID? & Wilderness Points Exchange npc ID?

    I will appreciate.
    Pretty sure on that source you can do ;;fnpc npcname

    Else add this command should work

    Code:
                case "fnpc": {
                    String search = query.substring(5);
                    int combat = -1;
                    if (search.contains(":")) {
                        String[] s = search.split(":");
                        search = s[0];
                        combat = Integer.valueOf(s[1]);
                    }
                    for (NPCDef def : NPCDef.LOADED) {
                        if (def != null && def.name.toLowerCase().contains(search.toLowerCase()) && (combat == -1 || def.combatLevel == combat))
                            player.sendMessage(def.id + " (" + def.name + "): combat=" + def.combatLevel + " options=" + Arrays.toString(def.options) + " size=" + def.size);
                    }
                    return true;
                }
    Reply With Quote  
     

  13. Thankful user:


Page 1 of 2 12 LastLast

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. GodwarsDungeon NPC ID's
    By holy dang it in forum Configuration
    Replies: 23
    Last Post: 12-19-2016, 05:35 AM
  2. Npc ID's above 3500!
    By ~Legend Rene in forum Configuration
    Replies: 7
    Last Post: 07-03-2008, 12:41 PM
  3. Replies: 1
    Last Post: 05-24-2008, 11:21 PM
  4. NPC ID in Examine
    By eyrescape in forum Tutorials
    Replies: 0
    Last Post: 04-20-2008, 04:29 PM
  5. Pest Control (ingame) npc ids
    By Alex_NL in forum Tools
    Replies: 8
    Last Post: 08-23-2007, 07:23 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
  •