diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-05-01 06:30:33 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-05-01 06:30:33 -0300 |
commit | 5409f2f899a685425757932c13154bc6340463d1 (patch) | |
tree | e82637c42669677ae68cfbef6527ca308f8fa79a /npc/014-4/kamelot.txt | |
parent | 903c1ffa430d9ca8933059e84ae8cd91a0c510b9 (diff) | |
download | serverdata-5409f2f899a685425757932c13154bc6340463d1.tar.gz serverdata-5409f2f899a685425757932c13154bc6340463d1.tar.bz2 serverdata-5409f2f899a685425757932c13154bc6340463d1.tar.xz serverdata-5409f2f899a685425757932c13154bc6340463d1.zip |
Sketch about the keys to open the gate
Diffstat (limited to 'npc/014-4/kamelot.txt')
-rw-r--r-- | npc/014-4/kamelot.txt | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/npc/014-4/kamelot.txt b/npc/014-4/kamelot.txt index 715a4f981..99d917f51 100644 --- a/npc/014-4/kamelot.txt +++ b/npc/014-4/kamelot.txt @@ -26,23 +26,10 @@ // 4 - Treasure C // 8 - Treasure D // 16 - Weapon Room Key - // Do we ever need to store the data below? - // X,Y door is 2Y below - // 32 - Cell I 33,135 - // 64 - Cell II 84,127 - // 128 - Cell III 41,119 - // 256 - Cell IV 74,107 - // 512 - Cell V 36,96 - // 1024 - Cell VI 57,84 - // 2048 - Cell VII 79,63 - // 4096 - Cell VIII 43,67 - // 8192 - Cell IX 24,67 - // 16384 - Cell X 86,22 - // 32768 - Cell XI 59,49 - // 65536 - Cell XII 38,27 - // If more than 12 players, loop back +// $KAMELOT_PASSMASK [ guild_id ] = (bitmask) Switches in 042-10 // $KAMELOT_KEY [ guild_id ] = Which bit was assigned as the key +// $KAMELOT_PASSCODE [ guild_id ] = A bitmask of passcode to use the key // $KAMELOT_COOLDOWN [ guild_id ] = Last attempt (weekly attempts) // KamelotCleanup(guildid) @@ -55,6 +42,8 @@ function script KamelotCleanup { $KAMELOT_KEY[.@g]=0; $KAMELOT_QUEST[.@g]=0; $KAMELOT_KEYMASK[.@g]=0; + $KAMELOT_PASSCODE[.@g]=0; + $KAMELOT_PASSMASK[.@g]=0; return; } |