diff options
Diffstat (limited to 'npc/024-1')
-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."); |