diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-01-14 18:12:18 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-01-14 18:12:18 -0300 |
commit | 64af8e3c6f3bdafa7d5f1befe7acaabe430d5f24 (patch) | |
tree | 9f7a680d3281fedeca48283e70fd4f4d0111671e /npc/025-1/ctrl.c | |
parent | f8b2df865a51648a0ebb1bc13a8232ae3331b3ef (diff) | |
download | serverdata-64af8e3c6f3bdafa7d5f1befe7acaabe430d5f24.tar.gz serverdata-64af8e3c6f3bdafa7d5f1befe7acaabe430d5f24.tar.bz2 serverdata-64af8e3c6f3bdafa7d5f1befe7acaabe430d5f24.tar.xz serverdata-64af8e3c6f3bdafa7d5f1befe7acaabe430d5f24.zip |
Officially allow access to Fortress Town
Diffstat (limited to 'npc/025-1/ctrl.c')
-rw-r--r-- | npc/025-1/ctrl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/npc/025-1/ctrl.c b/npc/025-1/ctrl.c index 6e9abf357..836dc49b9 100644 --- a/npc/025-1/ctrl.c +++ b/npc/025-1/ctrl.c @@ -389,6 +389,7 @@ OnConquest: // Experience injection to the brave (500k EXP, 100k JEXP) if (playerattached()) getexp 500000, 100000; + stopnpctimer; end; } @@ -457,7 +458,7 @@ OnInit: end; OnTouch: // Disabled - if ($GAME_STORYLINE < 3 || !is_admin() || $@FORTRESS_STATUE) + if ($GAME_STORYLINE < 3 || $@FORTRESS_STATUE) end; // Blacklisted if (array_find($@FORT_BLACKLIST, getcharid(0)) != -1) |