summaryrefslogtreecommitdiff
path: root/npc
AgeCommit message (Collapse)AuthorFilesLines
2018-05-07Merge pull request #1998 from Asheraf/private_airshipHaru4-0/+504
Implementation of Private AirShip
2018-05-05Fix some wrong messages in clans.txtJedzkie1-3/+3
2018-05-04Implementation of Private AirShipAsheraf4-0/+504
2018-04-08Added noteleport mapflag for pay_archeJedzkie1-0/+1
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.
2018-01-14Merge pull request #1871 from AtlantisRO/Standardization-NydhoggsNest.txtHaru1-1675/+1691
Applied standardization to NydhoggsNest script
2017-12-10Merge pull request #1883 from AtlantisRO/Standardization-OldGlastHeim.txtHaru1-699/+748
Applied standardization to OldGlastHeim script
2017-11-18Merge pull request #1902 from MishimaHaruna/getiteminfo-fixHaru12-95/+169
getiteminfo() / setiteminfo() fixes
2017-11-18Merge pull request #1862 from AtlantisRO/standardizationHaru1-1168/+1092
Applied standardization to EndlessTower script
2017-11-12Rewrite F_GetArmorType to reflect the fact that ITEMINFO_LOC returns a bitmaskHaru1-27/+72
The function now handles multi-slot headgears and other uncommon cases better. Signed-off-by: Haru <haru@dotalux.com>
2017-11-12Add F_GetAmmoType global function, counterpart to F_GetWeaponType for ↵Haru1-0/+25
ammunitions Both functions have now been updated to only check the subtype if the item type is correct (IT_AMMO for F_GetAmmoType, IT_WEAPON for F_GetWeaponType) Signed-off-by: Haru <haru@dotalux.com>
2017-11-12Add type constants for the getiteminfo()/setiteminfo() buildinsHaru12-93/+97
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-11-12Merge pull request #1836 from Emistry/script_F_GetArmorTypeHaru1-3/+16
Update F_GetArmorType()
2017-11-05Merge pull request #1873 from AtlantisRO/Standardization-SealedShrine.txtAsheraf1-948/+931
Applied standardization to SealedShrine script
2017-11-05Merge pull request #1872 from AtlantisRO/Standardization-OrcsMemory.txtAsheraf1-377/+349
Applied standardization to OrcsMemory script
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-10-22Changes to npc\instances\SealedShrine.txt script to fit Hercules' Standards.AtlantisRO1-948/+931
- 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\OrcsMemory.txt script to fit Hercules' Standards.AtlantisRO1-377/+349
- 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\NydhoggsNest.txt script to fit Hercules' Standards.AtlantisRO1-1675/+1691
- 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\EndlessTower.txt script to fit Hercules' Standards.AtlantisRO1-1067/+1067
- 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-22Minor improvements to npc\instances\EndlessTower.txt.AtlantisRO1-105/+29
- Added var .@str$ in a select() menu for HULD compatibility. - Sincronized (2) messages to fit official behaviour. - Changed function F_Tower_Warp to use arrays instead of a large switch. Signed-off-by: Ragno <ragno@atlantis-ro.net>
2017-10-18Open Storage for DoramMiniack1-5/+14
Change in functions_kafras to show a different text between normal characters and Doram characters. Credits to RagEmu.
2017-09-12Fix several typos and grammar mistakesHaru31-259/+249
Signed-off-by: Haru <haru@dotalux.com>
2017-09-03Update F_GetArmorType()Emistry Haoyan1-3/+16
- update missing equip types.
2017-09-03Fix errors in the Diamond seller script that were making the NPC check for ↵Mathy1-6/+5
weight incorrectly.
2017-08-07Update Airship Quests (#1614)Asheraf1-2480/+2947
* Update airship quest * airship quest coding style fixes
2017-07-11Add tests for getdatatypeHaru1-2/+21
Signed-off-by: Haru <haru@dotalux.com>
2017-06-03add missing constants to specialeffect callsgumi14-27/+27
2017-06-03convert specialeffect calls with strings to use GIDgumi28-254/+254
2017-06-03remove misceffect from npcsgumi11-27/+27
2017-06-03remove specialeffect2 from npcsgumi112-619/+619
2017-06-03Merge pull request #1684 from Smokexyz/refine-updateHaru3-82/+93
Enriched refine chance correction
2017-06-03Add tests for the exponentiation operatorHaru1-0/+13
Signed-off-by: Haru <haru@dotalux.com>
2017-05-28remove the pow buildin from existing scriptsgumi2-6/+6