diff options
-rw-r--r-- | maps/re/024-1.mcache | bin | 1172 -> 1173 bytes | |||
-rw-r--r-- | npc/024-1/guard.txt | 6 |
2 files changed, 3 insertions, 3 deletions
diff --git a/maps/re/024-1.mcache b/maps/re/024-1.mcache Binary files differindex 0030721fa..aac76e450 100644 --- a/maps/re/024-1.mcache +++ b/maps/re/024-1.mcache diff --git a/npc/024-1/guard.txt b/npc/024-1/guard.txt index 23bc03790..993cd9886 100644 --- a/npc/024-1/guard.txt +++ b/npc/024-1/guard.txt @@ -9,16 +9,16 @@ goto L_Unallowed; //if (getrace() == "Elf") goto L_Warp; - .@tax=1001-(reputation("Frostia")*10); + .@tax=1001-min(1000, reputation("Frostia")*10); mesn; mesc l("The guard eyes you with suspcion."); mesq l("You should not be here. Get moving."); if (Zeny < .@tax) close; next; - mesc l("Bribe the guard for @@ GP?", .@price); + mesc l("Bribe the guard for @@ GP?", .@tax); if (askyesno() == ASK_YES) { - Zeny-=.@price; + Zeny-=.@tax; closeclientdialog; slide 93, 69; npctalk3 l("Behave yourself."); |