diff options
author | Haru <haru@dotalux.com> | 2016-02-07 01:23:46 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-02-07 01:23:46 +0100 |
commit | 1fd628e7be9e6de4ea48394be09ae10e912d8f3d (patch) | |
tree | 4e5b42a444f83976c33f22540d3aa46a8ceb7001 /npc/cities/niflheim.txt | |
parent | e68aa1f74d315f7bf24d7c8829002d0031b23539 (diff) | |
parent | 0462bc828e59ce99a48303a2f6190d3a01ce9465 (diff) | |
download | hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.tar.gz hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.tar.bz2 hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.tar.xz hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.zip |
Merge pull request #1110 from dastgir/22-ScriptClean-Phase2
Script CleanUp Phase 2
Diffstat (limited to 'npc/cities/niflheim.txt')
-rw-r--r-- | npc/cities/niflheim.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/cities/niflheim.txt b/npc/cities/niflheim.txt index 5224655c2..6b35ae2e7 100644 --- a/npc/cities/niflheim.txt +++ b/npc/cities/niflheim.txt @@ -130,7 +130,7 @@ nif_in,156,93,5 script Child#niflheim 4_F_NFLOSTGIRL,{ mes "Mommy, have you seen my mommy?"; mes "I wanna go home...*Sob*"; next; - switch(select("About the witch:About the curse:Cancel.")) { + switch(select("About the witch", "About the curse", "Cancel.")) { case 1: mes "[Alakina Ann]"; mes "Witch...? I've never seen a witch, but I've read about them in books. I'm not sure if they exist or not, but it would be so horrifying if they did..."; @@ -206,7 +206,7 @@ niflheim,350,258,1 script Cursed Spirit#nif 4_NFWISP,{ mes "....Whatever you do..."; mes "....Do NOT touch my books..."; next; - switch(select("Touch the first book.:Touch the second book.:Touch the third book.:Okay, I am leaving.")) { + switch(select("Touch the first book.", "Touch the second book.", "Touch the third book.", "Okay, I am leaving.")) { case 1: monster "niflheim",349,259,"Rideword",1478,1,"Cursed Spirit#nif::OnMyMobDead"; mes "[Ashe Bruce]"; @@ -248,13 +248,13 @@ niflheim,350,258,1 script Cursed Spirit#nif 4_NFWISP,{ mes "lost to the ages~!"; emotion e_gg; next; - if (select("Clover:Klaatu:Klaytos") == 2) { + if (select("Clover", "Klaatu", "Klaytos") == 2) { ++.@spell; } - if (select("Verit:Veritas:Verata") == 3) { + if (select("Verit", "Veritas", "Verata") == 3) { ++.@spell; } - if (select("Necktie:Necklace:Nero:^FFFFFFNictu!!!^000000") == 4) { + if (select("Necktie", "Necklace", "Nero", "^FFFFFFNictu!!!^000000") == 4) { ++.@spell; } if (.@spell == 3) { |