NPC that gives random item or location of gobbie box items.. #4553
-
I've been searching around and trying several things but I haven't found a discussion or issue asking for this same thing.. My question is where are the random items the gobbie mystery boxes give you located? or is there just a way to make a new npc that does the same thing but from a list I choose? Like trade it zinc ore get random thing from a list once a day or so? Reason being is we capped the server at 75 because that's when we had the most fun with this game but we often get random things above 75. I feel like I'm just missing something super easy with the gobbie and sorry if that's the case... we did setup the Mog Bonanza to give us a lot of items we want instead of what was there, crated a custom shop etc...just trying to do this thing now :P |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
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. 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; |
Beta Was this translation helpful? Give feedback.
-
inside the belly perfect! I forgot about that one. I was trying to mess with the Turban npc from whitegate but I only got it giving a huge list of items.. lol. Thanks so much! |
Beta Was this translation helpful? Give feedback.
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;