summaryrefslogtreecommitdiff
path: root/npc/quests/quests_lighthalzen.txt
AgeCommit message (Collapse)AuthorFilesLines
2019-03-11Remove conf dir.Andrei Karas1-12056/+0
2017-09-12Fix several typos and grammar mistakesHaru1-126/+122
Signed-off-by: Haru <haru@dotalux.com>
2017-06-03remove specialeffect2 from npcsgumi1-9/+9
2017-04-23Merge pull request #1548 from AtlantisRO/goto_removalRidley1-285/+288
Removed the usage of deprecated command goto from npc scripts (except custom folder)
2017-03-08Removed the usage of deprecated command goto from npc scripts (except custom ↵AtlantisRO1-285/+288
folder). Signed-off-by: Ragno <ragno@atlantis-ro.net>
2017-02-11remove useless check for questprogressAsheraf1-1/+1
2016-11-20Replaced some unsupported symbols in AegisNames (step 2)Haru1-5/+5
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-09-02change *strcharinfo to use constantsAsheraf1-126/+126
2016-02-29Replaced the SEX_FEMALE/SEX_MALE constants to scripts, where appropriateEmistry1-13/+19
2016-01-17Script Standardization: changed select format in quests folderDastgir1-60/+60
2015-12-31Replaced leftover -1 view IDs with FAKE_NPCHaru1-26/+26
Signed-off-by: Haru <haru@dotalux.com>
2015-12-31Replace -1,{ with FAKE_NPC,{AnnieRuru1-4/+4
replace using Notepad++
2015-12-18ItemID to Constant: quests/woe FolderDastgir1-81/+81
2015-12-15Standardized header in scripts (part 9)Haru1-100/+50
- Now including GPL-compliant license/copyright info - Restored some missing copyrights - Quest scripts folders Signed-off-by: Haru <haru@dotalux.com>
2015-11-15Fixed too-generic constant names of gettime() typesHaru1-4/+4
- 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-27Replaced parameter type with constant.Emistry1-3/+3
constant for gettime( <type> ) constant for Weekday and Month.
2015-09-25More aggressive whitespace cleanup. Follow up to 51329e6Haru1-3/+0
Signed-off-by: Haru <haru@dotalux.com>
2015-08-09Minor script cleanup.Haru1-1/+1
- Replaced leftover sprite IDs with constants - Corrected some NPC facing directions (in modulo 8)
2015-05-08Replaced checkre() calls with constantsHaru1-8/+8
Signed-off-by: Haru <haru@dotalux.com>
2014-11-02Replaced 'set' with direct assignment where applicable (quests folder)Haru1-234/+230
Signed-off-by: Haru <haru@dotalux.com>
2014-10-28Removed use of 'checkquest' from scripts (common folder)Haru1-2/+2
Signed-off-by: Haru <haru@dotalux.com>
2013-11-30Re-commit of 4faa0ec9df7067cee3eb1c1953fccc6c2f842179Taylor Locke1-10/+10
Cleaned up Zeny manipulation in scripts. - It is now finally safe to re-commit. - Removed some unwanted parts of the original commit, that broke the character set in some scripts. [Haru] - Corrected spacing in some edited lines. [Haru]
2013-11-28Revert "Cleaned up Zeny manipulation in scripts."Haru1-10/+10
Reverted due to a serious regression. I'll commit this again once I fixed the issue in the script engine. Sorry for the inconvenience. This reverts commit 4faa0ec9df7067cee3eb1c1953fccc6c2f842179. Signed-off-by: Haru <haru@dotalux.com>
2013-11-25Cleaned up Zeny manipulation in scripts.Taylor Locke1-10/+10
2013-11-08Added support for monster spritename constantsHaru1-1/+1
- Follow-up to 124ab2a1cdb344f24170a4d91f7000ebabf39b40 - Replaced numeric IDs in NPC definitions and setnpcdisplay calls with the appropriate constants - Made possible thanks to Ind Signed-off-by: Haru <haru@dotalux.com>
2013-10-28Added ability to use constants instead of sprite IDs for NPCs. Converted all ↵Kisuka1-73/+73
npcs to use this.
2013-10-24Update to last rAthena npc.Michieru1-199/+488
Fix some typos change sc_bleeding to -> sc_blooding Updated RE EXP for quests_brasilis.txt
2013-08-26Added an integer overflow check on literal values in the script parserHaru1-4/+4
- When attempting to use a value greater than INT_MAX or smaller than INT_MIN (about +/- 2 billions), an error message will be shown and script execution will be aborted. - Corrected some scripts that were attempting to use such values. - Fixed some possible issues when using literal negative values in scripts. Thanks to Ind for his help on this issue (figuring it out and fixing it) Signed-off-by: Haru <haru@dotalux.com>
2013-02-03Updated more placeholders and fixed some spacing issues.Mysteries1-3/+1
2012-12-28* Added a point to 'npcskill' documentation.euphyy1-6/+7
* Added Malangdo Tool Dealer. * Fixed quest log sample, which never worked to begin with -- thanks clydelion! * Fixed potential error with clones in custom Hunting Missions script (bugreport:7055). * Follow-up r16990, forgot to commit the EXP fix. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@17055 54d463be-8e91-2dee-dedb-b68131a5f0ec
2012-09-01* Follow-up r16726, more standardization on docs.euphyy1-16/+10
* Replaced and added dividers in many script files with one standard divider. * Other misc. cleaning... git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16727 54d463be-8e91-2dee-dedb-b68131a5f0ec
2012-08-08Fixed a bunch of bugs and typos, and made some little optimizations in ↵daegaladh1-0/+8
various quests. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16604 54d463be-8e91-2dee-dedb-b68131a5f0ec
2012-08-01Full npc folder reorganization. (I hope I didn't break anything D:)daegaladh1-0/+11818
-Now common scripts goes to the main npc folder, and pre-re-only/re-only ones goes to their respective folders. -NPCs with practically the same script but little differences have been left in the main folder and uses the command checkre() for the differences. -For those NPCs with different coordinates but same script, the script has been left in the main folder but the NPCs splitted as duplicates. -All pre-renewal files has been reverted back to their pre-renewal behavior. TODO: -Correct pre-re quest rewards. -Check for pre-re/re differences in mapflags. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16545 54d463be-8e91-2dee-dedb-b68131a5f0ec
2012-07-08Okie ladies and gentleman if this commit breaks anything it's jman's and ↵shennetsind1-11818/+0
maki's fault, yes, blame them. Fixing pre-re / re npc support, moving /config/ folder to src root so other servers may also make use of the #define renewal dir and other stuff. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16382 54d463be-8e91-2dee-dedb-b68131a5f0ec
2012-01-30- Removed more trailing tabs.brianluau1-7/+7
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15527 54d463be-8e91-2dee-dedb-b68131a5f0ec
2012-01-30- Removed trailing tabs, and fixed some spacing.brianluau1-1/+1
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15524 54d463be-8e91-2dee-dedb-b68131a5f0ec
2011-12-24- Replaced all occurrences of "eAthena" to "rAthena" stringmercurial1231-2/+2
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15251 54d463be-8e91-2dee-dedb-b68131a5f0ec
2011-12-14- Added 'nopenalty' mapflag to mosk_ship. (bugreport:3109)brianluau1-2/+2
- Fixed some strange dialog in President Quest. (bugreport:1755) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15109 54d463be-8e91-2dee-dedb-b68131a5f0ec
2011-07-21Updated most active NPCs that give EXP to renewal standards.L0ne_W0lf1-11/+11
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/renewal@14920 54d463be-8e91-2dee-dedb-b68131a5f0ec
2011-07-10* Merged changes from trunk [14827:14894/trunk].ai4rei1-5/+5
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/renewal@14895 54d463be-8e91-2dee-dedb-b68131a5f0ec
2011-04-09* Merged changes from trunk [14742:14782/trunk].ai4rei1-1468/+1623
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/renewal@14783 54d463be-8e91-2dee-dedb-b68131a5f0ec
2011-03-09* Merged changes from trunk [14688:14739/trunk].Kisuka1-79/+84
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/renewal@14740 54d463be-8e91-2dee-dedb-b68131a5f0ec
2010-11-23* Added quest log support for the following quests.L0ne_W0lf1-128/+155
- Factory Quest, Murder Quest, Cursed Spirit Quest, Juno Remedy Quest, Airship Ticket Quest, How the Airship Works, Ice Necklace Quest, Siblings Quest, Thor Volcano Base Quest, Muff's Loan, Broken Diamond, and the Z-Gang Quest git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/renewal@14490 54d463be-8e91-2dee-dedb-b68131a5f0ec
2010-07-07* Official Lighthalzen Gangster Alert script.Gepard1-97/+72
* Fixed typo in Amatsu Dungeon Entrance Quest. * Removed duplicate nomemo mapflag entries. - added changelog entries for my previous commit git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14362 54d463be-8e91-2dee-dedb-b68131a5f0ec
2010-06-18- Fixed some emotions triggering on the wrong npc. (bugreport:4303)brianluau1-12/+4
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14346 54d463be-8e91-2dee-dedb-b68131a5f0ec
2008-11-29Bug Fixes:Kisuka1-9/+27
- Check if user has zeny. (bugreport:2498) - Fixed typo. (bugreport:2473) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13389 54d463be-8e91-2dee-dedb-b68131a5f0ec
2008-09-27* Continues replacing of specialeffect/2 numerics with constants.samuray221-11/+13
* Corrected an If to continue the President's Quest. (bugreport:2276) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13241 54d463be-8e91-2dee-dedb-b68131a5f0ec
2008-09-25Replacing specialeffect/2 numerics with constants in quests.L0ne_W0lf1-10/+11
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13237 54d463be-8e91-2dee-dedb-b68131a5f0ec
2008-09-21Corrected some issues with the lighthalzen biolab quest. (bugreport:1798)L0ne_W0lf1-68/+72
Reverted r13227. Biolabs quest no longer uses temp character variables. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13228 54d463be-8e91-2dee-dedb-b68131a5f0ec
2008-09-21* Deleted Unnecesary Next; in Hunter Job Quest. (bugreports:1665,2239,2179)samuray221-5/+9
* Fixed a bug with the Bio Lab Quest when you relog. (bugreport:1798) * Corrected some Issues with the Waiting Room in Hunter Job Quest. (bugreport:1890) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13227 54d463be-8e91-2dee-dedb-b68131a5f0ec