Skip to content

NPC that gives random item or location of gobbie box items.. #4553

Closed Answered by Mortalelite
Cuponoodle101 asked this question in Q&A
Discussion options

You must be logged in to vote

If you want a NPC that gives random items you can look into Inside the Belly Quest. That is currently what I am doing with server I am on. To remove items that is 76+ you need to run these within a Query in the Database, to update mystery boxes

UPDATE item_basic, item_equipment SET item_basic.flags = item_basic.flags & ~0x0004 WHERE item_equipment.level > 74 AND (item_basic.flags & 0x0004) AND item_equipment.itemId = item_basic.itemid;

UPDATE item_basic, item_equipment SET item_basic.flags = item_basic.flags & ~0x0004 WHERE item_equipment.ilevel > 0 AND (item_basic.flags & 0x0004) AND item_equipment.itemId = item_basic.itemid;

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by Cuponoodle101
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants