diff options
-rw-r--r-- | npc/cities/ayothaya.txt | 4 | ||||
-rw-r--r-- | npc/quests/first_class/tu_sword.txt | 10 | ||||
-rw-r--r-- | npc/re/mobs/fields/bifrost.txt | 4 | ||||
-rw-r--r-- | npc/re/mobs/fields/lighthalzen.txt | 2 |
4 files changed, 13 insertions, 7 deletions
diff --git a/npc/cities/ayothaya.txt b/npc/cities/ayothaya.txt index e05cf8e40..29c824404 100644 --- a/npc/cities/ayothaya.txt +++ b/npc/cities/ayothaya.txt @@ -91,9 +91,9 @@ ayothaya,152,68,1 script Aibakthing#ayo2 843,{ mes "You will be welcome to come back whenever you please. I hope that we will see each other again sometime soon. Thank you~"; close2; if (checkre(0)) - warp "alberta",238,22; - else warp "alberta",235,45; + else + warp "alberta",238,22; end; } mes "[Aibakthing]"; diff --git a/npc/quests/first_class/tu_sword.txt b/npc/quests/first_class/tu_sword.txt index 6ae1d7c08..02aebf6d6 100644 --- a/npc/quests/first_class/tu_sword.txt +++ b/npc/quests/first_class/tu_sword.txt @@ -1006,7 +1006,10 @@ geffen,154,143,3 script Dequ'ee 734,{ set tu_swordman, 21; changequest 8226,8227; close2; - warp "izlude",35,78; + if (checkre(0)) + warp "izlude",127,100; + else + warp "izlude",35,78; end; } if(tu_swordman == 19){ @@ -2116,7 +2119,10 @@ geffen,154,143,3 script Dequ'ee 734,{ mes "of yourself,"; mes "brave Swordman."; next; - warp "izlude",35,78; + if (checkre(0)) + warp "izlude",127,100; + else + warp "izlude",35,78; close; } case 2: diff --git a/npc/re/mobs/fields/bifrost.txt b/npc/re/mobs/fields/bifrost.txt index b5d04f4a7..b8c28bf49 100644 --- a/npc/re/mobs/fields/bifrost.txt +++ b/npc/re/mobs/fields/bifrost.txt @@ -1,11 +1,11 @@ //===== Hercules Script ====================================== -//= Bifrost Monster Spawn Script +//= Bifrost Field Monster Spawn Script //===== By: ================================================== //= Chilly //===== Current Version: ===================================== //= 1.1 //===== Description: ========================================= -//= Official monster spawn in Bifrost Field. +//= Official kRO monster spawns //===== Additional Comments: ================================= //= 1.0 First Release //= 1.1 Added more accurate 1@mist monsters diff --git a/npc/re/mobs/fields/lighthalzen.txt b/npc/re/mobs/fields/lighthalzen.txt index ad7019a81..8a9dbead3 100644 --- a/npc/re/mobs/fields/lighthalzen.txt +++ b/npc/re/mobs/fields/lighthalzen.txt @@ -1,7 +1,7 @@ //===== Hercules Script ====================================== //= Lighthalzen Fields Monster Spawn Script //===== By: ================================================== -//= Muad_Dib, eAthena dev team +//= Muad_Dib, rAthena Dev Team //===== Current Version: ===================================== //= 1.6 //===== Additional Comments: ================================= |