diff options
-rw-r--r-- | npc/kafras/kafras_alde.txt | 1 | ||||
-rw-r--r-- | npc/quests/quests_moscovia.txt | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/npc/kafras/kafras_alde.txt b/npc/kafras/kafras_alde.txt index 82fd61044..de30234ea 100644 --- a/npc/kafras/kafras_alde.txt +++ b/npc/kafras/kafras_alde.txt @@ -61,6 +61,7 @@ aldeba_in,96,181,4 script Kafra Service 113,{ mes "seems that you don't"; mes "have the 20 zeny to pay"; mes "the Storage access fee..."; + close; } mes "[Kafra Leilah]"; mes "Although this facility is"; diff --git a/npc/quests/quests_moscovia.txt b/npc/quests/quests_moscovia.txt index 596548252..80401a779 100644 --- a/npc/quests/quests_moscovia.txt +++ b/npc/quests/quests_moscovia.txt @@ -14642,7 +14642,7 @@ mosk_dun02,48,214,5 script Baba Yaga#rus32 970,{ next; while(1) { input .@input; - if (.@input$ == 0) { + if (.@input == 0) { mes "[Baba Yaga]"; mes "You don't want it?"; next; @@ -14650,7 +14650,7 @@ mosk_dun02,48,214,5 script Baba Yaga#rus32 970,{ mes "I don't understand you. What do you want? Kehehehehe."; close; } - else if (.@input$ > 100) { + else if (.@input > 100) { mes "[Baba Yaga]"; mes "I said no more then 100 at a time. Kehehehehe."; next; |