Jump to content
  • 0
Ronaldo

Unidentified Equipment ID

Question

Hello.

I want to increase the size of the Diamond Ring and Gold Ring items to see better when they drop.
The problem is that they drop as an unidentified accessory and I can't find the sprite ID on the database sites.
I found only the id of the rings already identified.

Does anyone know this ID?

Thank you very much.
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • -1

src/map/itemdb.cpp#L582-L596

/** Specifies if item-type should drop unidentified.
* @param nameid ID of item
*/
char itemdb_isidentified(unsigned short nameid) {

	// add this part
	if (nameid == 2613 || nameid == 2610)
		return 1;
		
	int type=itemdb_type(nameid);
	switch (type) {
		case IT_WEAPON:
		case IT_ARMOR:
		case IT_PETARMOR:
		case IT_SHADOWGEAR:
			return 0;
		default:
			return 1;
	}
}

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.