summaryrefslogtreecommitdiff
path: root/npc/quests
AgeCommit message (Collapse)AuthorFilesLines
2015-09-26Merge pull request #692 from KirieZ/tu_merchant-fixHaruna1-41/+22
Fix quests/first_class/tu_merchant.txt
2015-09-26Merge pull request #678 from KirieZ/tu_sword-fixHaruna1-23/+25
Fix quest log linking in first_class/tu_sword.txt
2015-09-25Fixed a bug in Lv4 Weapon Quest dialogAlexander Kozlov1-3/+3
Dialog with rolled rock/paper/scissors didn't appear because of variable typo. An ancient one. Discovered by Aafemt.
2015-09-25More aggressive whitespace cleanup. Follow up to 51329e6Haru4-16/+6
Signed-off-by: Haru <haru@dotalux.com>
2015-09-05Moved novice_skills quests to pre-re.Taylor Locke1-479/+0
2015-09-03Fix quest log linking in quests/first_class/tu_merchant.txt and wrong check ↵KirieZ1-41/+22
that was blocking players who had level 10 increase weight limit to continue the quest
2015-08-28Fix tu_sword.txt quest log linking. issue #008561 (old tracker)KirieZ1-23/+25
2015-08-17Corrected a warp destination typo in The Sign questHaru1-1/+1
Signed-off-by: Haru <haru@dotalux.com>
2015-08-09Minor script cleanup.Haru5-6/+6
- Replaced leftover sprite IDs with constants - Corrected some NPC facing directions (in modulo 8)
2015-08-03Fixed a bug in Lv4 Weapon QuestAlexander Kozlov1-2/+2
Always results "0" in dialog. An ancient one. Discovered by Aafemt.
2015-07-05Removed blank text contents in NPC scripts.Emistry4-78/+78
http://herc.ws/board/tracker/issue-8677-lots-of-blank-things-in-scripts/
2015-06-25Fix QuestID's for LostChild and Muff's LoanDastgir2-22/+21
Signed-off-by: Haru <haru@dotalux.com>
2015-06-25Added Ninja ShopDastgir1-2/+2
Signed-off-by: Haru <haru@dotalux.com>
2015-06-25Removed some extra semi-colonDastgir4-7/+7
Signed-off-by: Haru <haru@dotalux.com>
2015-06-25Removed Blank MessagesDastgir16-130/+130
Signed-off-by: Haru <haru@dotalux.com>
2015-06-25Added Renewal quest items to Ayothaya Dungeon Entrance quest.Dastgir1-47/+53
Reference: rathena/rathena@1d64b8f9e1d95f40778a625c10735a10d9e6f5db (part) Signed-off-by: Haru <haru@dotalux.com>
2015-06-25Fixed an issue in 'Message Delivery' quest blocking level 100+ characters.Dastgir1-1/+1
Reference: rathena/rathena@1d64b8f9e1d95f40778a625c10735a10d9e6f5db (part) Signed-off-by: Haru <haru@dotalux.com>
2015-05-14Fixed some invalid questprogress conditionsHaru1-1/+1
Special thanks to MordekaiserGod for pointing out the issue. Signed-off-by: Haru <haru@dotalux.com>
2015-05-08Replaced checkre() calls with constantsHaru29-176/+175
Signed-off-by: Haru <haru@dotalux.com>
2015-04-21Fixed a bug in Einbrech "Oridecon/Mineral Quest"michaelforge1-1/+1
Because of some very old typo, this quest could never reach Minerals exchange dialog.
2015-04-19Added Kagero / Oboro Quest.Taylor Locke1-2/+3
2015-04-16Minor Typo FixDastgir1-1/+1
2015-03-18Fix delitem bug in Ep13.1 quest. Thanks to milky-milk for reportingDastgir1-18/+2
2015-03-05Merge pull request #454 from seifert10/patch-2shennetsind1-3/+3
Update lvl4_weapon_quest.txt
2015-01-29Merge pull request #455 from seifert10/patch-1Streusel1-1/+1
Update lvl4_weapon_quest.txt
2015-01-29Implemented 2010 Headgear Quests. Also corrected ID of Green Maiden in ↵Dastgir1-0/+1113
Endless Tower, and Bascojin Slave.
2015-01-25Update lvl4_weapon_quest.txtseifert101-3/+3
you can change the "npchand == 1" to "npchand1 == 1" or simply change the "npchand1 = random(1,3)" to "npchand = random(1,3)"
2015-01-25Update lvl4_weapon_quest.txtseifert101-1/+1
if (.@shobu > 1) { mes "[Kayron]"; mes "Let's see..."; mes "You won " + shobu + " times."; mes "You must be really"; mes "Without a doubt, you've"; mes "got some pretty good luck~"; next; mes "[Kayron]"; mes "Alright, I'll keep my end of the bargain. Give me the materials"; mes "and some time to finish preparing. I'll talk to you later, okay?"; close; } mes "You won " + shobu + " times."; should be: mes "You won " + .@shobu + " times.";
2014-11-02Replaced 'set' with direct assignment where applicable (quests folder)Haru43-4702/+4622
Signed-off-by: Haru <haru@dotalux.com>
2014-11-02Replaced 'set' with direct assignment where applicable (quests subfolders)Haru35-995/+985
Signed-off-by: Haru <haru@dotalux.com>
2014-10-30Deprecated checkriding and setriding commandsHaru1-2/+2
Replaced their use in scripts with checkmount and setmount, respectively. Signed-off-by: Haru <haru@dotalux.com>
2014-10-28Removed use of 'checkquest' from scripts (common folder)Haru9-234/+124
Signed-off-by: Haru <haru@dotalux.com>
2014-10-27Removed use of 'menu' from official (non-custom) scriptsHaru1-187/+184
- Some scripts were partly refactored/rewritten to use a more modern coding style (and to fix some issues) - Note: the 'menu' command will be deprecated soon in favor of 'select' and 'prompt'. Signed-off-by: Haru <haru@dotalux.com>
2014-10-06Fixed Bug 8252dastgir2-3/+3
* fixing some typo on script
2014-08-06Fixed located of Mobile HP Recovery quest. Fixed wrong sprite on Mercenary ↵Taylor Locke1-2/+3
Merchant NPC in Izlude.
2014-07-28Merge pull request #311 from vthibault/heart-fragment-quest-fixKisuka1-6/+7
Fix Heart Fragment quest.
2014-07-28Fix Heart Fragment quest.Vincent Thibault1-6/+7
- The Security NPC should print **your** code in the dialog, not the number you have to guess ! - Typo error ```.@ball``` instead of ```@ball```
2014-05-13Removed trailing whitespace (scripts)Haru49-195/+186
Signed-off-by: Haru <haru@dotalux.com>
2014-05-13Fixed some charset issuesHaru3-3/+9
- Fixed files with mixed character set or invalid CP949 characters. - Uncommented '#music' script in the_sign_quest.txt (now the soundeffect filename should be fixed). - Added a note to the header of CP949 files not to read or save them as UTF8, since it'd break their encoding. It should be safe enough to read them as EUC-KR if your text editor doesn't offer CP949 as an option. - Added FIXME notes about untranslated strings in assassin_skills.txt and WolfchevLaboratory.txt. Signed-off-by: Haru <haru@dotalux.com>
2014-05-13Fixed several files with a missing EOL at EOFHaru1-1/+1
- All text files should end with an EOL. Period. - See http://robots.thoughtbot.com/no-newline-at-end-of-file for info on how to configure the most common text editors to do it automatically for you. Signed-off-by: Haru <haru@dotalux.com>
2013-12-21HPM Hooks UpdateHercules.ws1-14027/+14027
Signed-off-by: HerculesWSAPI <Hercules@efficiently.awesome>
2013-12-20Update to aegis info the number of mob that spawn in 13.1 quest to get the ↵Michieru1-14027/+14027
Some_Of_Report item. Update malaya quest, added item Lost_Belongings to Tiyanak mob & fix wrong item id and change headers to Masao original.
2013-12-14Corrected a minor error (wrong constant name) in the bard quest.Haru1-1/+1
Signed-off-by: Haru <haru@dotalux.com>
2013-12-07Fixed several incorrect script labels and eventsHaru2-2/+2
Signed-off-by: Haru <haru@dotalux.com>
2013-11-30Re-commit of 4faa0ec9df7067cee3eb1c1953fccc6c2f842179Taylor Locke43-188/+188
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-29Fixed a missing/incorrect check in the Moscovia Whale questHaru1-6/+6
- Most of the checks for the GUSLI accessory were completely ineffective, and could be bypassed by wearing any accessory. - Replaced numeric item ID with the item DB constant. Signed-off-by: Haru <haru@dotalux.com>
2013-11-28Revert "Cleaned up Zeny manipulation in scripts."Haru43-198/+198
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 Locke43-198/+198
2013-11-11Follow-up to 0b7b3796ec987cbb1c263722b841cfa5795aa6d3Haru1-20/+20
- Replaced some leftover numeric IDs Signed-off-by: Haru <haru@dotalux.com>
2013-11-10Follow-up to 857bdc4f98be6cd1e185a24565d6b6b54752b9b4Haru1-12/+12
- Consolidated case in remaining variables, labels, constants. Signed-off-by: Haru <haru@dotalux.com>