diff options
-rw-r--r-- | npc/Changelog.txt | 3 | ||||
-rw-r--r-- | npc/kafras/functions_kafras.txt | 1 | ||||
-rw-r--r-- | npc/kafras/kafras_yun.txt | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index 9a190c95c..b2d372c7e 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -36,7 +36,8 @@ Musashiden Date Added
======
-07/05
+06/07
+ * Fixed Yuno Kafra warp, sorry guys, I made a typo [Evera]
* Readded the 'al_morgen' variable to counteragent_mixture.txt, it's needed [MasterOfMuppets]
for the alchemist quest. Thanks to Belle for the fix.
* Added Save/Load Quest Skills (1st/2nd Class quest skills!) global functions. To test and
diff --git a/npc/kafras/functions_kafras.txt b/npc/kafras/functions_kafras.txt index 07afc66d4..dc107e096 100644 --- a/npc/kafras/functions_kafras.txt +++ b/npc/kafras/functions_kafras.txt @@ -272,6 +272,7 @@ function script F_KafTele { if (@wrpD$[@num] == "Alberta") warp "alberta.gat", 117, 56;
if (@wrpD$[@num] == "Al De Baran") warp "aldebaran.gat",143,110;
+ if (@wrpD$[@num] == "Aldebaran") warp "aldebaran.gat",143,110;
if (@wrpD$[@num] == "Comodo") warp "comodo.gat", 207, 144;
if (@wrpD$[@num] == "Izlude") warp "izlude.gat", 91, 105;
if (@wrpD$[@num] == "Geffen") warp "geffen.gat", 120, 39;
diff --git a/npc/kafras/kafras_yun.txt b/npc/kafras/kafras_yun.txt index 03e2a8de7..92ba2f2bc 100644 --- a/npc/kafras/kafras_yun.txt +++ b/npc/kafras/kafras_yun.txt @@ -58,7 +58,7 @@ yuno.gat,278,221,6 script Kafra 117,{ // Function: Sets variables for Yuno Kafras ------------
function script F_KafSetYun {
cleararray @wrpC$[0],"",getarraysize(@wrpC$);
- setarray @wrpD$[0], "Aldebaran";
+ setarray @wrpD$[0], "Al De Baran";
setarray @wrpP[0], 1200;
set @wrpC$[0], @wrpD$[0]+" -> "+@wrpP[0];
set @wrpC$[1], "Cancel";
|