forked from azerothcore/azerothcore-wotlk
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
95 changed files
with
2,358 additions
and
302 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
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
14 changes: 14 additions & 0 deletions
14
modules/mod-playerbots/sql/playerbots/base/ai_playerbot_texts_chance.sql
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,14 @@ | ||
DROP TABLE IF EXISTS `ai_playerbot_texts_chance`; | ||
CREATE TABLE IF NOT EXISTS `ai_playerbot_texts_chance` ( | ||
`id` bigint(20) NOT NULL AUTO_INCREMENT, | ||
`name` varchar(255) NOT NULL, | ||
`probability` bigint(20) NOT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=UTF8; | ||
|
||
/*!40000 ALTER TABLE `ai_playerbot_texts_chance` DISABLE KEYS */; | ||
INSERT INTO `ai_playerbot_texts_chance` (`id`, `name`, `probability`) VALUES | ||
(1, 'taunt', 30), | ||
(2, 'aoe', 75), | ||
(3, 'loot', 20); | ||
/*!40000 ALTER TABLE `ai_playerbot_texts_chance` ENABLE KEYS */; |
10 changes: 10 additions & 0 deletions
10
modules/mod-playerbots/sql/playerbots/base/playerbots_preferred_mounts.sql
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,10 @@ | ||
DROP TABLE IF EXISTS `playerbots_preferred_mounts`; | ||
CREATE TABLE `playerbots_preferred_mounts` ( | ||
`id` INT(11) NOT NULL AUTO_INCREMENT, | ||
`guid` INT(11) NOT NULL, | ||
`type` TINYINT(3) NOT NULL COMMENT '0: Ground, 1: Flying', | ||
`spellid` INT(11) NOT NULL, | ||
PRIMARY KEY (`id`), | ||
KEY `guid` (`guid`), | ||
KEY `type` (`type`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
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
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
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
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
Oops, something went wrong.