just an inquiry, i have these entries in my item_combo_db.txt
25018:25024,{ bonus bDefRate,2; } // armor-boots
25018:25030,{ bonus bDefRate,2; } // armor-manteau
25018:25012,{ bonus bDefRate,2; } // armor-ring
25024:25012,{ bonus bDefRate,2; } // boots-ring
25030:25012,{ bonus bDefRate,2; } // manteau-ring
25024:25030,{ bonus bDefRate,2; } // boots-manteau
25012:25012,{ bonus bDefRate,2; } // ring-ring
// does this mean that if all of these are satisfied, it will be bonus bDefRate,14; ?
25018:25024:25030,{ bonus bDefRate,5; bonus bMaxHPrate,10; } // armor-boots-manteau
25018:25024:25012,{ bonus bDefRate,5; bonus bMaxHPrate,10; } // armor-boots-ring
25018:25030:25012,{ bonus bDefRate,5; bonus bMaxHPrate,10; } // armor-manteau-ring
25018:25012:25012,{ bonus bDefRate,5; bonus bMaxHPrate,10; } // armor-ring-ring
25024:25030:25012,{ bonus bDefRate,5; bonus bMaxHPrate,10; } // boots-manteau-ring
25024:25012:25012,{ bonus bDefRate,5; bonus bMaxHPrate,10; } // boots-ring-ring
25030:25012:25012,{ bonus bDefRate,5; bonus bMaxHPrate,10; } // manteau-ring-ring
// and this one bonus bDefRate,35; bonus bMaxHPRate, 70; ?
25018:25024:25030:25012,{ bonus bDefRate,10; bonus bMaxHPrate,15; bonus bStr,10; } // armor-boots-manteau-ring
25018:25024:25012:25012,{ bonus bDefRate,10; bonus bMaxHPrate,15; bonus bStr,10; } // armor-boots-ring-ring
25018:25030:25012:25012,{ bonus bDefRate,10; bonus bMaxHPrate,15; bonus bStr,10; } // armor-manteau-ring-ring
25024:25030:25012:25012,{ bonus bDefRate,10; bonus bMaxHPrate,15; bonus bStr,10; } // boots-manteau-ring-ring
// and with this, bonus bDefRate,40; bonus bMaxHPRate,60; bonus bStr,40; ?
25018:25024:25030:25012:25012,{ bonus bDefRate,15; bonus bMaxHPrate,20; bonus bStr,20; bonus bAtkRate,20; } // armor-boots-manteau-ring-ring
// and ultimately with the complete set, would add up all together, to give bonus bDefRate,104; bonus bMaxHPRate,150, bonus bStr, 60?
bonus bDefRate,104;
bonus bMaxHPRate,150;
bonus bStr,60;
happens when I completed the armor set, but what I expect it to give is only the parameter when all 5 pieces are completed.
Its like becoming an && operand instead of ||.
and there are times when i am wearing a complete set, when i remove just one piece of the set, (in my case the ring (25012)), all the bonuses would be gone, like wearing nothing at all, but i am still wearing 4/5 of the set.
please help.