diff options
author | Kudlaty <none@none> | 2009-05-22 17:43:14 +0200 |
---|---|---|
committer | Kudlaty <none@none> | 2009-05-22 17:43:14 +0200 |
commit | 3bd98584170536d16cc7e09ee5e8921b9a3de9fb (patch) | |
tree | 9051beafbaeb1ade49a64cc8a05bbfa89fe022bc /sql/mangos.sql | |
parent | ab5b273d3cc02f9db39864b39c55a619dc0a88e6 (diff) |
Add a column to npc_spellclick_spells table to check if quest is completed/rewarded or incompleted
1: completed or rewarded; 3: incompleted; default 3
--HG--
branch : trunk
Diffstat (limited to 'sql/mangos.sql')
-rw-r--r-- | sql/mangos.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/mangos.sql b/sql/mangos.sql index 96da5218048..1561438c0a3 100644 --- a/sql/mangos.sql +++ b/sql/mangos.sql @@ -3168,6 +3168,7 @@ CREATE TABLE `npc_spellclick_spells` ( `npc_entry` INT UNSIGNED NOT NULL COMMENT 'reference to creature_template', `spell_id` INT UNSIGNED NOT NULL COMMENT 'spell which should be casted ', `quest_id` INT UNSIGNED NOT NULL COMMENT 'reference to quest_template', + `quest_status` INT(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT 'Quest status: 3 incompleted, 1 completed/rewarded', `cast_flags` TINYINT UNSIGNED NOT NULL COMMENT 'first bit defines caster: 1=player, 0=creature; second bit defines target, same mapping as caster bit' ) ENGINE = MYISAM DEFAULT CHARSET=utf8; |