diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-04-25 01:19:20 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-04-25 01:19:20 -0300 |
commit | 4ec8af5bc61389b677b01a7f5db6addc6b2c5897 (patch) | |
tree | 97a17700dec015923ea48496bef74827b9a7ab45 /npc/042-0/arthur.txt | |
parent | 5fba16f2af3dd8c215a484f4f00e2b991c4ae664 (diff) | |
download | serverdata-4ec8af5bc61389b677b01a7f5db6addc6b2c5897.tar.gz serverdata-4ec8af5bc61389b677b01a7f5db6addc6b2c5897.tar.bz2 serverdata-4ec8af5bc61389b677b01a7f5db6addc6b2c5897.tar.xz serverdata-4ec8af5bc61389b677b01a7f5db6addc6b2c5897.zip |
Spellcheck + Set cooldown unless started by an Admin.
I am an Admin at localhost + test server, so it'll never be set during testings.
Diffstat (limited to 'npc/042-0/arthur.txt')
-rw-r--r-- | npc/042-0/arthur.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/npc/042-0/arthur.txt b/npc/042-0/arthur.txt index 50567d270..72f99f8f5 100644 --- a/npc/042-0/arthur.txt +++ b/npc/042-0/arthur.txt @@ -70,7 +70,9 @@ L_Quest: next; // Be sure the quest only starts now, and destroy any eventual artifact $KAMELOT_QUEST[.@g]=1; - mapannounce(getmap(), "##1KAMELOT CASTLE, GUILD DUNGON: MISSION START!", bc_map); + if (!is_admin()) // FIXME: This should be unconditional + $KAMELOT_COOLDOWN[.@g] = gettimeparam(GETTIME_WEEKDAY); + mapannounce(getmap(), "##1KAMELOT CASTLE, GUILD DUNGEON: MISSION START!", bc_map); mesc l(".:: KAMELOT CASTLE, THE GUILD DUNGEON ::."), 1; mes ""; mes l("1. Investigate Kamelot Basements"); @@ -126,7 +128,7 @@ L_Tutorial: mes l("Once the quest is started, entrance will be closed."); mes l("No one can go out during the quest, so ensure every guild member has proper equipment, potions, and time for this dungeon."); next; - mes l("Additionaly, for the optimal experience, ensure your party has at least the following members:"); + mes l("Additionally, for the optimal experience, ensure your party has at least the following members:"); mes ""; mes l("* Thief"); mes l("* Mage"); |