diff options
-rw-r--r-- | npc/017-3/vault.txt | 4 | ||||
-rw-r--r-- | npc/018-2-4/vault.txt | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/npc/017-3/vault.txt b/npc/017-3/vault.txt index 64678e95f..7866701ac 100644 --- a/npc/017-3/vault.txt +++ b/npc/017-3/vault.txt @@ -11,7 +11,7 @@ // 2*3 = 6 possibilities, 5 attempts if (LockPicking(2, 3)) { Zeny=Zeny+$VAULT_01738039; - $VAULT_01738039=0; + $VAULT_01738039=40; mesn; mesq l("Booty!"); } else { @@ -49,7 +49,7 @@ OnInit: OnClock0201: OnClock1418: - $VAULT_01738039+=rand(5,25); + $VAULT_01738039+=rand2(5,25); end; } diff --git a/npc/018-2-4/vault.txt b/npc/018-2-4/vault.txt index 7b778abdd..4466cb2dc 100644 --- a/npc/018-2-4/vault.txt +++ b/npc/018-2-4/vault.txt @@ -11,7 +11,7 @@ // 3*3 = 9 possibilities, 6~8 attempts if (LockPicking(3, 3)) { Zeny=Zeny+$VAULT_01824; - $VAULT_01824=0; + $VAULT_01824=60; mesn; mesq l("Booty!"); } else { @@ -49,7 +49,7 @@ OnInit: OnClock0201: OnClock1216: - $VAULT_01824+=rand(15,35); + $VAULT_01824+=rand2(15,35); end; } |