From 8d60ed2205b34774eae0b4ae7e955d6c67636607 Mon Sep 17 00:00:00 2001 From: Jittapan Pluemsumran Date: Fri, 9 Sep 2016 08:46:31 +0700 Subject: [PATCH] Adjusted Nightmare Clock Tower warper to use scope variable instead of temporary char variable --- npc/re/quests/quests_aldebaran.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/npc/re/quests/quests_aldebaran.txt b/npc/re/quests/quests_aldebaran.txt index 4d4b8297c5e..baa609ff2f7 100644 --- a/npc/re/quests/quests_aldebaran.txt +++ b/npc/re/quests/quests_aldebaran.txt @@ -23,12 +23,13 @@ c_tower1,232,222,5 script Belljamin Button#ct 968,{ mes "[Belljamin Button]"; mes "I'm begging you not to ask more about it. It might put your life in danger."; next; - switch( select( "Don't ask:Go to 2nd floor of warped tower:Go to 3rd floor of warped tower" ) ){ + .@menu = select("Don't ask:Go to 2nd floor of warped tower:Go to 3rd floor of warped tower"); + switch(.@menu){ case 1: break; case 2: case 3: - if( @menu == 2 ){ + if( .@menu == 2 ){ .@map$ = "c_tower2_"; .@x = 268; .@y = 26;