diff options
author | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-06-19 15:14:43 +0000 |
---|---|---|
committer | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-06-19 15:14:43 +0000 |
commit | 528111f7824da9b9f1914f875968eb59e150c06e (patch) | |
tree | f3d5fee64b4bc6da13b20d4677b299a08d772b0e /npc/jobs | |
parent | c1d7d16b0e4010b27591f37ee93a1ca8d1137ecb (diff) | |
download | hercules-528111f7824da9b9f1914f875968eb59e150c06e.tar.gz hercules-528111f7824da9b9f1914f875968eb59e150c06e.tar.bz2 hercules-528111f7824da9b9f1914f875968eb59e150c06e.tar.xz hercules-528111f7824da9b9f1914f875968eb59e150c06e.zip |
- Fixed a Assassin Quest question having all correct answers. (bugreport:3260)
- Fixed lots of random typos, thanks to BloodWist for pointing them out.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13898 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/jobs')
-rw-r--r-- | npc/jobs/2-1/assassin.txt | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/npc/jobs/2-1/assassin.txt b/npc/jobs/2-1/assassin.txt index c0a793105..ff9e9bf14 100644 --- a/npc/jobs/2-1/assassin.txt +++ b/npc/jobs/2-1/assassin.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= kobra_k88 //===== Current Version: ===================================== -//= 3.1b +//= 3.2 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -44,6 +44,7 @@ //= 3.1 Fixed problem with waiting room. (bugreport:1099) [L0ne_W0lf] //= 3.1a Follow up fix. Forgot to replace a label. [L0ne_W0lf] //= 3.1b Fixed waiting room not enabled in some situations [Zephyrus] +//= 3.2 Fixed a question having all correct answers. [brianluau] //============================================================ in_moc_16,19,33,1 script Guildsman#asn 55,{ @@ -931,8 +932,8 @@ L_AskQuestions: mes "[The Anonymous One]"; mes "6. Choose the correct specialty of the Assassin class."; next; - select("Excellent singing talent:Excellent reading talent:Excellent dancing talent:Excellent dodge ability"); - set .@assassin_t,.@assassin_t+10; + if (select("Excellent singing talent:Excellent reading talent:Excellent dancing talent:Excellent dodge ability") == 4) + set .@assassin_t,.@assassin_t+10; mes "[The Anonymous One]"; mes "7. Choose the maximum AGI bonus an Assassin can get at job level 50."; next; @@ -948,8 +949,6 @@ L_AskQuestions: next; switch(select("Orange Gooey Mushroom:Red Gooey Mushroom:Orange Net Mushroom:Orange Hair Mushroom")) { case 1: - set .@assassin_t,.@assassin_t+10; - break; case 3: set .@assassin_t,.@assassin_t+10; break; @@ -2147,7 +2146,7 @@ OnTouch: end; } } - + in_moc_16,186,81,1 script Master Assist 55,1,1,{ mes "[Assistent Gayle Maroubitz]"; mes "Sorry, but I'm not in charge of job changes. Go to the Guildmaster, as he has told you."; |