From c70e592d9722c7fb224843695d614d1e5e5904ff Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sun, 8 Aug 2021 16:35:30 -0300 Subject: Start fixing Valia --- npc/007-2/witch.txt | 10 +++++----- npc/051-1/desert.txt | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/npc/007-2/witch.txt b/npc/007-2/witch.txt index 55c31e5f..2fd47065 100644 --- a/npc/007-2/witch.txt +++ b/npc/007-2/witch.txt @@ -480,7 +480,7 @@ L_InitVars: $@illia_level_5_progress = 0; $@illia_level_6_progress = 0; $@illia_level_7_progress = 0; - $@illia_players_in_luvia_territory = 0; + $@iilia_in_territory = 0; // Save the time at which the quest started $@illia_begin_time = gettimetick(2); @@ -550,7 +550,7 @@ L_EndQuest: $@illia_level_5_progress = 0; $@illia_level_6_progress = 0; $@illia_level_7_progress = 0; - $@illia_players_in_luvia_territory = 0; + $@iilia_in_territory = 0; $@illia_bp = 0; // Clean all levels @@ -715,12 +715,12 @@ OnTimer6500: // Make the first witch to say something happened, when she will see people back // If no helpers will be warped, it still makes sense: she felt the hero died. startnpctimer "Valia"; - // $@illia_players_in_luvia_territory is set when players enter the island - $Illia_Luvia_Harvest = $Illia_Luvia_Harvest + $@illia_players_in_luvia_territory; + // $@iilia_in_territory is set when players enter the island + $Illia_Luvia_Harvest = $Illia_Luvia_Harvest + $@iilia_in_territory; // Cap the difficulty to 50. We do not want the quest to really be impossible to finish. if ($Illia_Luvia_Harvest > 50) $Illia_Luvia_Harvest = 50; - $@illia_players_in_luvia_territory = 0; + $@iilia_in_territory = 0; end; L_HelperNotification: diff --git a/npc/051-1/desert.txt b/npc/051-1/desert.txt index 8d68837c..6cf8567f 100644 --- a/npc/051-1/desert.txt +++ b/npc/051-1/desert.txt @@ -124,7 +124,7 @@ L_NotEnough: L_Warp: warp "052-1", 23, 52; // Count the player who reached the island. - $@illia_players_in_luvia_territory = $@illia_players_in_luvia_territory + 1; + $@iilia_in_territory = $@iilia_in_territory + 1; goto L_close; L_close: -- cgit v1.2.3-60-g2f50