Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/02/15 in all areas

  1. have you check your ErrorLog.txt ? you have to fix that list of error first, i got too many errors at first try.
    1 point
  2. You might want to try item_db.conf to item_db.txt converter, thanks to Dastgir!
    1 point
  3. Back to a year ago, I added Official Item Packages and there's a param called isNamed in doc/item_group.txt that mostly used in db/re/item_package.txt. And guess what? Let me apologize, it's a wrong interpretation that causing a wrong implementation!! In official Item Packages itself, there's field called guid. I didn't notice how actually it should be done, and just convert the usage to give-the-obtain-name just like forged & created item do. Until knew the "unstacked" stackable item thingy. In this implementation, "reverted" that isNamed to GUID and moved the isNamed to the last optional param after isBound. When item in package is flagged with GUID, for stackable items just like Bubble_Gum in Pet_Egg_Scroll10 will be stacked each 2 in your inventory (storage, cart, guild storage when it's moved). This GUID is using player's Unique ID to generate, just like Unique ID for unstackable items (weapons, armors) // AEGIS-- // Pet_Egg_Scroll10 {name = "random1", item = "Bubble_Gum", cnt = 2, hour = 0, onair = false, guid = true, probability= 100}; // ours -- IG_Pet_Egg_Scroll10,Bubble_Gum,100,2,1,0,0,1 Weird? @Aleos say so... After updating your server and want to disable this, there's config in src/config/core.h and comment it. #define ENABLE_ITEM_GUID Or, just keep this feature is active, you can meet new NPC to merge the separated items in Prontera (146,95), Mergician! My view: Commit: 7295bdc, 1e6e3f4 it was in Pull: 143 Summary: Corrected wrong interpretation of guid in item group/package implementation. Using player's unique ID generator to generates GUID. Added new script command 'mergeitem' to merge separated items. Enabled NPC: npc/re/other/item_merge.txt. Added src/config/core.h config ENABLE_ITEM_GUID, enabled by default. Added item flag 4 (db/re/item_flag.txt/db/pre-re/item_flag.txt). Item with this flag will generates GUID when obtained if doesn't have UID yet. If obtained by /item, only will get 1x.
    1 point
×
×
  • Create New...