diff options
Diffstat (limited to 'npc/kafras/functions_kafras.txt')
-rw-r--r-- | npc/kafras/functions_kafras.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/npc/kafras/functions_kafras.txt b/npc/kafras/functions_kafras.txt index 4fc08fc0e..0a6dad7d8 100644 --- a/npc/kafras/functions_kafras.txt +++ b/npc/kafras/functions_kafras.txt @@ -402,10 +402,12 @@ function script F_KafTele { if (@wrpD$[@num] == "Al De Baran") warp "aldebaran",168,112; if (@wrpD$[@num] == "Aldebaran") warp "aldebaran",168,112; if (@wrpD$[@num] == "Comodo") warp "comodo", 209, 143; - if(checkre(0) - if (@wrpD$[@num] == "Izlude") warp "izlude", 128, 98; - else - if (@wrpD$[@num] == "Izlude") warp "izlude", 91, 105; + if (@wrpD$[@num] == "Izlude") { + if(checkre(0)) + warp "izlude", 128, 98; + else + warp "izlude", 91, 105; + } if (@wrpD$[@num] == "Geffen") warp "geffen", 120, 39; if (@wrpD$[@num] == "Morroc") warp "morocc", 156, 46; if (@wrpD$[@num] == "Payon") warp "payon", 161, 58; |