diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-04-24 19:12:05 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-04-24 19:12:05 -0300 |
commit | 090f16acc5146162df1a3e7a524a45d9a7070ac0 (patch) | |
tree | 91b87f480eb61c54afcd9778937409297ac27373 | |
parent | 2187c4bfffc5e3369dab542a7b4ee986fc3ad59d (diff) | |
download | serverdata-090f16acc5146162df1a3e7a524a45d9a7070ac0.tar.gz serverdata-090f16acc5146162df1a3e7a524a45d9a7070ac0.tar.bz2 serverdata-090f16acc5146162df1a3e7a524a45d9a7070ac0.tar.xz serverdata-090f16acc5146162df1a3e7a524a45d9a7070ac0.zip |
Tidy a bit Frostia bribe
-rw-r--r-- | npc/024-1/guard.txt | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/npc/024-1/guard.txt b/npc/024-1/guard.txt index 993cd9886..c668d7ca6 100644 --- a/npc/024-1/guard.txt +++ b/npc/024-1/guard.txt @@ -7,9 +7,15 @@ 024-1,93,73,0 script Frostia Guard NPC_ELF,{ if (BaseLevel < 40) goto L_Unallowed; - //if (getrace() == "Elf") goto L_Warp; + if (Class == Elven) + { + slide 93, 69; + npctalk3 l("Elves are always allowed inside."); + end; + } - .@tax=1001-min(1000, reputation("Frostia")*10); + //.@tax=1001-min(1000, reputation("Frostia")*10); + .@tax=501-min(500, reputation("Frostia")*5); mesn; mesc l("The guard eyes you with suspcion."); mesq l("You should not be here. Get moving."); |