[DiscordArchive] Anyway i could find that?
[DiscordArchive] Anyway i could find that?
Archived author: Prov • Posted: 2023-07-09T17:53:02.039000+00:00
Original source
Anyway i could find that?
Archived author: Revision • Posted: 2023-07-09T17:53:03.198000+00:00
Original source
There's not enough information to answer that, sadly. What bots? The playerbots module uses `playerbots_names` in the characters database and npcbots uses creature templates so those aren't randomly generated.
Archived author: Faust110888 • Posted: 2023-07-09T18:05:47.948000+00:00
Original source
I mean random ik3s bot module, i change everything in `ai_playerbot_guild_names.sql` like DROP TABLE IF EXISTS `ai_playerbot_guild_names`;
`CREATE TABLE `ai_playerbot_guild_names` (
`name_id` mediumint(8) NOT NULL AUTO_INCREMENT UNIQUE,
`name` varchar(24) NOT NULL UNIQUE,
PRIMARY KEY (`name_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='PlayerbotAI guild names';
LOCK TABLES `ai_playerbot_guild_names` WRITE;
INSERT INTO `ai_playerbot_guild_names` VALUES
(NULL, 'aaaa'),
(NULL, 'bbbb'),
(NULL, 'cccc'),
(NULL, 'aaaa1'),
(NULL, 'bbbb1'),
(NULL, 'cccc1'),
(NULL, 'aaaa2'),
(NULL, 'bbbb2'),
(NULL, 'cccc2'),`
Archived author: Faust110888 • Posted: 2023-07-09T18:06:01.359000+00:00
Original source
still doesent work, still generating random names