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.
Printable View
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.
[Only registered and activated users can see links. Click Here To Register...]
It seems you're basically asking rune-server to fix every bug you've found so far. :eyes: 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?
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 D [Only registered and activated users can see links. Click Here To Register...]
You are also, if you are irrelevant. Just leave my topic and don't show me ur face again here.Quote:
Originally Posted by Kid Buu [Only registered and activated users can see links. Click Here To Register...]
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 itQuote:
Originally Posted by Ilgaz [Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...] - For npc ids gl
Don't be a twat at people being honest, and who are you?Quote:
Originally Posted by Ilgaz [Only registered and activated users can see links. Click Here To Register...]
We are all people here and I am a person who asked for help overall. No need to get smart and clever here.Quote:
Originally Posted by A NULL [Only registered and activated users can see links. Click Here To Register...]
Who I am? You don't need to know like I don't know who u are.
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 [Only registered and activated users can see links. Click Here To Register...]
Also how are you going to make this statement after getting smart with almost every commenter on your thread, unprovoked?Quote:
Originally Posted by Ilgaz [Only registered and activated users can see links. Click Here To Register...]
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. <3
osrsbox npc ids
//thread
Pretty sure on that source you can do ;;fnpc npcnameQuote:
Originally Posted by Ilgaz [Only registered and activated users can see links. Click Here To Register...]
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;
}
Your attitude is horrible. Don't go complaining when nobody wants to help you.
[Only registered and activated users can see links. Click Here To Register...]