-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added player settings to gossip npc.
- Loading branch information
Showing
3 changed files
with
124 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
CREATE TABLE IF NOT EXISTS `attriboost_attributes` ( | ||
`guid` int unsigned NOT NULL, | ||
`unallocated` int DEFAULT NULL, | ||
`stamina` int unsigned DEFAULT NULL, | ||
`strength` int unsigned DEFAULT NULL, | ||
`agility` int unsigned DEFAULT NULL, | ||
`intellect` int unsigned DEFAULT NULL, | ||
`spirit` int unsigned DEFAULT NULL, | ||
`settings` int DEFAULT NULL, | ||
`comment` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL, | ||
PRIMARY KEY (`guid`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters