diff options
author | Inkfish <Inkfish@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-11-18 15:39:24 +0000 |
---|---|---|
committer | Inkfish <Inkfish@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-11-18 15:39:24 +0000 |
commit | 620ea0643c3bcbfed5dd7c84e8d65fc8941997a7 (patch) | |
tree | 5d9639e34bb5febaef0ed77bf03214e1cc87d1f0 /npc/quests | |
parent | 01e5afaa9a948bcacdfbfc75b3bd11a31f11b5c4 (diff) | |
download | hercules-620ea0643c3bcbfed5dd7c84e8d65fc8941997a7.tar.gz hercules-620ea0643c3bcbfed5dd7c84e8d65fc8941997a7.tar.bz2 hercules-620ea0643c3bcbfed5dd7c84e8d65fc8941997a7.tar.xz hercules-620ea0643c3bcbfed5dd7c84e8d65fc8941997a7.zip |
Random fixes to some script typos
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14153 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests')
-rw-r--r-- | npc/quests/quests_alberta.txt | 2 | ||||
-rw-r--r-- | npc/quests/quests_amatsu.txt | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/npc/quests/quests_alberta.txt b/npc/quests/quests_alberta.txt index da36af092..fecb43dc1 100644 --- a/npc/quests/quests_alberta.txt +++ b/npc/quests/quests_alberta.txt @@ -2219,7 +2219,7 @@ tur_dun03,104,171,4 script Knight#tur3 105,{ mes "[Squall]"; mes "Am I the only one left? Where are all my comrades?! I... I'm about to go crazy!"; next; - switch(select("Maybe they ran away?:What happened?")) { + if(select("Maybe they ran away?:What happened?")) { mes "[Squall]"; mes "No, we would never run away from the face of danger."; next; diff --git a/npc/quests/quests_amatsu.txt b/npc/quests/quests_amatsu.txt index 251a96d86..b632b25e6 100644 --- a/npc/quests/quests_amatsu.txt +++ b/npc/quests/quests_amatsu.txt @@ -666,7 +666,7 @@ OnInit: OnEnable: enablenpc "Am Mut#ama"; - set .MyMobs,.MyMobs-1; + set .MyMobs,3; monster "ama_test",35,102,"Am Mut",1301,1,"Am Mut#ama::OnMyMobDead"; monster "ama_test",40,91,"Am Mut",1301,1,"Am Mut#ama::OnMyMobDead"; monster "ama_test",56,108,"Am Mut",1301,1,"Am Mut#ama::OnMyMobDead"; @@ -706,8 +706,7 @@ OnInit: OnTouch: mes "[Coach]"; mes "( Clap- Clap- Clap- )"; - close; - end; + next; mes "[Coach]"; mes "Hohoho~ You are really something."; mes "You've got the moves, kiddo."; |