|
|
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.

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?


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.
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.![]()




osrsbox npc ids
//thread



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; }

| « 637/639 Developer Request | RuneDocs » |
| Thread Information |
Users Browsing this ThreadThere are currently 1 users browsing this thread. (0 members and 1 guests) |