summaryrefslogtreecommitdiff
path: root/npc/re
AgeCommit message (Collapse)AuthorFilesLines
2019-03-11Remove conf dir.Andrei Karas275-171300/+0
2019-03-11Add MERC_ Constants to npc scriptsAnnieRuru3-9/+9
2019-02-11Merge pull request #1656 from AtlantisRO/job_quest_suraHaru1-3/+3
Fixes #1655 - Fix to Sura Job Change Quest get stuck after first attemp.
2018-11-13Remove type argument from buildin_getnpcid.EyesOfAHawk12-83/+83
2018-07-28remove specialeffect on first login from the novice academy scriptAsheraf1-1/+0
this effect is officialy given thought the achievements system on first login.
2018-07-24update scripts to use new questinfo formatAsheraf2-16/+48
2018-07-12Fix date part2Unknown3-3/+3
2018-06-05Update instance scripts to follow official behaviourAsheraf11-168/+148
2018-05-05Fix some wrong messages in clans.txtJedzkie1-3/+3
2018-02-06Merge pull request #1718 from Murilo-BiO/clan_systemHaru2-0/+583
Implementation of Official Clan System
2018-01-28Merge pull request #1881 from AtlantisRO/Standardization-MalangdoCulvert.txtAsheraf1-612/+675
Applied standardization to MalangdoCulvert script
2018-01-28Merge pull request #1880 from AtlantisRO/Standardization-HazyForest.txtAsheraf1-572/+627
Applied standardization to HazyForest script
2018-01-28Merge pull request #1878 from AtlantisRO/Standardization-EclageInterior.txtAsheraf1-367/+371
Applied standardization to EclageInterior script
2018-01-28Merge pull request #1877 from AtlantisRO/Standardization-BuwayaCave.txtAsheraf1-230/+230
Applied standardization to BuwayaCave script
2018-01-28Merge pull request #1874 from AtlantisRO/Standardization-BakonawaLake.txtAsheraf1-302/+350
Applied standardization to BakonawaLake script
2018-01-25Implementation of Official Clan SystemMurilo Pereti Tavares2-0/+583
All official features work including the autokick for inactive members And the system is completely customizable.
2017-12-10Merge pull request #1883 from AtlantisRO/Standardization-OldGlastHeim.txtHaru1-699/+748
Applied standardization to OldGlastHeim script
2017-11-12Add type constants for the getiteminfo()/setiteminfo() buildinsHaru4-22/+30
Replacements are as follows: 0 => ITEMINFO_BUYPRICE 1 => ITEMINFO_SELLPRICE 2 => ITEMINFO_TYPE 3 => ITEMINFO_MAXCHANCE 4 => ITEMINFO_SEX 5 => ITEMINFO_LOC 6 => ITEMINFO_WEIGHT 7 => ITEMINFO_ATK 8 => ITEMINFO_DEF 9 => ITEMINFO_RANGE 10 => ITEMINFO_SLOTS 11 (Subtype, for weapons and ammunitions) => ITEMINFO_SUBTYPE 11 (ViewSprite, for other item types) => ITEMINFO_VIEWSPRITE (NOT AVAILABLE YET) 12 => ITEMINFO_ELV 13 => ITEMINFO_WLV 14 => ITEMINFO_VIEWID 15 => ITEMINFO_MATK (NOT AVAILABLE YET - this was documented but never implemented) Calls to getiteminfo() and setiteminfo() have been replaced with the newly introduced constants. Other constants (such as W_ weapon subtypes) in related code have been replaced as well, to improve code readability. This fixes an issue in the Eden Tutorial script "Tutorial Goal", where ITEMINFO_ATK was accidentally used instead of ITEMINFO_WEIGHT. Note: calls to getiteminfo or setiteminfo with numeric type arguments in third party scripts must be replaced with the respective constants. The use of numeric literals is no longer recommended, and those values may change in the future without notice. See the getiteminfo documentation for details. Signed-off-by: Haru <haru@dotalux.com>
2017-10-29Changes to npc\instances\re\BuwayaCave.txt script to fit Hercules' Standards.AtlantisRO1-230/+230
- Added mesf and sprintf commands where needed. - Added _$() and _() macros where needed. - Added curly brackets, paragraph breaks, parentheses and spaces to fit Hercules' Standards. - Changed numeric arguments for constants. Signed-off-by: Ragno <ragno@atlantis-ro.net>
2017-10-29Changes to npc\instances\re\EclageInterior.txt script to fit Hercules' ↵AtlantisRO1-367/+371
Standards. - Added mesf and sprintf commands where needed. - Added _$() and _() macros where needed. - Added curly brackets, paragraph breaks, parentheses and spaces to fit Hercules' Standards. - Changed numeric arguments for constants. Signed-off-by: Ragno <ragno@atlantis-ro.net>
2017-10-29Merge pull request #1884 from AtlantisRO/Standardization-saras_memory.txtAsheraf1-515/+514
Applied standardization to saras_memory script
2017-10-29Merge pull request #1879 from AtlantisRO/Standardization-ghost_palace.txtAsheraf1-194/+213
Applied standardization to ghost_palace script
2017-10-26Changes to npc\instances\re\saras_memory.txt script to fit Hercules' Standards.AtlantisRO1-515/+514
- Added mesf and sprintf commands where needed. - Added _$() and _() macros where needed. - Added curly brackets, paragraph breaks, parentheses and spaces to fit Hercules' Standards. - Changed numeric arguments for constants. Signed-off-by: Ragno <ragno@atlantis-ro.net>
2017-10-22Changes to npc\instances\re\OldGlastHeim.txt script to fit Hercules' Standards.AtlantisRO1-699/+748
- Added mesf and sprintf commands where needed. - Added _$() and _() macros where needed. - Added curly brackets, paragraph breaks, parentheses and spaces to fit Hercules' Standards. - Changed numeric arguments for constants. Signed-off-by: Ragno <ragno@atlantis-ro.net>
2017-10-22Changes to npc\instances\re\octopus_cave.txt script to fit Hercules' Standards.AtlantisRO1-142/+148
- Added mesf and sprintf commands where needed. - Added _$() and _() macros where needed. - Added curly brackets, paragraph breaks, parentheses and spaces to fit Hercules' Standards. - Changed numeric arguments for constants. Signed-off-by: Ragno <ragno@atlantis-ro.net>
2017-10-22Changes to npc\instances\re\MalangdoCulvert.txt script to fit Hercules' ↵AtlantisRO1-612/+675
Standards. - Added mesf and sprintf commands where needed. - Added _$() and _() macros where needed. - Added curly brackets, paragraph breaks, parentheses and spaces to fit Hercules' Standards. - Changed numeric arguments for constants. Signed-off-by: Ragno <ragno@atlantis-ro.net>
2017-10-22Changes to npc\instances\re\HazyForest.txt script to fit Hercules' Standards.AtlantisRO1-572/+627
- Added mesf and sprintf commands where needed. - Added _$() and _() macros where needed. - Added curly brackets, paragraph breaks, parentheses and spaces to fit Hercules' Standards. - Changed numeric arguments for constants. Signed-off-by: Ragno <ragno@atlantis-ro.net>
2017-10-22Changes to npc\instances\re\ghost_palace.txt script to fit Hercules' Standards.AtlantisRO1-194/+213
- Added mesf and sprintf commands where needed. - Added _$() and _() macros where needed. - Added curly brackets, paragraph breaks, parentheses and spaces to fit Hercules' Standards. - Changed numeric arguments for constants. Signed-off-by: Ragno <ragno@atlantis-ro.net>
2017-10-22Changes to npc\instances\re\BakonawaLake.txt script to fit Hercules' Standards.AtlantisRO1-302/+350
- Added mesf and sprintf commands where needed. - Added _$() and _() macros where needed. - Added curly brackets, paragraph breaks, parentheses and spaces to fit Hercules' Standards. - Changed numeric arguments for constants. Signed-off-by: Ragno <ragno@atlantis-ro.net>
2017-09-12Fix several typos and grammar mistakesHaru4-7/+7
Signed-off-by: Haru <haru@dotalux.com>
2017-06-03convert specialeffect calls with strings to use GIDgumi12-83/+83
2017-06-03remove specialeffect2 from npcsgumi38-199/+199
2017-05-22Update npc/<re/>merchants/advanced_refiner.txt.smokexyz1-2/+2
2017-05-21Updated npc/re/merchants/shadow_refiner.txt to version 2.0Smokexyz1-78/+89
2017-04-23Merge pull request #1548 from AtlantisRO/goto_removalRidley6-580/+582
Removed the usage of deprecated command goto from npc scripts (except custom folder)
2017-03-28Fixes #1655 - Fix to Sura Job Change Quest get stuck after first attemp.AtlantisRO1-3/+3
Signed-off-by: Ragno <ragno@atlantis-ro.net>
2017-03-14Merge pull request #1627 from AtlantisRO/guild_investmentRidley3-175/+379
Fixes #1625. Fixes checks on Guild Dungeon Investment and separates Guild Dungeon mapflags for pre-renewal and renewal
2017-03-13Fixes #1625. Fixes checks on Guild Dungeon Investment and separates Guild ↵AtlantisRO3-175/+379
Dungeon mapflags for pre-renwal and renewal. Signed-off-by: Ragno <ragno@atlantis-ro.net>
2017-03-13Fixes #1626. Adds missed mapflags on instances.AtlantisRO11-19/+35
- Mapflags are moved into map_zone_db, this will make easier and more intuitive in the future to add mapflags to new instances and avoid miss any mapflag. - Zone mapflags for renewal instances are moved into renewal folder. Signed-off-by: Ragno <ragno@atlantis-ro.net>
2017-03-08Removed the usage of deprecated command goto from npc scripts (except custom ↵AtlantisRO6-580/+582
folder). Signed-off-by: Ragno <ragno@atlantis-ro.net>
2017-03-04Fix issue #1524Emistry Haoyan1-1/+1
- double chance should only available for Enrich ores.
2017-01-23Merge pull request #1493 from Emistry/script_eden_questRidley1-94/+64
Update Eden Quest script
2017-01-02Double NPC Name in Royal Guard job change quest (#1538)Ridley1-1/+0
2016-11-20Replaced some unsupported symbols in AegisNames (step 2)Haru12-38/+38
This removes the remaining unsupported symbols (despite they being official names) in AegisNames: The apostrophe (`'`) sign is suppressed. The full replacement rules (cumulative with the step 1 commit) are thus: - Any apostrophe is suppressed. - Any non-`[A-Za-z0-9_]` character is replaced with an underscore (`_`). - If the replaced symbol is at a word boundary (beginning or end of the string, or next to another underscore), it is suppressed instead. - If the replacement causes an AegisName conflict, underscores are appended appropriately. Signed-off-by: Haru <haru@dotalux.com>
2016-11-20Propageted the AegisName fix to scripts and pre-re databaseHaru8-92/+93
This commit just propagates the AegisName changes to the pre-re database and to the (re) scripts. Two issues are fixed as a side-effect: - The ghost_palace script was referring the non-existing constant(s): Thanatos_Two-Handed_Staff == (Thanatos_Two) - (Handed_Staff) == 0. Paired with the script engine's inability to differentiate between constants and player variables, that produced a very subtle issue. - The item RAG203 is sold by a NPC (Rebellion Weapon Vending). Due to a pair of swapped AegisName constants (RAG203 and RAG203_), the slotted version was sold by the NPC instead of hte non-slotted one (the issue was actually fixed in the previous commit, although the description of the fix is here - these two commits are only split for legibility purposes but they're to be considered indivisible). Signed-off-by: Haru <haru@dotalux.com>
2016-11-03Update Eden Quest scriptEmistry Haoyan1-94/+64
- Fix classes checking (https://github.com/HerculesWS/Hercules/issues/1173) - Update and remove redundant script
2016-10-16Merge pull request #1472 from Asheraf/getcharidIbrahem Hossam13-86/+86
Change *getcharid to use constants
2016-10-16Change *getcharid to use constantsAsheraf13-86/+86
2016-10-08Fixes wrong warp of izludeDastgir Pojee1-1/+6
2016-10-04Added support to Para_Team_Mark_ item in Eden Group.AtlantisRO14-30/+50