diff options
Diffstat (limited to 'npc/014-4')
-rw-r--r-- | npc/014-4/kamelot.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/014-4/kamelot.txt b/npc/014-4/kamelot.txt index 426dafabc..851bd0838 100644 --- a/npc/014-4/kamelot.txt +++ b/npc/014-4/kamelot.txt @@ -8,6 +8,7 @@ // Variable structure: // $@KAMELOT_ID [ guild_id ] = instance id +// $KAMELOT_MX [ guild_id ] = player average level - difficulty record // $KAMELOT_QUEST [ guild_id ] = quest status (bitmask) // 0 - Not started // 1 - Quest Assigned by Arthur (new players cannot enter anymore) @@ -21,8 +22,9 @@ // 2 - Treasure B // 4 - Treasure C // 8 - Treasure D + // 16 - Weapon Room Key // Do we ever need to store the data below? - // 16 - Weapon Room Key X,Y door is 2Y below + // X,Y door is 2Y below // 32 - Cell I 33,135 // 64 - Cell II 84,127 // 128 - Cell III 41,119 @@ -44,6 +46,7 @@ function script KamelotCleanup { .@g=getarg(0); //$@KAMELOT_ID[.@g]=0; + $KAMELOT_MX[.@g]=0; $KAMELOT_QUEST[.@g]=0; $KAMELOT_KEYMASK[.@g]=0; return; |