summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormeko <mekolat@users.noreply.github.com>2015-04-03 19:52:42 -0400
committermeko <mekolat@users.noreply.github.com>2015-04-03 19:52:42 -0400
commit16659723f9589d0ea31746d594907a7a62bead7c (patch)
tree5c0fc6d0ac8b3e1bf4ab10ca9860eb5914e08afc
parentdb4e22c9ea7c47eedecde14699e3759c670d19b3 (diff)
downloadserverdata-16659723f9589d0ea31746d594907a7a62bead7c.tar.gz
serverdata-16659723f9589d0ea31746d594907a7a62bead7c.tar.bz2
serverdata-16659723f9589d0ea31746d594907a7a62bead7c.tar.xz
serverdata-16659723f9589d0ea31746d594907a7a62bead7c.zip
Update chest.txt
the chest always said you won the first item of the array (bull helm or steel shield)
-rw-r--r--world/map/npc/052-2/chest.txt10
1 files changed, 6 insertions, 4 deletions
diff --git a/world/map/npc/052-2/chest.txt b/world/map/npc/052-2/chest.txt
index 1551d171..03b08b82 100644
--- a/world/map/npc/052-2/chest.txt
+++ b/world/map/npc/052-2/chest.txt
@@ -60,12 +60,13 @@ L_GetCommonReward:
if (@illia_current_num_rewards == $@illia_num_common_reward_items)
goto L_RewardDone;
getinventorylist;
- set @reward$, $@illia_common_rewards$[rand(getarraysize($@illia_common_rewards$))];
+ set @index, rand(getarraysize($@illia_common_rewards$));
+ set @reward$, $@illia_common_rewards$[@index];
if ((checkweight(@reward$, 1) == 0) || (@inventorylist_count == 100))
goto L_InventoryNoSpace;
set @illia_current_num_rewards, @illia_current_num_rewards + 1;
getitem @reward$, 1;
- mes "You found a " + $@illia_common_rewards_n$ + "!";
+ mes "You found a " + $@illia_common_rewards_n$[@index] + "!";
set @reward$, "";
goto L_GetCommonReward;
@@ -75,7 +76,8 @@ L_GetUniqueReward:
if (Illia_Uniques_Count >= 2)
goto L_GetUniqueReward2;
getinventorylist;
- set @reward$, $@illia_unique_rewards$[rand(getarraysize($@illia_unique_rewards$))];
+ set @index, rand(getarraysize($@illia_unique_rewards$));
+ set @reward$, $@illia_unique_rewards$[@index];
if ((checkweight(@reward$, 1) == 0) || (@inventorylist_count == 100))
goto L_InventoryNoSpace;
next;
@@ -83,7 +85,7 @@ L_GetUniqueReward:
next;
set @illia_current_num_rewards, @illia_current_num_rewards + 1;
getitem @reward$, 1;
- mes "You found a " + $@illia_unique_rewards_n$ + "!";
+ mes "You found a " + $@illia_unique_rewards_n$[@index] + "!";
set Illia_Uniques_Count, Illia_Uniques_Count + 1;
set @reward$, "";
goto L_GetUniqueReward;