Advertisement
Guest User

Untitled

a guest
Dec 27th, 2014
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 5.86 KB | None | 0 0
  1. DROP TABLE IF EXISTS `quest_template`;
  2.  
  3. CREATE TABLE `quest_template` (
  4.   `ID` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  5.   `Method` tinyint(3) UNSIGNED NOT NULL DEFAULT '2',
  6.   `Level` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '1',
  7.   `PackageID` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  8.   `MinLevel` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
  9.   `QuestSortID` SMALLINT(6) NOT NULL DEFAULT '0',
  10.   `QuestInfoID` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
  11.   `SuggestedGroupNum` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
  12.   `RewardNextQuest` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
  13.   `RewardXPDifficulty` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
  14.   `Float10` FLOAT NOT NULL DEFAULT '1',
  15.   `RewardMoney` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  16.   `RewardMoneyDifficulty` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  17.   `Float13` FLOAT NOT NULL DEFAULT '1',
  18.   `RewardBonusMoney` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  19.   `RewardDisplaySpell` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  20.   `RewardSpell` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  21.   `RewardHonor` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  22.   `RewardKillHonor` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  23.   `StartItem` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  24.   `Flags` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  25.   `FlagsEx` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  26.   `RewardItem0` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  27.   `RewardAmount0` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  28.   `ItemDrop0` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  29.   `ItemDropQuantity0` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  30.   `RewardItem1` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  31.   `RewardAmount1` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  32.   `ItemDrop1` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  33.   `ItemDropQuantity1` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  34.   `RewardItem2` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  35.   `RewardAmount2` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  36.   `ItemDrop2` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  37.   `ItemDropQuantity2` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  38.   `RewardItem3` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  39.   `RewardAmount3` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  40.   `ItemDrop3` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  41.   `ItemDropQuantity3` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  42.   `RewardChoiceItemID0` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  43.   `RewardChoiceItemQuantity0` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  44.   `RewardChoiceItemDisplayID0` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  45.   `RewardChoiceItemID1` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  46.   `RewardChoiceItemQuantity1` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  47.   `RewardChoiceItemDisplayID1` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  48.   `RewardChoiceItemID2` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  49.   `RewardChoiceItemQuantity2` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  50.   `RewardChoiceItemDisplayID2` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  51.   `RewardChoiceItemID3` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  52.   `RewardChoiceItemQuantity3` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  53.   `RewardChoiceItemDisplayID3` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  54.   `RewardChoiceItemID4` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  55.   `RewardChoiceItemQuantity4` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  56.   `RewardChoiceItemDisplayID4` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  57.   `RewardChoiceItemID5` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  58.   `RewardChoiceItemQuantity5` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  59.   `RewardChoiceItemDisplayID5` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  60.   `POIContinent` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  61.   `POIx` FLOAT NOT NULL DEFAULT '0',
  62.   `POIy` FLOAT NOT NULL DEFAULT '0',
  63.   `POIPriority` INT(11) NOT NULL DEFAULT '0',
  64.   `RewardTitle` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  65.   `RewardTalents` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  66.   `RewardArenaPoints` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  67.   `RewardSkillLineID` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  68.   `RewardNumSkillUps` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  69.   `PortraitGiver` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  70.   `PortraitTurnIn` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  71.   `RewardFactionID0` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  72.   `RewardFactionValue0` INT(11) NOT NULL DEFAULT '0',
  73.   `RewardFactionOverride0` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  74.   `RewardFactionID1` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  75.   `RewardFactionValue1` INT(11) NOT NULL DEFAULT '0',
  76.   `RewardFactionOverride1` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  77.   `RewardFactionID2` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  78.   `RewardFactionValue2` INT(11) NOT NULL DEFAULT '0',
  79.   `RewardFactionOverride2` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  80.   `RewardFactionID3` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  81.   `RewardFactionValue3` INT(11) NOT NULL DEFAULT '0',
  82.   `RewardFactionOverride3` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  83.   `RewardFactionFlags` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  84.   `RewardCurrencyID0` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  85.   `RewardCurrencyQuantity0` INT(11) NOT NULL DEFAULT '0',
  86.   `RewardCurrencyID1` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  87.   `RewardCurrencyQuantity1` INT(11) NOT NULL DEFAULT '0',
  88.   `RewardCurrencyID2` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  89.   `RewardCurrencyQuantity2` INT(11) NOT NULL DEFAULT '0',
  90.   `RewardCurrencyID3` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  91.   `RewardCurrencyQuantity3` INT(11) NOT NULL DEFAULT '0',
  92.   `AcceptedSoundKitID` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  93.   `CompleteSoundKitID` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  94.   `AreaGroupID` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  95.   `TimeAllowed` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  96.   `Int2950` INT(11) NOT NULL DEFAULT '-1',
  97.   `LogTitle` text,
  98.   `LogDescription` text,
  99.   `QuestDescription` text,
  100.   `AreaDescription` text,
  101.   `PortraitGiverText` text,
  102.   `PortraitGiverName` text,
  103.   `PortraitTurnInText` text,
  104.   `PortraitTurnInName` text,
  105.   `QuestCompletionLog` text,
  106.   `VerifiedBuild` SMALLINT(5) NOT NULL DEFAULT '0',
  107.   PRIMARY KEY (`ID`)
  108. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Quest System';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement