summaryrefslogtreecommitdiff
path: root/db/pre-re/item_db.conf
AgeCommit message (Collapse)AuthorFilesLines
2015-11-15Fixed too-generic constant names of gettime() typesHaru1-3/+6
- Follow-up to 3bd77ffc0daca508352834add828766490075aee - The names were too generic (not namespaced), and were easily clashing with custom (and potential future official) constants or variables. - Constants are now prefixed with a 'GETTIME_' namespace: - GETTIME_SECOND - GETTIME_MINUTE - GETTIME_HOUR - GETTIME_WEEKDAY - GETTIME_DAYOFMONTH - GETTIME_MONTH - GETTIME_YEAR - GETTIME_DAYOFYEAR - Fixed some excessive (and some times incorrect) parentheses in various scripts using gettime(). - Updated documentation. Signed-off-by: Haru <haru@dotalux.com>
2015-10-26Fixes Constant Name in item_db(#821)Dastgir1-1/+1
2015-07-08Update Unique ID system to match official now it cover all cash items ↵Ibrahim Hossam1-0/+1
include stackable ones. Implement ForceSerial option in Package Item Database to force serial for any item. Implement ForceSerial option in item database to force serial for any item. Implement Merge Client interface to merge stackable items with serial numbers ( check npc/other/item_merge.txt ).
2015-06-25Added WoE Teleport Scroll, and fixes its typoDastgir1-2/+3
Signed-off-by: Haru <haru@dotalux.com>
2015-06-24Updated item_db with Race2 ConstantsDastgir1-9/+9
2015-06-12Changed RC_DemiHuman to RC_DemiPlayer in Pre-RenewalDastgir1-275/+275
2015-04-25Updated _figures using Class instead of BaseClass according to issue #504.Streusel1-7/+7
Special thanks to MordekaiserGod for bringing it up.
2015-04-06Removed All Fields with default values in item_db.confDastgir1-8/+0
2015-01-25Fix bug 8507 http://hercules.ws/board/tracker/issue-8507-filirs-pinions/Michieru1-0/+1
2014-12-26Added note about KeepAfterUse to pre-re item_dbHaru1-0/+1
- Follow-up to d4e0689 - Special thanks to Litro - Also synchronized header comment of the item_db2 Signed-off-by: Haru <haru@dotalux.com>
2014-12-07Revert mob_db atk2, Mobinfo will be fixed later.Michieru1-1/+0
Update Red Pirate Banada to official.
2014-11-07Added Roulette Items to pre-redastgir1-3/+59
Changed "set" to Direct assigning.
2014-11-03Adjusted roulette logic ( see 239d480487e24294975f35ed55f210837ad1088e )shennetsind1-8/+53
Special Thanks to Yommy and Ziu for the adjusted logic! This commit also introduces the proper coins to obtain the roulette points, thanks to Michieru. Signed-off-by: shennetsind <ind@henn.et>
2014-11-02Replaced 'set' with direct assignment where applicable (item db)Haru1-15/+15
This also includes various other tweaks to the item db scripts, including the newly introduced min() and max() commands. Signed-off-by: Haru <haru@dotalux.com>
2014-09-20Replaced hardcoded values with constants for status_change_start's flagHaru1-17/+17
- Please use the values from enum scstart_flag when calling status_change_start or related functions. - This also applies to the sc_start script commands. Signed-off-by: Haru <haru@dotalux.com>
2014-09-04• Fixed some rental items both PRE-RENEWAL and RENEWALJedzkie1-26/+50
• Added missing item scripts in PRE-RENEWAL. Signed-off-by: Jedzkie <jedzkie13@rocketmail.com>
2014-08-29Fix status def calculation (bug:8306)Michieru1-17/+17
Updated script command 'sc_start' to allow for more variables and options rAthena 17326 (bug:8217) Fix Cart Tornado damage to official elemental crashing/memory error (thanks to Ind)
2014-05-31Extended ItemDB to support several other formats (part 1)Dastgir Pojee1-20/+14973
- Updated item_db.conf in preparation for the source edits. Signed-off-by: Haru <haru@dotalux.com>
2013-12-11Item database bug fixes.Xantara1-6/+10
#5608: Proper groups for Lotto Boxes #5625: Missing function for Dungeon Teleport Scroll II #5612: Missing skills
2013-11-18Corrected a small error in the Elemental_Sword scriptHaru1-2/+2
- bAutoSpellOnSkill rate for the item was incorrectly set to 10000 (=1000%), while the actual maximum value should be 1000 (=100%). - Special thanks to kyeme. Signed-off-by: Haru <haru@dotalux.com>
2013-11-15Added BindOnEquip to the item_db documentation and templatesHaru1-0/+1
- Special thanks to ossi0110, kyeme - Fixes bugreport:7821 http://hercules.ws/board/tracker/issue-7821-missing-item-dbconf-columne/ Signed-off-by: Haru <haru@dotalux.com>
2013-11-14Item DB overhaulHaru1-0/+74224
http://hercules.ws/board/topic/2954-item-db-file-structure-overhaul - Item db was changed to libconfig format. - This new format is larger than the original format, but it's less subject to conflicts when some items are edited and the file gets updated. - It is no longer necessary to specify fields with no value, and only the actually used fields are specified. - Items scripts (especially the long ones) are made more readable by splitting them into multiple lines, with proper indentation. - A converter perl script is provided in the tools directory (and a link to the web-based version of the same script canbe found in the above forum topic) - All of this was made possible thanks to Ind, Yommy. Signed-off-by: Haru <haru@dotalux.com>