Skip to content

Commit

Permalink
Adjusted Nightmare Clock Tower warper to use scope variable instead o…
Browse files Browse the repository at this point in the history
…f temporary char variable
  • Loading branch information
Jittapan Pluemsumran committed Sep 9, 2016
1 parent 6fddd9c commit 8d60ed2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions npc/re/quests/quests_aldebaran.txt
Expand Up @@ -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;
Expand Down

0 comments on commit 8d60ed2

Please sign in to comment.