diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-16 01:12:41 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-16 01:12:41 -0300 |
commit | bf736124b65dde540c9065be12f6faa89fba2ca3 (patch) | |
tree | 577d1e8071d30f511fe5bdf31bada7c01dfa9d86 /npc/024-1/guard.txt | |
parent | fdfe72f2707634323226f8097dc1060f511eba1b (diff) | |
download | serverdata-bf736124b65dde540c9065be12f6faa89fba2ca3.tar.gz serverdata-bf736124b65dde540c9065be12f6faa89fba2ca3.tar.bz2 serverdata-bf736124b65dde540c9065be12f6faa89fba2ca3.tar.xz serverdata-bf736124b65dde540c9065be12f6faa89fba2ca3.zip |
Frostia Town is now working.
Diffstat (limited to 'npc/024-1/guard.txt')
-rw-r--r-- | npc/024-1/guard.txt | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/npc/024-1/guard.txt b/npc/024-1/guard.txt index 4dc86cdd8..23bc03790 100644 --- a/npc/024-1/guard.txt +++ b/npc/024-1/guard.txt @@ -9,10 +9,20 @@ goto L_Unallowed; //if (getrace() == "Elf") goto L_Warp; - .@tax=101-reputation("Frostia"); + .@tax=1001-(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); + if (askyesno() == ASK_YES) { + Zeny-=.@price; + closeclientdialog; + slide 93, 69; + npctalk3 l("Behave yourself."); + } close; L_Unallowed: |