Archived old sql files, they are now integrated in base
This commit is contained in:
parent
59d568d603
commit
212edb5034
83 changed files with 562801 additions and 423 deletions
|
|
@ -4,18 +4,22 @@
|
|||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
DROP TABLE IF EXISTS `auth_db_version`;
|
||||
DROP TABLE IF EXISTS `logs`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `auth_db_version`
|
||||
CREATE TABLE `logs`
|
||||
(
|
||||
`2016_07_10_00` bit(1) DEFAULT NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Last applied sql update to DB';
|
||||
`time` int(10) unsigned NOT NULL,
|
||||
`realm` int(10) unsigned NOT NULL,
|
||||
`type` varchar(250) NOT NULL,
|
||||
`level` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`string` text CHARACTER SET latin1
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
LOCK TABLES `auth_db_version` WRITE;
|
||||
/*!40000 ALTER TABLE `auth_db_version` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `auth_db_version` ENABLE KEYS */;
|
||||
LOCK TABLES `logs` WRITE;
|
||||
/*!40000 ALTER TABLE `logs` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `logs` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
|
|
@ -4,18 +4,23 @@
|
|||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
DROP TABLE IF EXISTS `characters_db_version`;
|
||||
DROP TABLE IF EXISTS `version_db_auth`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `characters_db_version`
|
||||
CREATE TABLE `version_db_auth`
|
||||
(
|
||||
`2016_08_12_00` bit(1) DEFAULT NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Last applied sql update to DB';
|
||||
`sql_rev` varchar(100) NOT NULL,
|
||||
`required_rev` varchar(100) DEFAULT NULL,
|
||||
`2016_09_04_00` bit(1) DEFAULT NULL,
|
||||
PRIMARY KEY (`sql_rev`),
|
||||
KEY `required` (`required_rev`),
|
||||
CONSTRAINT `required` FOREIGN KEY (`required_rev`) REFERENCES `version_db_auth` (`sql_rev`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Last applied sql update to DB';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
LOCK TABLES `characters_db_version` WRITE;
|
||||
/*!40000 ALTER TABLE `characters_db_version` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `characters_db_version` ENABLE KEYS */;
|
||||
LOCK TABLES `version_db_auth` WRITE;
|
||||
/*!40000 ALTER TABLE `version_db_auth` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `version_db_auth` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
|
|
@ -13,6 +13,7 @@ CREATE TABLE `channels`
|
|||
`name` varchar(128) NOT NULL,
|
||||
`team` int(10) unsigned NOT NULL,
|
||||
`announce` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
||||
`ownership` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
||||
`password` varchar(32) DEFAULT NULL,
|
||||
`lastUsed` int(10) unsigned NOT NULL,
|
||||
PRIMARY KEY (`channelId`)
|
||||
|
|
|
|||
|
|
@ -4,18 +4,23 @@
|
|||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
DROP TABLE IF EXISTS `world_db_version`;
|
||||
DROP TABLE IF EXISTS `version_db_characters`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `world_db_version`
|
||||
CREATE TABLE `version_db_characters`
|
||||
(
|
||||
`2016_08_10_01` bit(1) DEFAULT NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Last applied sql update to DB';
|
||||
`sql_rev` varchar(100) NOT NULL,
|
||||
`required_rev` varchar(100) DEFAULT NULL,
|
||||
`2016_08_25_00` bit(1) DEFAULT NULL,
|
||||
PRIMARY KEY (`sql_rev`),
|
||||
KEY `required` (`required_rev`),
|
||||
CONSTRAINT `required` FOREIGN KEY (`required_rev`) REFERENCES `version_db_characters` (`sql_rev`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Last applied sql update to DB';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
LOCK TABLES `world_db_version` WRITE;
|
||||
/*!40000 ALTER TABLE `world_db_version` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `world_db_version` ENABLE KEYS */;
|
||||
LOCK TABLES `version_db_characters` WRITE;
|
||||
/*!40000 ALTER TABLE `version_db_characters` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `version_db_characters` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
|
|
@ -9,15 +9,15 @@ DROP TABLE IF EXISTS `areatrigger_teleport`;
|
|||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `areatrigger_teleport`
|
||||
(
|
||||
`id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier',
|
||||
`name` text,
|
||||
`ID` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`Name` text,
|
||||
`target_map` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`target_position_x` float NOT NULL DEFAULT '0',
|
||||
`target_position_y` float NOT NULL DEFAULT '0',
|
||||
`target_position_z` float NOT NULL DEFAULT '0',
|
||||
`target_orientation` float NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`id`),
|
||||
FULLTEXT KEY `name` (`name`)
|
||||
PRIMARY KEY (`ID`),
|
||||
FULLTEXT KEY `name` (`Name`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ DROP TABLE IF EXISTS `battleground_template`;
|
|||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `battleground_template`
|
||||
(
|
||||
`id` mediumint(8) unsigned NOT NULL,
|
||||
`ID` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`MinPlayersPerTeam` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`MaxPlayersPerTeam` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`MinLvl` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
|
|
@ -22,7 +22,7 @@ CREATE TABLE `battleground_template`
|
|||
`Weight` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
||||
`ScriptName` char(64) NOT NULL DEFAULT '',
|
||||
`Comment` char(32) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
|
|
|
|||
73088
data/sql/base/db_world/broadcast_text.sql
Normal file
73088
data/sql/base/db_world/broadcast_text.sql
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -7,7 +7,7 @@
|
|||
DROP TABLE IF EXISTS `command`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `command`
|
||||
CREATE TABLE `command`
|
||||
(
|
||||
`name` varchar(50) NOT NULL DEFAULT '',
|
||||
`security` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
|
|
@ -18,7 +18,18 @@ CREATE TABLE `command`
|
|||
|
||||
LOCK TABLES `command` WRITE;
|
||||
/*!40000 ALTER TABLE `command` DISABLE KEYS */;
|
||||
INSERT INTO `command` (`name`, `security`, `help`) VALUES
|
||||
INSERT INTO `command` VALUES
|
||||
('account',0,'Syntax: .account\r\n\r\nDisplay the access level of your account and the email adress if you possess the necessary permissions.'),
|
||||
('account addon',1,'Syntax: .account addon #addon\nSet expansion addon level allowed. Addon values: 0 - normal, 1 - tbc, 2 - wotlk.'),
|
||||
('account create',4,'Syntax: .account create $account $password\r\n\r\nCreate account and set password to it.'),
|
||||
('account delete',4,'Syntax: .account delete $account\r\n\r\nDelete account with all characters.'),
|
||||
('account lock',0,'Syntax: .account lock [on|off]\n\n Allow login from account only from current used IP or remove this requirement.'),
|
||||
('account onlinelist',4,'Syntax: .account onlinelist\r\n\r\nShow list of online accounts.'),
|
||||
('account password',0,'Syntax: .account password $old_password $new_password $new_password [$email]\r\n\r\nChange your account password. You may need to check the actual security mode to see if email input is necessary.'),
|
||||
('account set',2,'Syntax: .account set $subcommand\nType .account set to see the list of possible subcommands or .help account set $subcommand to see info on subcommands'),
|
||||
('account set addon',2,'Syntax: .account set addon [$account] #addon\r\n\r\nSet user (possible targeted) expansion addon level allowed. Addon values: 0 - normal, 1 - tbc, 2 - wotlk.'),
|
||||
('account set gmlevel',4,'Syntax: .account set gmlevel [$account] #level [#realmid]\r\n\r\nSet the security level for targeted player (can\'t be used at self) or for account $name to a level of #level on the realm #realmID.\r\n\r\n#level may range from 0 to 3.\r\n\r\n#reamID may be -1 for all realms.'),
|
||||
('account set password',4,'Syntax: .account set password $account $password $password\r\n\r\nSet password for account.'),
|
||||
('achievement',2,'Syntax: .achievement $subcommand\nType .achievement to see the list of possible subcommands or .help achievement $subcommand to see info on subcommands'),
|
||||
('achievement add',2,'Syntax: .achievement add $achievement\nAdd an achievement to the targeted player.\n$achievement: can be either achievement id or achievement link'),
|
||||
('achievement checkall',3,''),
|
||||
|
|
@ -53,6 +64,7 @@ INSERT INTO `command` (`name`, `security`, `help`) VALUES
|
|||
('cast dist',2,'Syntax: .cast dist #spellid [#dist [triggered]]\r\n You will cast spell to pint at distance #dist. If \'trigered\' or part provided then spell casted with triggered flag. Not all spells can be casted as area spells.'),
|
||||
('cast self',2,'Syntax: .cast self #spellid [triggered]\r\nCast #spellid by target at target itself. If \'trigered\' or part provided then spell casted with triggered flag.'),
|
||||
('cast target',2,'Syntax: .cast target #spellid [triggered]\r\n Selected target will cast #spellid to his victim. If \'trigered\' or part provided then spell casted with triggered flag.'),
|
||||
('character',2,'Syntax: character $subcommand\n Type .character to see a list of possible subcommands\n or .help character $subcommand to see info on the subcommand.'),
|
||||
('character changefaction',2,'Syntax: .character changefaction $name\r\n\r\nChange character faction.'),
|
||||
('character changerace',2,'Syntax: .character changerace $name\r\n\r\nChange character race.'),
|
||||
('character customize',2,'Syntax: .character customize [$name]\r\n\r\nMark selected in game or by $name in command character for customize at next login.'),
|
||||
|
|
@ -66,11 +78,21 @@ INSERT INTO `command` (`name`, `security`, `help`) VALUES
|
|||
('cooldown',2,'Syntax: .cooldown [#spell_id]\r\n\r\nRemove all (if spell_id not provided) or #spel_id spell cooldown from selected character or you (if no selection).'),
|
||||
('damage',2,'Syntax: .damage $damage_amount [$school [$spellid]]\r\n\r\nApply $damage to target. If not $school and $spellid provided then this flat clean melee damage without any modifiers. If $school provided then damage modified by armor reduction (if school physical), and target absorbing modifiers and result applied as melee damage to target. If spell provided then damage modified and applied as spell damage. $spellid can be shift-link.'),
|
||||
('debug',2,'Syntax: .debug $subcommand\nType .debug to see the list of possible subcommands or .help debug $subcommand to see info on subcommands'),
|
||||
('debug anim',5,'TODO'),
|
||||
('debug areatriggers',3,'Syntax: .debug areatriggers\nToggle debug mode for areatriggers. In debug mode GM will be notified if reaching an areatrigger'),
|
||||
('debug arena',3,'Syntax: .debug arena\r\n\r\nToggle debug mode for arenas. In debug mode GM can start arena with single player.'),
|
||||
('debug bg',3,'Syntax: .debug bg\r\n\r\nToggle debug mode for battlegrounds. In debug mode GM can start battleground with single player.'),
|
||||
('debug entervehicle',3,'Syntax: '),
|
||||
('debug getitemstate',3,'Syntax: '),
|
||||
('debug getitemvalue',3,'Syntax: '),
|
||||
('debug getvalue',3,'Syntax: '),
|
||||
('debug hostil',1,'Syntax: '),
|
||||
('debug itemexpire',3,'Syntax: '),
|
||||
('debug lootrecipient',3,'Syntax: '),
|
||||
('debug los',3,'Syntax: '),
|
||||
('debug Mod32Value',3,'Syntax: .debug Mod32Value #field #value\r\n\r\nAdd #value to field #field of your character.'),
|
||||
('debug moveflags',3,'Syntax: .debug moveflags [$newMoveFlags [$newMoveFlags2]]\r\nNo params given will output the current moveflags of the target'),
|
||||
('debug play',1,'Syntax: '),
|
||||
('debug play cinematic',1,'Syntax: .debug play cinematic #cinematicid\r\n\r\nPlay cinematic #cinematicid for you. You stay at place while your mind fly.\r\n'),
|
||||
('debug play movie',1,'Syntax: .debug play movie #movieid\r\n\r\nPlay movie #movieid for you.'),
|
||||
('debug play sound',1,'Syntax: .debug play sound #soundid\r\n\r\nPlay sound with #soundid.\r\nSound will be play only for you. Other players do not hear this.\r\nWarning: client may have more 5000 sounds...'),
|
||||
|
|
@ -88,10 +110,13 @@ INSERT INTO `command` (`name`, `security`, `help`) VALUES
|
|||
('debug send spellfail',3,''),
|
||||
('debug setaurastate',3,''),
|
||||
('debug setbit',3,''),
|
||||
('debug setitemvalue',3,'Syntax: '),
|
||||
('debug setvalue',3,''),
|
||||
('debug setvid',3,''),
|
||||
('debug spawnvehicle',3,''),
|
||||
('debug threat',3,'Syntax: '),
|
||||
('debug update',3,''),
|
||||
('debug uws',3,'Syntax: '),
|
||||
('demorph',1,'Syntax: .demorph\r\n\r\nDemorph the selected player.'),
|
||||
('dev',3,'Syntax: .dev [on/off]\r\n\r\nEnable or Disable in game Dev tag or show current state if on/off not provided.'),
|
||||
('die',2,'Syntax: .die\r\n\r\nKill the selected player. If no player is selected, it will kill you.'),
|
||||
|
|
@ -106,6 +131,7 @@ INSERT INTO `command` (`name`, `security`, `help`) VALUES
|
|||
('gm',2,'Syntax: .gm [on/off]\r\n\r\nEnable or Disable in game GM MODE or show current state of on/off not provided.'),
|
||||
('gm chat',2,'Syntax: .gm chat [on/off]\r\n\r\nEnable or disable chat GM MODE (show gm badge in messages) or show current state of on/off not provided.'),
|
||||
('gm fly',2,'Syntax: .gm fly [on/off]\r\nEnable/disable gm fly mode.'),
|
||||
('gm ingame',0,'Syntax: .gm ingame\r\n\r\nDisplay a list of available in game Game Masters.'),
|
||||
('gm list',1,'Syntax: .gm list\r\n\r\nDisplay a list of all Game Masters accounts and security levels.'),
|
||||
('gm visible',1,'Syntax: .gm visible on/off\r\n\r\nOutput current visibility state or make GM visible(on) and invisible(off) for other players.'),
|
||||
('gmannounce',2,'Syntax: .gmannounce $announcement\r\nSend an announcement to online Gamemasters.'),
|
||||
|
|
@ -129,7 +155,9 @@ INSERT INTO `command` (`name`, `security`, `help`) VALUES
|
|||
('gobject info',1,'Syntax: .gobject info [$object_entry]\r \r Query Gameobject information for selected gameobject or given entry.'),
|
||||
('gobject move',3,'Syntax: .gobject move #goguid [#x #y #z]\r\n\r\nMove gameobject #goguid to character coordinates (or to (#x,#y,#z) coordinates if its provide).'),
|
||||
('gobject near',1,'Syntax: .gobject near [#distance]\r\n\r\nOutput gameobjects at distance #distance from player. Output gameobject guids and coordinates sorted by distance from character. If #distance not provided use 10 as default value.'),
|
||||
('gobject set',3,'Syntax: '),
|
||||
('gobject set phase',3,'Syntax: .gobject set phase #guid #phasemask\r\n\r\nGameobject with DB guid #guid phasemask changed to #phasemask with related world vision update for players. Gameobject state saved to DB and persistent.'),
|
||||
('gobject set state',3,'Syntax: '),
|
||||
('gobject target',1,'Syntax: .gobject target [#go_id|#go_name_part]\r\n\r\nLocate and show position nearest gameobject. If #go_id or #go_name_part provide then locate and show position of nearest gameobject with gameobject template id #go_id or name included #go_name_part as part.'),
|
||||
('gobject turn',3,'Syntax: .gobject turn #goguid \r\n\r\nSet for gameobject #goguid orientation same as current character orientation.'),
|
||||
('gps',1,'Syntax: .gps [$name|$shift-link]\r\n\r\nDisplay the position information for a selected character or creature (also if player name $name provided then for named player, or if creature/gameobject shift-link provided then pointed creature/gameobject if it loaded). Position information includes X, Y, Z, and orientation, map Id and zone Id'),
|
||||
|
|
@ -206,6 +234,7 @@ INSERT INTO `command` (`name`, `security`, `help`) VALUES
|
|||
('lookup taxinode',1,'Syntax: .lookup taxinode $substring\r\n\r\nSearch and output all taxinodes with provide $substring in name.'),
|
||||
('lookup tele',1,'Syntax: .lookup tele $substring\r\n\r\nSearch and output all .tele command locations with provide $substring in name.'),
|
||||
('lookup title',1,'Syntax: .lookup title $$namepart\r\n\r\nLooks up a title by $namepart, and returns all matches with their title ID\'s and index\'s.'),
|
||||
('mailbox',1,'Syntax: .mailbox\r\n\r\nShow your mailbox content.'),
|
||||
('maxskill',2,'Syntax: .maxskill\r\nSets all skills of the targeted player to their maximum values for its current level.'),
|
||||
('modify',2,'Syntax: .modify $subcommand\nType .modify to see the list of possible subcommands or .help modify $subcommand to see info on subcommands'),
|
||||
('modify arenapoints',2,'Syntax: .modify arenapoints #value\r\nAdd $amount arena points to the selected player.'),
|
||||
|
|
@ -251,8 +280,10 @@ INSERT INTO `command` (`name`, `security`, `help`) VALUES
|
|||
('npc follow stop',2,'Syntax: .npc follow stop\r\n\r\nSelected creature (non pet) stop follow you.'),
|
||||
('npc info',1,'Syntax: .npc info\r\n\r\nDisplay a list of details for the selected creature.\r\n\r\nThe list includes:\r\n- GUID, Faction, NPC flags, Entry ID, Model ID,\r\n- Level,\r\n- Health (current/maximum),\r\n\r\n- Field flags, dynamic flags, faction template, \r\n- Position information,\r\n- and the creature type, e.g. if the creature is a vendor.'),
|
||||
('npc move',3,'Syntax: .npc move [#creature_guid]\r\n\r\nMove the targeted creature spawn point to your coordinates.'),
|
||||
('npc near',2,'Syntax: '),
|
||||
('npc playemote',2,'Syntax: .npc playemote #emoteid\r\n\r\nMake the selected creature emote with an emote of id #emoteid.'),
|
||||
('npc say',2,'Syntax: .npc say $message\nMake selected creature say specified message.'),
|
||||
('npc set',3,'Syntax: '),
|
||||
('npc set allowmove',5,'Syntax: .npc set allowmove\r\n\r\nEnable or disable movement creatures in world. Not implemented.'),
|
||||
('npc set data',3,'Syntax: .npc set data $field $data\nSets data for the selected creature. Used for testing Scripting'),
|
||||
('npc set entry',3,'Syntax: .npc set entry $entry\nSwitch selected creature with another entry from creature_template. - New creature.id value not saved to DB.'),
|
||||
|
|
@ -265,6 +296,7 @@ INSERT INTO `command` (`name`, `security`, `help`) VALUES
|
|||
('npc set phase',3,'Syntax: .npc set phase #phasemask\r\n\r\nSelected unit or pet phasemask changed to #phasemask with related world vision update for players. In creature case state saved to DB and persistent. In pet case change active until in game phase changed for owner, owner re-login, or GM-mode enable/disable..'),
|
||||
('npc set spawndist',3,'Syntax: .npc set spawndist #dist\r\n\r\nAdjust spawndistance of selected creature to dist.'),
|
||||
('npc set spawntime',3,'Syntax: .npc set spawntime #time \r\n\r\nAdjust spawntime of selected creature to time.'),
|
||||
('npc tame',2,'Syntax: '),
|
||||
('npc textemote',2,'Syntax: .npc textemote #emoteid\r\n\r\nMake the selected creature to do textemote with an emote of id #emoteid.'),
|
||||
('npc whisper',2,'Syntax: .npc whisper #playerguid #text\r\nMake the selected npc whisper #text to #playerguid.'),
|
||||
('npc yell',2,'Syntax: .npc yell $message\nMake selected creature yell specified message.'),
|
||||
|
|
@ -304,6 +336,8 @@ INSERT INTO `command` (`name`, `security`, `help`) VALUES
|
|||
('reload areatrigger_teleport',3,'Syntax: .reload areatrigger_teleport\nReload areatrigger_teleport table.'),
|
||||
('reload auctions',3,'Syntax: .reload auctions\nReload dynamic data tables from the database.'),
|
||||
('reload autobroadcast',3,'Syntax: .reload autobroadcast\nReload autobroadcast table.'),
|
||||
('reload battleground_template',3,'Syntax: .reload battleground_template\r\nReload Battleground Templates.'),
|
||||
('reload broadcast_text',3,'Syntax: .reload broadcast_text\r\n\r\nReload broadcast_text table.'),
|
||||
('reload command',3,'Syntax: .reload command\nReload command table.'),
|
||||
('reload conditions',3,'Reload conditions table.'),
|
||||
('reload config',3,'Syntax: .reload config\r\n\r\nReload config settings (by default stored in trinityd.conf). Not all settings can be change at reload: some new setting values will be ignored until restart, some values will applied with delay or only to new objects/maps, some values will explicitly rejected to change at reload.'),
|
||||
|
|
@ -319,6 +353,7 @@ INSERT INTO `command` (`name`, `security`, `help`) VALUES
|
|||
('reload event_scripts',3,'Syntax: .reload event_scripts\nReload event_scripts table.'),
|
||||
('reload fishing_loot_template',3,'Syntax: .reload fishing_loot_template\nReload fishing_loot_template table.'),
|
||||
('reload gameobject_loot_template',3,'Syntax: .reload gameobject_loot_template\nReload gameobject_loot_template table.'),
|
||||
('reload gameobject_questender',3,'Syntax: .reload gameobject_questender\\nReload gameobject_questender table.'),
|
||||
('reload gameobject_queststarter',3,'Syntax: .reload gameobject_queststarter\nReload gameobject_queststarter table.'),
|
||||
('reload game_graveyard_zone',3,'Syntax: .reload game_graveyard_zone\nReload game_graveyard_zone table.'),
|
||||
('reload game_tele',3,'Syntax: .reload game_tele\nReload game_tele table.'),
|
||||
|
|
@ -342,6 +377,7 @@ INSERT INTO `command` (`name`, `security`, `help`) VALUES
|
|||
('reload mail_level_reward',3,'Syntax: .reload mail_level_reward\nReload mail_level_reward table.'),
|
||||
('reload mail_loot_template',3,'Syntax: .reload quest_mail_loot_template\nReload quest_mail_loot_template table.'),
|
||||
('reload milling_loot_template',3,'Syntax: .reload milling_loot_template\nReload milling_loot_template table.'),
|
||||
('reload npc_spellclick_spells',3,'Syntax: '),
|
||||
('reload npc_trainer',3,'Syntax: .reload npc_trainer\nReload npc_trainer table.'),
|
||||
('reload npc_vendor',3,'Syntax: .reload npc_vendor\nReload npc_vendor table.'),
|
||||
('reload page_text',3,'Syntax: .reload page_text\nReload page_text table.'),
|
||||
|
|
@ -388,6 +424,7 @@ INSERT INTO `command` (`name`, `security`, `help`) VALUES
|
|||
('revive',2,'Syntax: .revive\r\n\r\nRevive the selected player. If no player is selected, it will revive you.'),
|
||||
('save',0,'Syntax: .save\r\n\r\nSaves your character.'),
|
||||
('saveall',2,'Syntax: .saveall\r\n\r\nSave all characters in game.'),
|
||||
('send',2,'Syntax: send $subcommand\n Type .send to see a list of possible subcommands\n or .help send $subcommand to see info on the subcommand.'),
|
||||
('send items',2,'Syntax: .send items #playername \"#subject\" \"#text\" itemid1[:count1] itemid2[:count2] ... itemidN[:countN]\r\n\r\nSend a mail to a player. Subject and mail text must be in \"\". If for itemid not provided related count values then expected 1, if count > max items in stack then items will be send in required amount stacks. All stacks amount in mail limited to 12.'),
|
||||
('send mail',2,'Syntax: .send mail #playername \"#subject\" \"#text\"\r\n\r\nSend a mail to a player. Subject and mail text must be in \"\".'),
|
||||
('send message',3,'Syntax: .send message $playername $message\r\n\r\nSend screen message to player from ADMINISTRATOR.'),
|
||||
|
|
@ -429,16 +466,25 @@ INSERT INTO `command` (`name`, `security`, `help`) VALUES
|
|||
('ticket close',2,'Usage: .ticket close $ticketid.\r\nCloses the specified ticket. Does not delete permanently.'),
|
||||
('ticket closedlist',2,'Displays a list of closed GM tickets.'),
|
||||
('ticket comment',2,'Usage: .ticket comment $ticketid $comment.\r\nAllows the adding or modifying of a comment to the specified ticket.'),
|
||||
('ticket complete',2,'Syntax: '),
|
||||
('ticket delete',3,'Usage: .ticket delete $ticketid.\r\nDeletes the specified ticket permanently. Ticket must be closed first.'),
|
||||
('ticket escalate',2,'Syntax: '),
|
||||
('ticket escalatedlist',2,'Syntax: '),
|
||||
('ticket list',2,'Displays a list of open GM tickets.'),
|
||||
('ticket onlinelist',2,'Displays a list of open GM tickets whose owner is online.'),
|
||||
('ticket reset',4,'Syntax: .ticket reset\nRemoves all closed tickets and resets the counter, if no pending open tickets are existing.'),
|
||||
('ticket response',2,'Syntax: '),
|
||||
('ticket response append',2,'Syntax: '),
|
||||
('ticket response appendln',2,'Syntax: '),
|
||||
('ticket togglesystem',3,'Syntax: '),
|
||||
('ticket unassign',2,'Usage: .ticket unassign $ticketid.\r\nUnassigns the specified ticket from the current assigned Game Master.'),
|
||||
('ticket viewid',2,'Usage: .ticket viewid $ticketid.\r\nReturns details about specified ticket. Ticket must be open and not deleted.'),
|
||||
('ticket viewname',2,'Usage: .ticket viewname $creatorname. \r\nReturns details about specified ticket. Ticket must be open and not deleted.'),
|
||||
('titles',2,'Syntax: '),
|
||||
('titles add',2,'Syntax: .titles add #title\r\nAdd title #title (id or shift-link) to known titles list for selected player.'),
|
||||
('titles current',2,'Syntax: .titles current #title\r\nSet title #title (id or shift-link) as current selected titl for selected player. If title not in known title list for player then it will be added to list.'),
|
||||
('titles remove',2,'Syntax: .titles remove #title\r\nRemove title #title (id or shift-link) from known titles list for selected player.'),
|
||||
('titles set',2,'Syntax: '),
|
||||
('titles set mask',2,'Syntax: .titles set mask #mask\r\n\r\nAllows user to use all titles from #mask.\r\n\r\n #mask=0 disables the title-choose-field'),
|
||||
('unaura',2,'Syntax: .unaura #spellid\r\n\r\nRemove aura due to spell #spellid from the selected Unit.'),
|
||||
('unban',2,'Syntax: .unban $subcommand\nType .unban to see the list of possible subcommands or .help unban $subcommand to see info on subcommands'),
|
||||
|
|
@ -454,61 +500,15 @@ INSERT INTO `command` (`name`, `security`, `help`) VALUES
|
|||
('unstuck',2,'Syntax: .unstuck $playername [inn/graveyard/startzone]\n\nTeleports specified player to specified location. Default location is player\'s current hearth location.'),
|
||||
('wchange',3,'Syntax: .wchange #weathertype #status\r\n\r\nSet current weather to #weathertype with an intensity of #status.\r\n\r\n#weathertype can be 1 for rain, 2 for snow, and 3 for sand. #status can be 0 for disabled, and 1 for enabled.'),
|
||||
('whispers',1,'Syntax: .whispers on|off\r\nEnable/disable accepting whispers by GM from players. By default use trinityd.conf setting.'),
|
||||
('wp',3,'Syntax: wp $subcommand\n Type .wp to see a list of possible subcommands\n or .help wp $subcommand to see info on the subcommand.'),
|
||||
('wp add',3,'Syntax: .wp add\r\n\r\nAdd a waypoint for the selected creature at your current position.'),
|
||||
('wp event',3,'Syntax: .wp event $subcommand\nType .path event to see the list of possible subcommands or .help path event $subcommand to see info on subcommands.'),
|
||||
('wp load',3,'Syntax: .wp load $pathid\nLoad pathid number for selected creature. Creature must have no waypoint data.'),
|
||||
('wp modify',3,'Syntax: '),
|
||||
('wp reload',3,'Syntax: .wp reload $pathid\nLoad path changes ingame - IMPORTANT: must be applied first for new paths before .wp load #pathid '),
|
||||
('wp show',3,'Syntax: .wp show $option\nOptions:\non $pathid (or selected creature with loaded path) - Show path\noff - Hide path\ninfo $slected_waypoint - Show info for selected waypoint.'),
|
||||
('wp unload',3,'Syntax: .wp unload\nUnload path for selected creature.'),
|
||||
('wpgps',4,'Syntax: .wpgps\n\nOutput current position to sql developer log as partial SQL query to be used in pathing'),
|
||||
('account create',4,'Syntax: .account create $account $password\r\n\r\nCreate account and set password to it.'),
|
||||
('account delete',4,'Syntax: .account delete $account\r\n\r\nDelete account with all characters.'),
|
||||
('account onlinelist',4,'Syntax: .account onlinelist\r\n\r\nShow list of online accounts.'),
|
||||
('account password',0,'Syntax: .account password $old_password $new_password $new_password [$email]\r\n\r\nChange your account password. You may need to check the actual security mode to see if email input is necessary.'),
|
||||
('account set addon',2,'Syntax: .account set addon [$account] #addon\r\n\r\nSet user (possible targeted) expansion addon level allowed. Addon values: 0 - normal, 1 - tbc, 2 - wotlk.'),
|
||||
('account set gmlevel',4,'Syntax: .account set gmlevel [$account] #level [#realmid]\r\n\r\nSet the security level for targeted player (can\'t be used at self) or for account $name to a level of #level on the realm #realmID.\r\n\r\n#level may range from 0 to 3.\r\n\r\n#reamID may be -1 for all realms.'),
|
||||
('account set password',4,'Syntax: .account set password $account $password $password\r\n\r\nSet password for account.'),
|
||||
('account set',2,'Syntax: .account set $subcommand\nType .account set to see the list of possible subcommands or .help account set $subcommand to see info on subcommands'),
|
||||
('account',0,'Syntax: .account\r\n\r\nDisplay the access level of your account and the email adress if you possess the necessary permissions.'),
|
||||
('gm ingame',5,'Syntax: .gm ingame\r\n\r\nDisplay a list of available in game Game Masters.'),
|
||||
('account addon',1,'Syntax: .account addon #addon\nSet expansion addon level allowed. Addon values: 0 - normal, 1 - tbc, 2 - wotlk.'),
|
||||
('mailbox',1,'Syntax: .mailbox\r\n\r\nShow your mailbox content.'),
|
||||
('reload gameobject_questender',3,'Syntax: .reload gameobject_questender\\nReload gameobject_questender table.'),
|
||||
('npc evade',2,'Syntax: .npc evade [reason] [force]\nMakes the targeted NPC enter evade mode.\nDefaults to specifying EVADE_REASON_OTHER, override this by providing the reason string (ex.: .npc evade EVADE_REASON_BOUNDARY).\nSpecify \'force\' to clear any pre-existing evade state before evading - this may cause weirdness, use at your own risk.'),
|
||||
('account lock',0,'Syntax: .account lock [on|off]\n\n Allow login from account only from current used IP or remove this requirement.'),
|
||||
('character',2,'Syntax: character $subcommand\n Type .character to see a list of possible subcommands\n or .help character $subcommand to see info on the subcommand.'),
|
||||
('debug anim',5,'TODO'),
|
||||
('debug entervehicle',3,'Syntax: '),
|
||||
('debug getitemstate',3,'Syntax: '),
|
||||
('debug getitemvalue',3,'Syntax: '),
|
||||
('debug getvalue',3,'Syntax: '),
|
||||
('debug hostil',1,'Syntax: '),
|
||||
('debug itemexpire',3,'Syntax: '),
|
||||
('debug lootrecipient',3,'Syntax: '),
|
||||
('debug los',3,'Syntax: '),
|
||||
('debug play',1,'Syntax: '),
|
||||
('debug send chatmessage',3,'Syntax: '),
|
||||
('debug setitemvalue',3,'Syntax: '),
|
||||
('debug threat',3,'Syntax: '),
|
||||
('debug uws',3,'Syntax: '),
|
||||
('gobject set',3,'Syntax: '),
|
||||
('gobject set state',3,'Syntax: '),
|
||||
('send',2,'Syntax: send $subcommand\n Type .send to see a list of possible subcommands\n or .help send $subcommand to see info on the subcommand.'),
|
||||
('npc set',3,'Syntax: '),
|
||||
('npc near',2,'Syntax: '),
|
||||
('npc tame',2,'Syntax: '),
|
||||
('reload npc_spellclick_spells',3,'Syntax: '),
|
||||
('ticket complete',2,'Syntax: '),
|
||||
('ticket escalate',2,'Syntax: '),
|
||||
('ticket escalatedlist',2,'Syntax: '),
|
||||
('ticket response',2,'Syntax: '),
|
||||
('ticket response append',2,'Syntax: '),
|
||||
('ticket response appendln',2,'Syntax: '),
|
||||
('ticket togglesystem',3,'Syntax: '),
|
||||
('titles',2,'Syntax: '),
|
||||
('titles set',2,'Syntax: '),
|
||||
('wp',3,'Syntax: wp $subcommand\n Type .wp to see a list of possible subcommands\n or .help wp $subcommand to see info on the subcommand.'),
|
||||
('wp modify',3,'Syntax: ');
|
||||
('wpgps',4,'Syntax: .wpgps\n\nOutput current position to sql developer log as partial SQL query to be used in pathing');
|
||||
/*!40000 ALTER TABLE `command` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
|
|
|||
|
|
@ -9548,8 +9548,6 @@ INSERT INTO `conditions` VALUES
|
|||
(15,9062,1,0,1,9,0,11543,0,0,0,0,0,'','Show gossip option only if player has taken quest 11543'),
|
||||
(15,9123,0,0,0,1,0,24755,0,0,1,0,0,'','Gossip Option - Player must not have aura Tricked or Treated'),
|
||||
(15,9123,0,0,0,12,0,12,0,0,0,0,0,'','Gossip Option - Hallow\'s End event must be active'),
|
||||
(15,9143,0,0,0,9,0,11542,0,0,0,0,0,'','Show gossip option if player has quest 11542 but not complete'),
|
||||
(15,9143,0,0,1,9,0,11543,0,0,0,0,0,'','Show gossip option if player has quest 11543 but not complete'),
|
||||
(15,9155,0,0,0,2,0,34842,10,0,1,0,0,'','Only show gossip if player has less then 10 outfits'),
|
||||
(15,9155,0,0,0,9,0,11658,0,0,0,0,0,'','Only show gossip if player has quest Plan B'),
|
||||
(15,9156,0,0,0,2,0,34842,10,0,1,0,0,'','Only show gossip if player has less then 10 outfits'),
|
||||
|
|
|
|||
|
|
@ -6463,7 +6463,7 @@ INSERT INTO `creature` VALUES
|
|||
(6429,3197,1,1,1,4192,1,881.009,-4196.7,-14.0806,0.994838,300,0,0,166,178,0,0,0,0),
|
||||
(6430,3198,1,1,1,4190,1,861.762,-4177.55,-14.0174,0.122173,300,0,0,178,382,0,0,0,0),
|
||||
(6431,3198,1,1,1,4190,1,876.708,-4229.61,-11.1555,5.044,300,0,0,178,382,0,0,0,0),
|
||||
(6432,3197,1,1,1,4192,1,846.259,-4200.13,-10.6926,4.34767,300,0,0,166,178,0,0,0,0),
|
||||
(6432,3197,1,1,1,4192,1,846.259,-4200.13,-10.6926,4.34767,300,0,0,166,178,2,0,0,0),
|
||||
(6433,3199,1,1,1,4194,1,914.509,-4747.24,19.6063,3.66224,300,5,0,178,382,1,0,0,0),
|
||||
(6434,3199,1,1,1,4194,1,943.456,-4724.34,21.3917,4.66289,300,5,0,178,382,1,0,0,0),
|
||||
(6435,3196,1,1,1,4187,1,923.904,-4707.81,22.9414,5.72971,300,0,0,166,178,0,0,0,0),
|
||||
|
|
@ -6486,7 +6486,7 @@ INSERT INTO `creature` VALUES
|
|||
(6452,3113,1,1,1,6088,1,461.106,-4298.42,25.2114,4.92346,300,5,0,148,165,1,0,0,0),
|
||||
(6453,3114,1,1,1,1964,1,461.623,-4169.47,26.8051,5.69883,300,5,0,176,0,1,0,0,0),
|
||||
(6454,3113,1,1,1,6088,1,484.983,-4293.99,22.3683,4.03371,300,10,0,148,165,1,0,0,0),
|
||||
(6455,3203,1,1,1,7128,1,868.614,-4189.56,-14.0285,1.39128,300,0,0,219,537,0,0,0,0),
|
||||
(6455,3203,1,1,1,7128,1,868.614,-4189.56,-14.0285,1.39128,300,0,0,219,537,2,0,0,0),
|
||||
(6456,3204,1,1,1,240,1,1469.35,-4705.08,2.23116,1.0276,300,0,0,178,382,0,0,0,0),
|
||||
(6457,3206,1,1,1,4076,1,-1165.43,-5588.42,13.7373,3.90321,300,0,0,148,165,0,0,0,0),
|
||||
(6458,3189,1,1,1,4073,1,1772.72,-4343.18,-7.81578,0.715585,300,0,0,137,0,0,0,0,0),
|
||||
|
|
@ -64565,11 +64565,11 @@ INSERT INTO `creature` VALUES
|
|||
(64966,18181,530,1,1,0,0,-2704.8,7619.85,12.4231,5.33283,300,0,0,2286,0,0,0,0,0),
|
||||
(64967,18181,530,1,1,0,0,-2681.97,7624.61,5.46131,2.75,300,0,0,2286,0,0,0,0,0),
|
||||
(64968,18181,530,1,1,0,0,-2673.93,7625.38,4.74233,5.16293,300,5,0,2286,0,1,0,0,0),
|
||||
(64969,18187,530,1,1,0,0,9754.78,-7418.59,13.225,0.078558,300,0,0,3052,0,0,0,0,0),
|
||||
(64970,18188,530,1,1,0,0,9752.6,-7419.56,13.2247,0.059895,300,0,0,3052,0,0,0,0,0),
|
||||
(64971,18189,530,1,1,0,0,9752.67,-7423.81,13.1512,0.058053,300,0,0,3052,0,0,0,0,0),
|
||||
(64972,18190,530,1,1,0,0,9751.67,-7421.73,13.1942,0.051757,300,0,0,3052,0,0,0,0,0),
|
||||
(64973,18191,530,1,1,0,0,9754.95,-7421.55,13.1711,0.059813,300,0,0,3052,0,0,0,0,0),
|
||||
(64969,18187,530,1,1,0,0,9817.2,-7268.22,26.2238,0.078558,300,0,0,3052,0,0,0,0,0),
|
||||
(64970,18188,530,1,1,0,0,9824.25,-7272.98,26.2447,0.059895,300,0,0,3052,0,0,0,0,0),
|
||||
(64971,18189,530,1,1,0,0,9822.43,-7267.51,26.2036,0.058053,300,0,0,3052,0,0,0,0,0),
|
||||
(64972,18190,530,1,1,0,0,9824.46,-7270.11,26.2288,0.051757,300,0,0,3052,0,0,0,0,0),
|
||||
(64973,18191,530,1,1,0,0,9820.04,-7272.19,26.4939,0.059813,300,0,0,3052,0,2,0,0,0),
|
||||
(64974,18196,530,1,1,0,0,-879.566,8690.91,251.656,0.645772,300,0,0,42,0,0,0,0,0),
|
||||
(64975,18197,530,1,1,0,0,-393.795,7257.78,54.6158,6.23082,300,0,0,26532,2620,0,0,0,0),
|
||||
(64976,18200,530,1,1,0,1,-1450.88,6341.37,37.3989,1.93731,300,0,0,13972,0,0,0,0,0),
|
||||
|
|
@ -112301,15 +112301,15 @@ INSERT INTO `creature` VALUES
|
|||
(115832,28882,571,1,1,25749,1,6553.98,-4006.03,483.14,3.05433,120,0,0,1,0,0,0,0,0),
|
||||
(115833,28882,571,1,1,25749,1,6554.08,-3890.06,491.293,3.19395,120,0,0,1,0,0,0,0,0),
|
||||
(115834,27347,571,1,1,24574,0,3425.19,-1261.94,125.774,5.41052,300,0,0,53175,17805,0,0,0,0),
|
||||
(115835,24787,571,1,1,22106,0,488.818,-6150.91,186.935,6.23198,300,5,0,9291,0,1,0,0,0),
|
||||
(115836,24787,571,1,1,22106,0,529.735,-6118.45,271.134,0.410752,300,5,0,9291,0,1,0,0,0),
|
||||
(115837,24787,571,1,1,22106,0,663.593,-6127.31,192.911,4.37192,300,5,0,9291,0,1,0,0,0),
|
||||
(115835,24787,571,1,1,22106,0,491.597,-6158.39,144.104,6.23198,300,0,0,9291,0,2,0,0,0),
|
||||
(115836,24787,571,1,1,22106,0,520.622,-6137.84,169.302,0.410752,300,0,0,9291,0,2,0,0,0),
|
||||
(115837,24787,571,1,1,22106,0,596.877,-6114.98,271.134,4.37192,300,0,0,9291,0,2,0,0,0),
|
||||
(115839,32723,571,1,1,24916,1,5858.88,795.468,661.277,3.96296,300,5,0,10635,3561,2,0,0,0),
|
||||
(115841,25299,571,1,1,23062,1,2238.34,5239.22,21.5879,5.06145,300,0,0,7984,0,0,0,0,0),
|
||||
(115842,29907,571,1,1,26633,1,6097.56,-1071.26,404.496,0.349066,300,0,0,11770,0,0,0,0,0),
|
||||
(115843,24787,571,1,1,22106,0,331.252,-6052.42,217.156,5.39705,300,5,0,9291,0,1,0,0,0),
|
||||
(115844,24787,571,1,1,22106,0,392.232,-6082.91,301.641,5.14466,300,5,0,9291,0,1,0,0,0),
|
||||
(115845,24787,571,1,1,22106,0,379.198,-6161.35,78.9325,2.63313,300,5,0,9291,0,1,0,0,0),
|
||||
(115843,24787,571,1,1,22106,0,290.895,-6070.15,84.3692,5.39705,300,0,0,9291,0,2,0,0,0),
|
||||
(115844,24787,571,1,1,22106,0,389.949,-6113.93,217.156,5.14466,300,0,0,9291,0,2,0,0,0),
|
||||
(115845,24787,571,1,1,22106,0,360.916,-6061.68,302.84,2.63313,300,0,0,9291,0,2,0,0,0),
|
||||
(115848,23763,571,1,1,21773,0,1946.74,-4523.45,209.188,4.46746,300,5,0,3992,0,1,0,0,0),
|
||||
(115849,23763,571,1,1,21773,0,1920.15,-4493.95,202.018,4.13127,300,5,0,3992,0,1,0,0,0),
|
||||
(115850,23763,571,1,1,21773,0,1928.66,-4568.97,198.808,4.33188,300,5,0,3992,0,1,0,0,0),
|
||||
|
|
|
|||
|
|
@ -1448,8 +1448,8 @@ INSERT INTO `creature_addon` VALUES
|
|||
(6429,0,0,3,4097,0,NULL),
|
||||
(6430,0,0,3,4097,0,NULL),
|
||||
(6431,0,0,8,4097,0,NULL),
|
||||
(6432,0,0,0,4097,0,NULL),
|
||||
(6455,0,0,0,4097,193,NULL),
|
||||
(6432,643200,0,0,0,0,'0'),
|
||||
(6455,645500,0,0,4097,193,NULL),
|
||||
(6456,0,0,0,4097,0,'20798'),
|
||||
(6458,0,0,0,4097,0,NULL),
|
||||
(6459,0,0,0,257,0,NULL),
|
||||
|
|
@ -18007,6 +18007,7 @@ INSERT INTO `creature_addon` VALUES
|
|||
(64940,0,0,0,4097,28,NULL),
|
||||
(64953,0,0,0,4098,0,NULL),
|
||||
(64959,0,0,0,4097,0,'8734'),
|
||||
(64973,649730,0,0,1,0,''),
|
||||
(65275,0,0,0,1,0,NULL),
|
||||
(65325,0,0,0,1,0,NULL),
|
||||
(65350,0,0,0,1,0,NULL),
|
||||
|
|
@ -28117,8 +28118,14 @@ INSERT INTO `creature_addon` VALUES
|
|||
(115831,0,0,0,1,375,'52617 52619 54647'),
|
||||
(115832,0,0,0,1,375,'52614 52619 54647'),
|
||||
(115833,0,0,0,1,375,'52618 52619 54647'),
|
||||
(115835,1158350,0,0,1,0,'43775'),
|
||||
(115836,1158360,0,0,1,0,'43775'),
|
||||
(115837,1158370,0,0,1,0,'43775'),
|
||||
(115839,1158390,0,0,0,0,NULL),
|
||||
(115841,0,0,0,4097,1,NULL),
|
||||
(115843,1158430,0,0,1,0,'43775'),
|
||||
(115844,1158440,0,0,1,0,'43775'),
|
||||
(115845,1158450,0,0,1,0,'43775'),
|
||||
(115879,1158790,0,0,0,0,NULL),
|
||||
(115886,1158860,0,0,0,0,NULL),
|
||||
(115896,1158960,0,0,0,0,NULL),
|
||||
|
|
|
|||
|
|
@ -9,13 +9,13 @@ DROP TABLE IF EXISTS `creature_equip_template`;
|
|||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `creature_equip_template`
|
||||
(
|
||||
`entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`id` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`itemEntry1` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`itemEntry2` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`itemEntry3` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`CreatureID` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`ID` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
||||
`ItemID1` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`ItemID2` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`ItemID3` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '1',
|
||||
PRIMARY KEY (`entry`,`id`)
|
||||
PRIMARY KEY (`CreatureID`,`ID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
|
|
|
|||
|
|
@ -9,8 +9,8 @@ DROP TABLE IF EXISTS `creature_formations`;
|
|||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `creature_formations`
|
||||
(
|
||||
`leaderGUID` int(10) unsigned NOT NULL,
|
||||
`memberGUID` int(10) unsigned NOT NULL,
|
||||
`leaderGUID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`memberGUID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`dist` float unsigned NOT NULL,
|
||||
`angle` float unsigned NOT NULL,
|
||||
`groupAI` int(10) unsigned NOT NULL,
|
||||
|
|
@ -279,6 +279,11 @@ INSERT INTO `creature_formations` VALUES
|
|||
(62071,62072,3,270,2,0,0),
|
||||
(62078,62078,0,0,2,0,0),
|
||||
(62078,62079,3,270,2,0,0),
|
||||
(64973,64969,3,90,2,0,0),
|
||||
(64973,64970,3,150,2,0,0),
|
||||
(64973,64971,3,230,2,0,0),
|
||||
(64973,64972,3,190,2,0,0),
|
||||
(64973,64973,0,0,2,0,0),
|
||||
(65508,65506,10,0,2,0,0),
|
||||
(65508,65507,20,0,2,0,0),
|
||||
(65508,65508,0,0,2,0,0),
|
||||
|
|
|
|||
|
|
@ -125763,6 +125763,7 @@ INSERT INTO `creature_loot_template` VALUES
|
|||
(6501,9295,0.03,1,0,1,1),
|
||||
(6501,10315,0.1,1,0,1,1),
|
||||
(6501,11018,31.08,1,0,1,1),
|
||||
(6501,11114,30,1,0,1,1),
|
||||
(6501,11116,2.3121,1,0,1,1),
|
||||
(6501,11184,0.2,1,0,1,1),
|
||||
(6501,11185,0.13,1,0,1,1),
|
||||
|
|
@ -125794,6 +125795,7 @@ INSERT INTO `creature_loot_template` VALUES
|
|||
(6502,7910,0.2967,1,0,1,1),
|
||||
(6502,8838,0.1,1,0,1,1),
|
||||
(6502,11018,32.6,1,0,1,1),
|
||||
(6502,11114,30,1,0,1,1),
|
||||
(6502,11116,1.1869,1,0,1,1),
|
||||
(6502,11184,0.26,1,0,1,1),
|
||||
(6502,11185,0.22,1,0,1,1),
|
||||
|
|
@ -125830,6 +125832,7 @@ INSERT INTO `creature_loot_template` VALUES
|
|||
(6503,7990,0.03,1,0,1,1),
|
||||
(6503,8838,0.12,1,0,1,1),
|
||||
(6503,11018,32.34,1,0,1,1),
|
||||
(6503,11114,30,1,0,1,1),
|
||||
(6503,11116,0.5848,1,0,1,1),
|
||||
(6503,11184,0.26,1,0,1,1),
|
||||
(6503,11185,0.38,1,0,1,1),
|
||||
|
|
@ -125865,6 +125868,7 @@ INSERT INTO `creature_loot_template` VALUES
|
|||
(6504,9295,0.28,1,0,1,1),
|
||||
(6504,10608,0.14,1,0,1,1),
|
||||
(6504,11018,28.94,1,0,1,1),
|
||||
(6504,11114,30,1,0,1,1),
|
||||
(6504,11116,3.04,1,0,1,1),
|
||||
(6504,11186,0.14,1,0,1,1),
|
||||
(6504,11188,0.28,1,0,1,1),
|
||||
|
|
@ -155710,12 +155714,12 @@ INSERT INTO `creature_loot_template` VALUES
|
|||
(8957,7989,0.02,1,0,1,1),
|
||||
(8957,7990,0.02,1,0,1,1),
|
||||
(8957,7993,0.02,1,0,1,1),
|
||||
(8957,8146,6.8762,1,0,1,1),
|
||||
(8957,8146,6.8762,1,0,1,1);
|
||||
INSERT INTO `creature_loot_template` VALUES
|
||||
(8957,8389,0.02,1,0,1,1),
|
||||
(8957,8390,0.02,1,0,1,1),
|
||||
(8957,8836,0.02,1,0,1,1),
|
||||
(8957,8838,0.04,1,0,1,1);
|
||||
INSERT INTO `creature_loot_template` VALUES
|
||||
(8957,8838,0.04,1,0,1,1),
|
||||
(8957,8846,0.04,1,0,1,1),
|
||||
(8957,9295,0.02,1,0,1,1),
|
||||
(8957,9298,0.02,1,0,1,1),
|
||||
|
|
@ -157307,6 +157311,7 @@ INSERT INTO `creature_loot_template` VALUES
|
|||
(9162,10603,0.02,1,0,1,1),
|
||||
(9162,10606,0.02,1,0,1,1),
|
||||
(9162,11018,17.767,1,0,1,1),
|
||||
(9162,11114,30,1,0,1,1),
|
||||
(9162,11116,1.904,1,0,1,1),
|
||||
(9162,11184,0.04,1,0,1,1),
|
||||
(9162,11185,0.036,1,0,1,1),
|
||||
|
|
@ -157367,6 +157372,7 @@ INSERT INTO `creature_loot_template` VALUES
|
|||
(9163,10315,0.02,1,0,1,1),
|
||||
(9163,10320,0.02,1,0,1,1),
|
||||
(9163,11018,34.22,1,0,1,1),
|
||||
(9163,11114,30,1,0,1,1),
|
||||
(9163,11116,1.1497,1,0,1,1),
|
||||
(9163,11184,0.04,1,0,1,1),
|
||||
(9163,11185,0.04,1,0,1,1),
|
||||
|
|
@ -157452,6 +157458,7 @@ INSERT INTO `creature_loot_template` VALUES
|
|||
(9164,10315,0.02,1,0,1,1),
|
||||
(9164,10320,0.02,1,0,1,1),
|
||||
(9164,11018,17.083,1,0,1,1),
|
||||
(9164,11114,30,1,0,1,1),
|
||||
(9164,11116,0.8481,1,0,1,1),
|
||||
(9164,11184,0.02,1,0,1,1),
|
||||
(9164,11185,0.02,1,0,1,1),
|
||||
|
|
@ -193028,14 +193035,14 @@ INSERT INTO `creature_loot_template` VALUES
|
|||
(12158,18234,0.56,1,0,1,1),
|
||||
(12158,18335,0.56,1,0,1,1),
|
||||
(12158,24016,1,1,1,-24016,1),
|
||||
(12158,24017,0.5,1,1,-24017,1),
|
||||
(12158,24017,0.5,1,1,-24017,1);
|
||||
INSERT INTO `creature_loot_template` VALUES
|
||||
(12158,24024,5,1,1,-24024,1),
|
||||
(12158,24031,1,1,1,-24031,1),
|
||||
(12158,24033,1,1,1,-24033,1),
|
||||
(12159,5760,0.5,1,0,1,1),
|
||||
(12159,7909,0.72,1,0,1,1),
|
||||
(12159,7910,0.5,1,0,1,1);
|
||||
INSERT INTO `creature_loot_template` VALUES
|
||||
(12159,7910,0.5,1,0,1,1),
|
||||
(12159,8766,2.24,1,0,1,1),
|
||||
(12159,8952,2.74,1,0,1,1),
|
||||
(12159,10305,0.1,1,0,1,1),
|
||||
|
|
@ -229576,13 +229583,13 @@ INSERT INTO `creature_loot_template` VALUES
|
|||
(21021,19271,0.0085,1,0,1,1),
|
||||
(21021,19280,0.0107,1,0,1,1),
|
||||
(21021,21877,35.6969,1,0,1,3),
|
||||
(21021,22577,24.569,1,0,1,2),
|
||||
(21021,22577,24.569,1,0,1,2);
|
||||
INSERT INTO `creature_loot_template` VALUES
|
||||
(21021,24001,5,1,1,-24001,1),
|
||||
(21021,24002,5,1,1,-24002,1),
|
||||
(21021,24007,1,1,1,-24007,1),
|
||||
(21021,24009,1,1,1,-24009,1),
|
||||
(21021,24010,0.5,1,1,-24010,1);
|
||||
INSERT INTO `creature_loot_template` VALUES
|
||||
(21021,24010,0.5,1,1,-24010,1),
|
||||
(21021,24012,0.5,1,1,-24012,1),
|
||||
(21021,24035,2,1,1,-24035,1),
|
||||
(21021,27854,4.3488,1,0,1,1),
|
||||
|
|
@ -266923,14 +266930,14 @@ INSERT INTO `creature_loot_template` VALUES
|
|||
(25728,33430,0.1,1,0,1,1),
|
||||
(25728,33431,0.1,1,0,1,1),
|
||||
(25728,33437,0.1,1,0,1,1),
|
||||
(25728,33438,0.1,1,0,1,1),
|
||||
(25728,33438,0.1,1,0,1,1);
|
||||
INSERT INTO `creature_loot_template` VALUES
|
||||
(25728,33439,0.2,1,0,1,1),
|
||||
(25728,33440,0.1,1,0,1,1),
|
||||
(25728,33444,3.8,1,0,1,1),
|
||||
(25728,33454,7.4,1,0,1,1),
|
||||
(25728,33461,0.05,1,0,1,1),
|
||||
(25728,35492,-1,1,0,1,1);
|
||||
INSERT INTO `creature_loot_template` VALUES
|
||||
(25728,35492,-1,1,0,1,1),
|
||||
(25728,35586,-100,1,0,1,1),
|
||||
(25728,35964,0.05,1,0,1,1),
|
||||
(25728,35965,0.2,1,0,1,1),
|
||||
|
|
@ -304671,14 +304678,14 @@ INSERT INTO `creature_loot_template` VALUES
|
|||
(28124,33362,0.05,1,0,1,1),
|
||||
(28124,33363,0.05,1,0,1,1),
|
||||
(28124,33364,0.05,1,0,1,1),
|
||||
(28124,33366,0.05,1,0,1,1),
|
||||
(28124,33366,0.05,1,0,1,1);
|
||||
INSERT INTO `creature_loot_template` VALUES
|
||||
(28124,33367,0.05,1,0,1,1),
|
||||
(28124,33368,0.05,1,0,1,1),
|
||||
(28124,33369,0.05,1,0,1,1),
|
||||
(28124,33371,0.05,1,0,1,1),
|
||||
(28124,33372,0.05,1,0,1,1),
|
||||
(28124,33373,0.1,1,0,1,1);
|
||||
INSERT INTO `creature_loot_template` VALUES
|
||||
(28124,33373,0.1,1,0,1,1),
|
||||
(28124,33374,0.05,1,0,1,1),
|
||||
(28124,33375,0.1,1,0,1,1),
|
||||
(28124,33376,0.1,1,0,1,1),
|
||||
|
|
|
|||
|
|
@ -9,12 +9,12 @@ DROP TABLE IF EXISTS `creature_model_info`;
|
|||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `creature_model_info`
|
||||
(
|
||||
`modelid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`bounding_radius` float NOT NULL DEFAULT '0',
|
||||
`combat_reach` float NOT NULL DEFAULT '0',
|
||||
`gender` tinyint(3) unsigned NOT NULL DEFAULT '2',
|
||||
`modelid_other_gender` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`modelid`)
|
||||
`DisplayID` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`BoundingRadius` float NOT NULL DEFAULT '0',
|
||||
`CombatReach` float NOT NULL DEFAULT '0',
|
||||
`Gender` tinyint(3) unsigned NOT NULL DEFAULT '2',
|
||||
`DisplayID_Other_Gender` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`DisplayID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Creature System (Model related info)';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
|
|
|
|||
|
|
@ -5987,6 +5987,7 @@ INSERT INTO `creature_queststarter` VALUES
|
|||
(26473,12080),
|
||||
(26484,12279),
|
||||
(26500,12007),
|
||||
(26500,12238),
|
||||
(26501,12006),
|
||||
(26501,12013),
|
||||
(26504,12100),
|
||||
|
|
|
|||
|
|
@ -6173,7 +6173,7 @@ INSERT INTO `creature_template` VALUES
|
|||
(7856,0,0,0,0,0,6948,6949,6952,374,'Southsea Freebooter',NULL,NULL,0,44,45,0,230,0,1,1.14286,1,0,76,100,0,184,1,2000,2000,1,262144,2048,0,0,0,0,0,0,52,76,17,7,0,7856,7856,0,0,0,0,0,0,0,6660,0,0,0,0,0,0,0,0,0,81,111,'SmartAI',1,1,1,1.2,1,1,0,20021,20519,0,0,0,0,0,1,0,0,'',12340),
|
||||
(7857,0,0,0,0,0,6938,6939,6940,6941,'Southsea Dock Worker',NULL,NULL,0,44,45,0,230,0,1,1.14286,1,0,76,100,0,184,1,2000,2000,1,0,2048,0,0,0,0,0,0,52,76,17,7,0,7857,7857,0,0,0,0,0,0,0,3148,0,0,0,0,0,0,0,0,0,81,111,'SmartAI',1,1,1,1.2,1,1,0,20021,20519,0,0,0,0,0,1,0,0,'',12340),
|
||||
(7858,0,0,0,0,0,6950,6951,6953,6954,'Southsea Swashbuckler',NULL,NULL,0,44,45,0,230,0,1,1.14286,1,0,76,100,0,184,1,2000,2000,1,0,2048,0,0,0,0,0,0,52,76,17,7,0,7858,7858,0,0,0,0,0,0,0,6713,0,0,0,0,0,0,0,0,0,81,111,'SmartAI',1,1,1,1.2,1,1,0,20021,20519,0,0,0,0,0,1,0,0,'',12340),
|
||||
(7863,0,0,0,0,0,6908,0,0,0,'Dream Vision',NULL,NULL,0,1,1,0,35,0,0.91,1.14286,1,0,2,2,0,24,1,2000,2200,1,0,2048,0,0,0,0,0,0,1,1,100,10,9216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,1,1,1,0,0,0,0,0,0,0,144,1,0,0,'',12340),
|
||||
(7863,0,0,0,0,0,6908,0,0,0,'Dream Vision',NULL,NULL,0,1,1,0,35,0,0.91,1.14286,1,0,2,2,0,24,1,2000,2200,1,0,2048,0,0,0,0,0,0,1,1,100,10,9216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,1,1,1,0,0,0,0,0,0,0,144,1,0,128,'',12340),
|
||||
(7864,0,0,0,0,0,146,0,0,0,'Lingering Highborne',NULL,NULL,0,48,50,0,21,0,1.1,1.14286,1,0,85,112,0,206,1,2000,2000,1,0,2048,0,0,0,0,0,0,58,86,20,6,0,7864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,129,'',1,3,1,1.25,1,1,0,0,0,0,0,0,0,0,1,8388624,0,'',12340),
|
||||
(7865,0,0,0,0,0,7859,7860,7861,7862,'Wildhammer Sentry',NULL,NULL,0,65,65,1,1054,2,1,1.14286,1,0,200,281,0,278,1,2000,2000,1,0,2048,0,0,0,0,0,0,166,246,35,7,0,7865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,1.3,1,1,0,0,0,0,0,0,0,0,1,0,0,'',12340),
|
||||
(7866,0,0,0,0,0,6917,0,0,0,'Peter Galen','Dragonscale Leatherworking Trainer',NULL,3067,50,50,0,12,83,1,1.14286,1,0,85,112,0,206,1,2000,2000,1,4608,2048,0,0,2,0,0,0,58,86,20,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,1.25,1,1,0,0,0,0,0,0,0,0,1,0,2,'npc_prof_leather',12340),
|
||||
|
|
@ -18797,7 +18797,7 @@ INSERT INTO `creature_template` VALUES
|
|||
(24784,0,0,0,0,0,22636,0,0,0,'Scuttle Frostprow','','',9012,70,70,2,1888,3,1,1.14286,1,0,248,363,0,135,1,2000,2000,8,0,2048,0,0,0,0,0,0,233,347,28,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,1,1,1,0,0,0,0,0,0,0,0,1,0,0,'',12340),
|
||||
(24785,0,0,0,0,0,24932,0,0,0,'Big Roy','','',0,71,71,2,16,0,0.6,1,1,0,299,426,0,308,1,2000,2000,1,32768,2048,0,0,0,0,0,0,262,389,48,1,0,24785,0,70202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,1,1,1,0,34122,0,0,0,0,0,44,1,0,0,'',12340),
|
||||
(24786,0,0,0,0,0,24927,0,0,0,'Reef Bull','','',0,70,70,2,15,0,1,1,1,0,252,357,0,304,1,2000,2000,1,0,2048,0,0,0,0,0,0,215,320,44,1,0,24786,0,70202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'SmartAI',0,3,1,1,1,1,0,0,0,0,0,0,0,0,1,0,0,'',12340),
|
||||
(24787,0,0,0,0,0,22106,0,0,0,'Fjord Hawk Matriarch','','',0,71,71,2,1953,0,1,2.57143,1,0,299,426,0,308,1,2000,2000,1,0,2048,0,26,0,0,0,0,262,389,48,1,1,24787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,1,1,1,0,0,0,0,0,0,0,210,1,0,0,'',12340),
|
||||
(24787,0,0,0,0,0,22106,0,0,0,'Fjord Hawk Matriarch','','',0,71,71,2,1953,0,1,2.57143,1,0,299,426,0,308,1,2000,2000,1,256,2048,0,26,0,0,0,0,262,389,48,1,1,24787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,5,1,1,1,1,0,0,0,0,0,0,0,210,1,0,0,'',12340),
|
||||
(24788,0,0,0,0,0,22638,0,0,0,'Jack Adams','','',9025,70,70,2,35,0,1,1.14286,1,0,252,357,0,304,1,2000,2000,1,0,2048,0,0,0,0,0,0,215,320,44,7,0,24788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,1733,'SmartAI',0,3,1,1,1,1,0,0,0,0,0,0,0,0,1,0,0,'',12340),
|
||||
(24789,0,0,0,0,0,20089,0,0,0,'Forlorn Soul','','',0,70,71,2,21,0,1,1.14286,1,0,296,424,0,290,1,2000,2000,2,32768,2048,0,0,0,0,0,0,260,387,37,6,0,24789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,1,1,1,0,42108,0,0,0,0,0,0,1,8388624,0,'',12340),
|
||||
(24790,0,0,0,0,0,1279,0,0,0,'Black Conrad\'s Ghost','','',0,71,71,2,16,0,1,1.14286,1,0,299,426,0,308,1,2000,2000,1,0,2048,0,0,0,0,0,0,262,389,48,6,0,24790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'SmartAI',0,3,1,1,1,1,0,34118,0,0,0,0,0,0,1,8388624,0,'',12340),
|
||||
|
|
@ -19096,9 +19096,9 @@ INSERT INTO `creature_template` VALUES
|
|||
(25087,0,0,0,0,0,22792,22793,22794,22795,'Dawnblade Reservist','','',0,70,70,1,16,0,1,1.14286,1,0,234,331,0,286,1,2000,2000,2,0,2048,0,0,0,0,0,0,198,295,33,7,8,24976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1180,1443,'SmartAI',0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,0,0,'',12340),
|
||||
(25088,0,0,0,0,0,22904,0,0,0,'Captain Valindria','','',9088,70,70,1,1960,3,1,1.14286,1,0,252,357,0,304,1,2000,2000,1,0,2048,0,0,0,0,0,0,215,320,44,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,0,2,'',12340),
|
||||
(25089,0,0,0,0,0,22892,0,0,0,'Galley Chief Steelbelly','The Maiden\'s Fancy',NULL,0,65,65,0,120,128,1,1.14286,1,0,200,281,0,278,1,2000,2000,1,768,2048,0,0,0,0,0,0,166,246,35,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,1,1,1,0,0,0,0,0,0,0,0,1,0,0,'',12340),
|
||||
(25090,0,0,0,0,0,16480,21072,0,0,'Sin\'Loren Credit','','',0,70,70,0,35,0,1,1.14286,1,0,2,2,0,24,1,2000,2000,1,0,2048,0,0,0,0,0,0,1,1,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,4,1,1.35,1,1,0,0,0,0,0,0,0,0,1,0,128,'',12340),
|
||||
(25091,0,0,0,0,0,16480,21072,0,0,'Bloodoath Credit','','',0,70,70,0,35,0,1,1.14286,1,0,2,2,0,24,1,2000,2000,1,0,2048,0,0,0,0,0,0,1,1,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,4,1,1.35,1,1,0,0,0,0,0,0,0,0,1,0,128,'',12340),
|
||||
(25092,0,0,0,0,0,16480,21072,0,0,'Dawnchaser Credit','','',0,70,70,0,35,0,1,1.14286,1,0,2,2,0,24,1,2000,2000,1,0,2048,0,0,0,0,0,0,1,1,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,4,1,1.35,1,1,0,0,0,0,0,0,0,0,1,0,128,'',12340),
|
||||
(25090,0,0,0,0,0,16480,21072,0,0,'Sin\'Loren Credit','','',0,70,70,0,35,0,1,1.14286,1,0,2,2,0,24,1,2000,2000,1,0,2048,0,0,0,0,0,0,1,1,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'SmartAI',0,4,1,1.35,1,1,0,0,0,0,0,0,0,0,1,0,128,'',12340),
|
||||
(25091,0,0,0,0,0,16480,21072,0,0,'Bloodoath Credit','','',0,70,70,0,35,0,1,1.14286,1,0,2,2,0,24,1,2000,2000,1,0,2048,0,0,0,0,0,0,1,1,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'SmartAI',0,4,1,1.35,1,1,0,0,0,0,0,0,0,0,1,0,128,'',12340),
|
||||
(25092,0,0,0,0,0,16480,21072,0,0,'Dawnchaser Credit','','',0,70,70,0,35,0,1,1.14286,1,0,2,2,0,24,1,2000,2000,1,0,2048,0,0,0,0,0,0,1,1,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'SmartAI',0,4,1,1.35,1,1,0,0,0,0,0,0,0,0,1,0,128,'',12340),
|
||||
(25093,0,0,0,0,0,22893,0,0,0,'First Mate Masker','The Maiden\'s Fancy',NULL,9083,38,38,0,120,0,1,1.14286,1,0,53,70,0,128,1,2000,2000,1,768,2048,0,0,0,0,0,0,36,53,13,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,1,1,1,0,0,0,0,0,0,0,0,1,0,0,'',12340),
|
||||
(25094,0,0,0,0,0,22887,0,0,0,'Navigator Tah\'re','The Maiden\'s Fancy',NULL,0,28,28,0,120,0,1,1.14286,1,0,39,53,0,96,1,2000,2000,1,768,2048,0,0,0,0,0,0,27,40,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,1,1,1,0,0,0,0,0,0,0,0,1,0,0,'',12340),
|
||||
(25095,0,0,0,0,0,22888,0,0,0,'Crewman Springwidget','The Maiden\'s Fancy',NULL,0,26,26,0,120,0,1,1.14286,1,0,37,49,0,90,1,2000,2000,1,768,2048,0,0,0,0,0,0,25,37,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,1,1,1,0,0,0,0,0,0,0,0,1,0,0,'',12340),
|
||||
|
|
@ -21960,7 +21960,7 @@ INSERT INTO `creature_template` VALUES
|
|||
(28166,0,0,0,0,0,17612,0,0,0,'Unstable Sphere','','',0,80,80,2,16,0,2.4,0.857143,1,0,422,586,0,642,1,2000,0,1,33685504,2048,8,0,0,0,0,0,345,509,103,10,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,0.8,1,1,0,0,0,0,0,0,0,106,1,0,0,'npc_oculus_unstable_sphere',12340),
|
||||
(28167,0,0,0,0,0,25168,25169,25311,25312,'Stratholme Citizen','','',0,77,79,0,190,0,1,1.14286,1,0,404,564,0,582,1,2000,0,1,256,2048,8,0,0,0,0,0,334,494,95,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,0.3,1,1,0,0,0,0,0,0,0,96,1,0,0,'npc_cos_stratholme_citizien',12340),
|
||||
(28168,0,0,0,0,0,161,0,0,0,'Guerrero (1)','','',0,72,72,1,190,0,1.2,1.14286,1,1,307,438,0,314,5.9,1200,2000,1,0,2048,0,1,0,0,0,0,270,401,53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,4.5,1,1,0,0,0,0,0,0,0,144,1,3405,0,'',12340),
|
||||
(28169,0,0,0,0,0,25171,25172,25313,25314,'Stratholme Resident','','',0,78,79,0,2078,0,1,1.14286,1,0,404,564,0,582,1,2000,0,1,256,2048,8,0,0,0,0,0,334,494,95,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,0.3,1,1,0,0,0,0,0,0,0,96,1,0,0,'npc_cos_stratholme_citizien',12340),
|
||||
(28169,0,0,0,0,0,25171,25172,25313,25314,'Stratholme Resident','','',0,78,79,0,190,0,1,1.14286,1,0,404,564,0,582,1,2000,0,1,256,2048,8,0,0,0,0,0,334,494,95,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,0.3,1,1,0,0,0,0,0,0,0,96,1,0,0,'npc_cos_stratholme_citizien',12340),
|
||||
(28170,0,0,0,0,0,16053,0,0,0,'Frosthowl Screecher','','',0,75,76,2,14,0,1,2.14286,1,0,352,499,0,408,1,2000,2000,2,0,2048,0,0,0,0,0,0,302,449,57,6,0,28170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'SmartAI',0,7,1,1,1,1,0,38642,42108,0,0,0,0,188,1,8388624,0,'',12340),
|
||||
(28171,0,0,0,0,0,25124,0,0,0,'Don Carlos (1)','','',0,72,72,1,1736,0,1.2,1.14286,1,1,307,438,0,314,13,2000,2000,1,0,2048,0,0,0,0,0,0,270,401,53,7,2048,28171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6600,10400,'',0,3,1,15,1,1,0,38329,0,0,0,0,0,0,1,650854271,2097153,'',12340),
|
||||
(28172,0,0,0,0,0,25174,0,0,0,'Kunz\'s Warhorse','','',0,77,77,0,2070,0,1,1.14286,1,0,2,2,0,24,1,2000,2000,1,0,2048,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,1,1,1,0,0,0,0,0,0,0,140,1,0,0,'',12340),
|
||||
|
|
@ -28442,7 +28442,7 @@ INSERT INTO `creature_template` VALUES
|
|||
(36789,38174,0,0,0,0,30318,0,0,0,'Valithria Dreamwalker','','',0,83,83,2,1665,0,1,1.14286,1,3,509,683,0,805,35,2000,2000,1,536870912,2048,8,0,0,0,0,0,371,535,135,2,67113036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,860.524,1,1,0,0,0,0,0,0,0,0,0,650854271,2097153,'boss_valithria_dreamwalker',12340),
|
||||
(36791,38169,38721,38722,0,0,22773,0,0,0,'Blazing Skeleton','','',0,83,83,2,16,0,1,1.14286,1,1,4342,5920,0,300,4,2000,2000,2,0,2048,0,0,0,0,0,0,365,529,98,6,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,6,20,1,0,0,0,0,0,0,0,0,1,550189887,0,'npc_blazing_skeleton',12340),
|
||||
(36792,37658,0,0,0,0,30340,30341,30342,0,'[PH] Unused Quarry Overseer','Host of Suffering','',0,1,1,0,35,0,1,1.14286,1,1,0,0,0,0,1,2000,2000,1,0,2048,0,0,0,0,0,0,0,0,0,6,2048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,30,1,1,0,0,0,0,0,0,0,0,1,8388624,0,'',12340),
|
||||
(36794,0,0,0,0,0,27982,0,0,0,'Scourgelord Tyrannus','','',0,82,82,2,21,0,3,3,1,1,463,640,0,726,7.5,2000,0,2,832,2048,8,0,0,0,0,0,360,520,91,6,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,551,0,0,'',0,4,1,8,1,1,0,0,0,0,0,0,0,0,1,8388624,0,'npc_pos_tyrannus_events',12340),
|
||||
(36794,0,0,0,0,0,30277,0,0,0,'Scourgelord Tyrannus','','',0,82,82,2,21,0,3,3,0.5,1,463,640,0,726,7.5,2000,0,2,832,2048,8,0,0,0,0,0,360,520,91,6,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,551,0,0,'',0,4,1,8,1,1,0,0,0,0,0,0,0,0,1,8388624,0,'npc_pos_tyrannus_events',12340),
|
||||
(36795,0,0,0,0,0,11686,0,0,0,'Scourgelord Tyrannus','','',0,82,82,2,35,0,2,1.5873,1,1,463,640,0,726,7.5,2000,0,2,832,2048,8,0,0,0,0,0,360,520,91,6,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,551,0,0,'NullCreatureAI',0,4,1,8,1,1,0,0,0,0,0,0,0,0,1,0,0,'',12340),
|
||||
(36796,37657,0,0,0,0,9785,0,0,0,'Corrupted Champion','','',0,80,80,0,1771,0,1,1,1,0,300,400,0,300,1,0,0,1,0,2048,8,0,0,0,0,0,1,1,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,1,1,1,0,0,0,0,0,0,0,0,1,8388624,0,'',12340),
|
||||
(36804,0,0,0,0,0,31658,0,0,0,'Matt\'s Test Priest','','',0,80,80,2,35,0,1,1.14286,1,0,0,0,0,0,1,2000,2000,1,0,2048,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,1.8,2,1,0,0,0,0,0,0,0,0,1,0,0,'',12340),
|
||||
|
|
|
|||
|
|
@ -1437,7 +1437,7 @@ INSERT INTO `creature_template_addon` VALUES
|
|||
(4262,0,0,0,4097,0,NULL),
|
||||
(4265,0,0,0,4097,0,NULL),
|
||||
(4266,0,0,0,4097,0,NULL),
|
||||
(4277,0,0,0,10241,0,NULL),
|
||||
(4277,0,0,0,10241,0,'2585'),
|
||||
(4280,0,0,0,4097,0,''),
|
||||
(4281,0,0,0,4097,0,''),
|
||||
(4282,0,0,0,4097,0,''),
|
||||
|
|
@ -6444,7 +6444,7 @@ INSERT INTO `creature_template_addon` VALUES
|
|||
(24747,0,0,1,1,0,''),
|
||||
(24752,0,0,1,1,0,''),
|
||||
(24768,0,10670,0,0,0,NULL),
|
||||
(24783,0,0,50331648,0,0,''),
|
||||
(24783,0,0,0,1,0,'43775'),
|
||||
(24795,0,0,3,0,0,NULL),
|
||||
(24808,0,0,7,0,0,'29266'),
|
||||
(24818,0,0,0,4097,0,''),
|
||||
|
|
@ -8443,7 +8443,7 @@ INSERT INTO `creature_template_addon` VALUES
|
|||
(36776,0,0,0,1,0,NULL),
|
||||
(36778,0,0,3,1,0,NULL),
|
||||
(36789,0,0,0,1,0,'72724 70904'),
|
||||
(36794,0,0,50331648,1,0,''),
|
||||
(36794,0,27982,50331648,1,0,''),
|
||||
(36805,0,0,8,1,0,''),
|
||||
(36807,0,0,0,1,468,''),
|
||||
(36808,0,0,8,1,0,''),
|
||||
|
|
|
|||
218011
data/sql/base/db_world/creature_template_locale.sql
Normal file
218011
data/sql/base/db_world/creature_template_locale.sql
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -7658,6 +7658,7 @@ INSERT INTO `creature_text` VALUES
|
|||
(25208,2,0,'This is far enough. I can make it on my own from here.',12,0,100,0,0,0,0,'Lurgglbr'),
|
||||
(25208,3,0,'Thank you for rescuing me, $r. Please tell the king that I am back.',12,0,100,0,0,0,0,'Lurgglbr'),
|
||||
(25210,0,0,'I am the Keymaster. Are you the Gatekeeper?',12,0,100,0,0,0,0,'Keymaster Urmgrgl'),
|
||||
(25216,0,0,'%s attempts to run away in fear!',16,0,100,0,0,0,0,'combat Flee'),
|
||||
(25237,0,0,'%s grunts.',16,1,100,0,0,0,0,'Garrosh Hellscream'),
|
||||
(25237,1,0,'Shipping lanes... supplies... You bore me to death! We need nothing more than the warrior spirit of the Horde, Saurfang! Now that we are firmly entrenched in this frozen wasteland, nothing shall stop us!',12,1,100,1,0,0,0,'Garrosh Hellscream'),
|
||||
(25237,2,0,'Propose? I will show you what I propose!',12,1,100,6,0,0,0,'Garrosh Hellscream'),
|
||||
|
|
@ -9779,9 +9780,9 @@ INSERT INTO `creature_text` VALUES
|
|||
(28942,3,9,'This is a slap in the face! We demand answers!',12,0,100,0,0,0,0,'Citizen of New Avalon'),
|
||||
(28942,3,10,'You\'re useless, Quimby!',12,0,100,0,0,0,0,'Citizen of New Avalon'),
|
||||
(28942,3,11,'We were promised safety! Security!',12,0,100,0,0,0,0,'Citizen of New Avalon'),
|
||||
(28942,3,12,'We\'re done for! Save us, Quimby!',12,0,100,0,0,0,0,'Citizen of New Avalon'),
|
||||
(28942,3,13,'Where are those ships going, Quimby! Tell us the truth!',12,0,100,0,0,0,0,'Citizen of New Avalon');
|
||||
(28942,3,12,'We\'re done for! Save us, Quimby!',12,0,100,0,0,0,0,'Citizen of New Avalon');
|
||||
INSERT INTO `creature_text` VALUES
|
||||
(28942,3,13,'Where are those ships going, Quimby! Tell us the truth!',12,0,100,0,0,0,0,'Citizen of New Avalon'),
|
||||
(28948,0,0,'Ahh... there you are. The master told us you\'d be arriving soon.',12,0,100,1,0,0,0,'Malmortis text'),
|
||||
(28948,1,0,'Please, follow me, $N. There is much for you to see...',12,0,100,1,0,0,0,'Malmortis text'),
|
||||
(28948,2,0,'You should feel honored. You are the first of the master\'s prospects to be shown our operation.',12,0,100,1,0,0,0,'Malmortis text'),
|
||||
|
|
|
|||
|
|
@ -9709,6 +9709,7 @@ INSERT INTO `gameobject_loot_template` VALUES
|
|||
(4769,7308,-100,1,0,1,1),
|
||||
(4770,7389,-100,1,0,1,1),
|
||||
(4964,7669,-100,1,0,1,1),
|
||||
(5000,13172,-100,1,0,1,1),
|
||||
(5026,7871,-100,1,0,1,1),
|
||||
(5044,7908,-100,1,0,1,1),
|
||||
(5045,3864,5,1,1,1,1),
|
||||
|
|
|
|||
|
|
@ -25,30 +25,30 @@ CREATE TABLE `gameobject_template`
|
|||
`questItem4` int(11) unsigned NOT NULL DEFAULT '0',
|
||||
`questItem5` int(11) unsigned NOT NULL DEFAULT '0',
|
||||
`questItem6` int(11) unsigned NOT NULL DEFAULT '0',
|
||||
`data0` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data1` int(11) NOT NULL DEFAULT '-1',
|
||||
`data2` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data3` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data4` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data5` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data6` int(11) NOT NULL DEFAULT '-1',
|
||||
`data7` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data8` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data9` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data10` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data11` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data12` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data13` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data14` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data15` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data16` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data17` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data18` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data19` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data20` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data21` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data22` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`data23` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data0` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data1` int(11) NOT NULL DEFAULT '0',
|
||||
`Data2` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data3` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data4` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data5` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data6` int(11) NOT NULL DEFAULT '0',
|
||||
`Data7` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data8` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data9` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data10` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data11` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data12` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data13` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data14` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data15` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data16` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data17` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data18` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data19` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data20` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data21` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data22` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Data23` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`AIName` char(64) NOT NULL DEFAULT '',
|
||||
`ScriptName` varchar(64) NOT NULL DEFAULT '',
|
||||
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '1',
|
||||
|
|
@ -8340,7 +8340,7 @@ INSERT INTO `gameobject_template` VALUES
|
|||
(176244,15,7087,'Ship, Night Elf (Moonspray)','','','',0,40,1,0,0,0,0,0,0,293,30,1,0,0,1,582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'','',12340),
|
||||
(176245,10,255,'Scarlet Archive','','','',0,4,1,0,0,0,0,0,0,99,5251,5258,60000,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'SmartGameObjectAI','',12340),
|
||||
(176247,5,4234,'Pamela\'s Doll','','','',114,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'','',12340),
|
||||
(176248,3,336,'Premium Siabi Tobacco','','','',0,4,1,0,0,0,0,0,0,43,0,0,1,0,0,5225,0,5214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'SmartGameObjectAI','',12340),
|
||||
(176248,3,336,'Premium Siabi Tobacco','','','',0,4,1,0,0,0,0,0,0,43,5000,0,1,0,0,5225,0,5214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'SmartGameObjectAI','',12340),
|
||||
(176249,3,318,'Scourge Data','','','',0,4,0.5,13176,0,0,0,0,0,43,13662,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'','',12340),
|
||||
(176264,8,396,'Campfire','','','',0,0,2.02,0,0,0,0,0,0,4,10,2061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'','',12340),
|
||||
(176265,8,396,'Campfire','','','',0,0,1.27,0,0,0,0,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'','',1),
|
||||
|
|
@ -14181,12 +14181,12 @@ INSERT INTO `gameobject_template` VALUES
|
|||
(185544,8,6744,'Campfire','','','',0,0,1.87,0,0,0,0,0,0,4,10,2061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'','',12340),
|
||||
(185545,8,7008,'Campfire','','','',0,0,0.87,0,0,0,0,0,0,4,10,2061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'','',12340),
|
||||
(185546,5,327,'Invisible Object','','','',0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'','',-18019),
|
||||
(185547,10,7351,'Shrine of the Eagle','','Summoning','',0,4,0.45,0,0,0,0,0,0,1691,10990,0,3000,0,0,0,0,0,0,0,0,0,0,21062,0,0,0,0,0,0,0,0,0,'','go_shrine_of_the_birds',12340),
|
||||
(185547,10,7351,'Shrine of the Eagle','','Summoning','',0,4,0.45,0,0,0,0,0,0,1691,10990,0,3000,0,0,0,0,0,0,0,0,0,0,21062,0,0,0,0,0,0,0,0,0,'SmartGameObjectAI','',12340),
|
||||
(185549,10,378,'Monstrous Kaliri Egg','','','',114,6553604,1.5,0,0,0,0,0,0,0,11008,0,3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'','',12340),
|
||||
(185550,23,5495,'Meeting Stone','','','',0,0,1,0,0,0,0,0,0,15,255,3959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'','',12340),
|
||||
(185551,10,7351,'Shrine of the Hawk','','Summoning','',0,4,0.45,0,0,0,0,0,0,1691,10992,0,3000,0,0,0,0,0,0,0,0,0,0,21062,0,0,0,0,0,0,0,0,0,'','go_shrine_of_the_birds',12340),
|
||||
(185551,10,7351,'Shrine of the Hawk','','Summoning','',0,4,0.45,0,0,0,0,0,0,1691,10992,0,3000,0,0,0,0,0,0,0,0,0,0,21062,0,0,0,0,0,0,0,0,0,'SmartGameObjectAI','',12340),
|
||||
(185552,5,6925,'Shrine of the Eagle','','','',0,0,0.75,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'','',-18019),
|
||||
(185553,10,7351,'Shrine of the Falcon','','Summoning','',0,4,0.45,0,0,0,0,0,0,1691,10991,0,3000,0,0,0,0,0,0,0,0,0,0,21062,0,0,0,0,0,0,0,0,0,'','go_shrine_of_the_birds',12340),
|
||||
(185553,10,7351,'Shrine of the Falcon','','Summoning','',0,4,0.45,0,0,0,0,0,0,1691,10991,0,3000,0,0,0,0,0,0,0,0,0,0,21062,0,0,0,0,0,0,0,0,0,'SmartGameObjectAI','',12340),
|
||||
(185554,10,7363,'The Raven\'s Claw','','Using','',0,0,3,0,0,0,0,0,0,1732,0,0,60000,0,0,0,0,0,0,0,0,0,0,19700,0,0,0,0,0,0,0,0,0,'','',12340),
|
||||
(185555,5,410,'Flame Circle','','','',0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'','',12340),
|
||||
(185557,3,7360,'Ancient Gem Vein','','','',0,0,0.4,0,0,0,0,0,0,1651,26862,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'','',12340),
|
||||
|
|
|
|||
157398
data/sql/base/db_world/gameobject_template_locale.sql
Normal file
157398
data/sql/base/db_world/gameobject_template_locale.sql
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -4,10 +4,10 @@
|
|||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
DROP TABLE IF EXISTS `lfg_entrances`;
|
||||
DROP TABLE IF EXISTS `lfg_dungeon_template`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `lfg_entrances`
|
||||
CREATE TABLE `lfg_dungeon_template`
|
||||
(
|
||||
`dungeonId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Unique id from LFGDungeons.dbc',
|
||||
`name` varchar(255) CHARACTER SET latin1 DEFAULT NULL,
|
||||
|
|
@ -19,9 +19,9 @@ CREATE TABLE `lfg_entrances`
|
|||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
LOCK TABLES `lfg_entrances` WRITE;
|
||||
/*!40000 ALTER TABLE `lfg_entrances` DISABLE KEYS */;
|
||||
INSERT INTO `lfg_entrances` VALUES
|
||||
LOCK TABLES `lfg_dungeon_template` WRITE;
|
||||
/*!40000 ALTER TABLE `lfg_dungeon_template` DISABLE KEYS */;
|
||||
INSERT INTO `lfg_dungeon_template` VALUES
|
||||
(14,'Gnomeregan',-332.22,-2.28,-150.86,2.77),
|
||||
(18,'Scarlet Monastery - Graveyard',1688.99,1053.48,18.6775,0.00117),
|
||||
(22,'Uldaman',-226.8,49.09,-46.03,1.39),
|
||||
|
|
@ -43,7 +43,7 @@ INSERT INTO `lfg_entrances` VALUES
|
|||
(286,'The Frost Lord Ahune',-100.396,-95.9996,-4.28423,4.71239),
|
||||
(287,'Coren Direbrew',897.495,-141.976,-49.7563,2.1255),
|
||||
(288,'The Crown Chemical Co.',-238.075,2166.43,88.853,1.13446);
|
||||
/*!40000 ALTER TABLE `lfg_entrances` ENABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `lfg_dungeon_template` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
73145
data/sql/base/db_world/locales_broadcast_text.sql
Normal file
73145
data/sql/base/db_world/locales_broadcast_text.sql
Normal file
File diff suppressed because one or more lines are too long
|
|
@ -1,43 +0,0 @@
|
|||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
DROP TABLE IF EXISTS `locales_creature`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `locales_creature`
|
||||
(
|
||||
`entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`name_loc1` varchar(100) NOT NULL DEFAULT '',
|
||||
`name_loc2` varchar(100) NOT NULL DEFAULT '',
|
||||
`name_loc3` varchar(100) NOT NULL DEFAULT '',
|
||||
`name_loc4` varchar(100) NOT NULL DEFAULT '',
|
||||
`name_loc5` varchar(100) NOT NULL DEFAULT '',
|
||||
`name_loc6` varchar(100) NOT NULL DEFAULT '',
|
||||
`name_loc7` varchar(100) NOT NULL DEFAULT '',
|
||||
`name_loc8` varchar(100) NOT NULL DEFAULT '',
|
||||
`subname_loc1` varchar(100) DEFAULT NULL,
|
||||
`subname_loc2` varchar(100) DEFAULT NULL,
|
||||
`subname_loc3` varchar(100) DEFAULT NULL,
|
||||
`subname_loc4` varchar(100) DEFAULT NULL,
|
||||
`subname_loc5` varchar(100) DEFAULT NULL,
|
||||
`subname_loc6` varchar(100) DEFAULT NULL,
|
||||
`subname_loc7` varchar(100) DEFAULT NULL,
|
||||
`subname_loc8` varchar(100) DEFAULT NULL,
|
||||
PRIMARY KEY (`entry`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
LOCK TABLES `locales_creature` WRITE;
|
||||
/*!40000 ALTER TABLE `locales_creature` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `locales_creature` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
DROP TABLE IF EXISTS `locales_gameobject`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `locales_gameobject`
|
||||
(
|
||||
`entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`name_loc1` varchar(100) NOT NULL DEFAULT '',
|
||||
`name_loc2` varchar(100) NOT NULL DEFAULT '',
|
||||
`name_loc3` varchar(100) NOT NULL DEFAULT '',
|
||||
`name_loc4` varchar(100) NOT NULL DEFAULT '',
|
||||
`name_loc5` varchar(100) NOT NULL DEFAULT '',
|
||||
`name_loc6` varchar(100) NOT NULL DEFAULT '',
|
||||
`name_loc7` varchar(100) NOT NULL DEFAULT '',
|
||||
`name_loc8` varchar(100) NOT NULL DEFAULT '',
|
||||
`castbarcaption_loc1` varchar(100) NOT NULL DEFAULT '',
|
||||
`castbarcaption_loc2` varchar(100) NOT NULL DEFAULT '',
|
||||
`castbarcaption_loc3` varchar(100) NOT NULL DEFAULT '',
|
||||
`castbarcaption_loc4` varchar(100) NOT NULL DEFAULT '',
|
||||
`castbarcaption_loc5` varchar(100) NOT NULL DEFAULT '',
|
||||
`castbarcaption_loc6` varchar(100) NOT NULL DEFAULT '',
|
||||
`castbarcaption_loc7` varchar(100) NOT NULL DEFAULT '',
|
||||
`castbarcaption_loc8` varchar(100) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`entry`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
LOCK TABLES `locales_gameobject` WRITE;
|
||||
/*!40000 ALTER TABLE `locales_gameobject` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `locales_gameobject` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
|
|
@ -24,6 +24,460 @@ CREATE TABLE `locales_points_of_interest`
|
|||
|
||||
LOCK TABLES `locales_points_of_interest` WRITE;
|
||||
/*!40000 ALTER TABLE `locales_points_of_interest` DISABLE KEYS */;
|
||||
INSERT INTO `locales_points_of_interest` VALUES
|
||||
(1,NULL,'L\'auberge de la Fierté du Lion','Gasthaus Zur Höhle des Löwen',NULL,NULL,'Posada Orgullo de León','Posada Orgullo de León','Таверна \"Гордость льва\"'),
|
||||
(2,NULL,'Zaldimar Wefhellt','Zaldimar Wefhellt',NULL,NULL,'Zaldimar Wefhellt','Zaldimar Wefhellt','Залдимар Вефхеллт'),
|
||||
(3,NULL,'Frère Wilhelm','Bruder Wilhelm',NULL,NULL,'Hermano Wilhelm','Hermano Wilhelm','Брат Вильгельм'),
|
||||
(4,NULL,'Prêtresse Josetta','Priesterin Josetta',NULL,NULL,'Sacerdotisa Josetta','Sacerdotisa Josetta','Жрица Жозетта'),
|
||||
(5,NULL,'Keryn Sylvius','Keryn Sylvius',NULL,NULL,'Keryn Sylvius','Keryn Sylvius','Керин Сильвиус'),
|
||||
(6,NULL,'Maximillian Crowe','Maximillian Raab',NULL,NULL,'Maximillian Crowe','Maximillian Crowe','Максимилиан Кроу'),
|
||||
(7,NULL,'Lyria Du Lac','Lyria Du Lac',NULL,NULL,'Lyria Du Lac','Lyria Du Lac','Лирия дю Лак'),
|
||||
(8,NULL,'Alchimiste Mallory','Alchemist Mallory',NULL,NULL,'Alquimista Mallory','Alquimista Mallory','Алхимик Маллори'),
|
||||
(9,NULL,'Argus le forgeron','Schmied Argus',NULL,NULL,'Herrero Argus','Herrero Argus','Кузнец Аргус'),
|
||||
(10,NULL,'Tomas','Tomas',NULL,NULL,'Tomas','Tomas','Томас'),
|
||||
(11,NULL,'Michelle Belle','Michelle Belle',NULL,NULL,'Michelle Belle','Michelle Belle','Мишель Белль'),
|
||||
(12,NULL,'Lee Brown','Lee Braun',NULL,NULL,'Lee Moreno','Lee Moreno','Ли Браун'),
|
||||
(13,NULL,'Calligraphies de Hurlevent','Inschriften von Sturmwind',NULL,NULL,'Inscripción de Ventormenta','Inscripción de Ventormenta','Штормградский начертатель'),
|
||||
(14,NULL,'Adele Fielder','Adele Fädler',NULL,NULL,'Adele Fielder','Adele Fielder','Адель Филдер'),
|
||||
(15,NULL,'Helene Tannepeau','Helene Pelzschneider',NULL,NULL,'Helene Desollapelambres','Helene Desollapelambres','Хелена Меховяз'),
|
||||
(16,NULL,'Eldrin','Eldrin',NULL,NULL,'Eldrin','Eldrin','Элдрин'),
|
||||
(17,NULL,'Erma','Erma',NULL,NULL,'Erma','Erma','Ирма'),
|
||||
(18,NULL,'Autel des ventes de Hurlevent','Auktionshaus von Sturmwind',NULL,NULL,'Casa de subastas de Ventormenta','Casa de subastas de Ventormenta','Штормград: аукционный дом'),
|
||||
(19,NULL,'Banque de Hurlevent','Bank von Sturmwind',NULL,NULL,'Banco de Ventormenta','Banco de Ventormenta','Штормград: банк'),
|
||||
(20,NULL,'Port de Hurlevent','Hafen von Sturmwind',NULL,NULL,'Puerto de Ventormenta','Puerto de Ventormenta','Порт Штормграда'),
|
||||
(21,NULL,'Le Tram des profondeurs','Die Tiefenbahn',NULL,NULL,'El Tranvía Subterráneo','El Tranvía Subterráneo','Подземный поезд'),
|
||||
(22,NULL,'La Rose dorée','Die güldene Rose',NULL,NULL,'La Rosa Áurea','La Rosa Áurea','Позолоченная роза'),
|
||||
(23,NULL,'Maître des griffons de Hurlevent','Greifenmeister von Sturmwind',NULL,NULL,'Maestro de grifos de Ventormenta','Maestro de grifos de Ventormenta','Штормград: укротитель грифонов'),
|
||||
(24,NULL,'Centre d\'accueil des visiteurs de Hurlevent','Besucherzentrum von Sturmwind',NULL,NULL,'Centro del Viajero de Ventormenta','Centro del Viajero de Ventormenta','Гостевые покои Штормграда'),
|
||||
(25,NULL,'Serrurier de Hurlevent','Schlosser von Sturmwind',NULL,NULL,'Cerrajería de Ventormenta','Cerrajería de Ventormenta','Штормградский замочник'),
|
||||
(26,NULL,'Jenova Targe-pierre','Jenova Steinschild',NULL,NULL,'Jenova Petrescudo','Jenova Petrescudo','Дженова Камнещит'),
|
||||
(27,NULL,'Woo Ping','Woo Ping',NULL,NULL,'Woo Ping','Woo Ping','Ву Пинг'),
|
||||
(28,NULL,'Hall des Champions','Die Halle der Champions',NULL,NULL,'Sala de los Campeones','Sala de los Campeones','Зал Защитника'),
|
||||
(29,NULL,'Maîtres de guerre de Hurlevent','Kampfmeister von Sturmwind',NULL,NULL,'Maestros de batalla, Ventormenta','Maestros de batalla, Ventormenta','Штормград: военачальники'),
|
||||
(30,NULL,'Coiffeur de Hurlevent','Barbier von Sturmwind',NULL,NULL,'Peluquería de Ventormenta','Peluquería de Ventormenta','Штормградский парикмахер'),
|
||||
(31,NULL,'Calligraphies de Hurlevent','Inschriften von Sturmwind',NULL,NULL,'Inscripción de Ventormenta','Inscripción de Ventormenta','Штормградский начертатель'),
|
||||
(32,NULL,'Le Parc','Der Park',NULL,NULL,'El Parque','El Parque','Парк'),
|
||||
(33,NULL,'Gîte des chasseurs','Jägerlodge',NULL,NULL,'Cabaña del Cazador','Cabaña del Cazador','Охотничья Избушка'),
|
||||
(34,NULL,'Sanctuaire du Sorcier','Magiersanktum',NULL,NULL,'Sagrario del Mago','Sagrario del Mago','Башня магов'),
|
||||
(35,NULL,'Chapelle de la Lumière','Kathedrale des Lichts',NULL,NULL,'Catedral de la Luz','Catedral de la Luz','Собор Света'),
|
||||
(36,NULL,'Hurlevent - Maison des voleurs','Schurkenhaus von Sturmwind',NULL,NULL,'Ventormenta: Casa de pícaros','Ventormenta: Casa de pícaros','Штормград: дом разбойников'),
|
||||
(37,NULL,'Long-voyante Umbrua','Weissagerin Umbrua',NULL,NULL,'Clarividente Umbrua','Clarividente Umbrua','Прорицательница Умбруа'),
|
||||
(38,NULL,'L\'Agneau assassiné','Zum geschlachteten Lamm',NULL,NULL,'El Cordero Degollado','El Cordero Degollado','Таверна \"Забитый ягненок\"'),
|
||||
(39,NULL,'Caserne de Hurlevent','Kaserne von Sturmwind',NULL,NULL,'Cuartel de Ventormenta','Cuartel de Ventormenta','Казармы Штормграда'),
|
||||
(40,NULL,'Tout pour l\'alchimiste','Alchemiebedarf',NULL,NULL,'El Rincón del Alquimista','El Rincón del Alquimista','Все для алхимика'),
|
||||
(41,NULL,'Therum Forge-profonde','Therum Tiefenschmied',NULL,NULL,'Therum Forjahonda','Therum Forjahonda','Терум Подземная Кузня'),
|
||||
(42,NULL,'Taverne du Cochon siffleur','Taverne Zum pfeifenden Schwein',NULL,NULL,'El Cerdo Borracho','El Cerdo Borracho','Таверна \"Свинья и свисток\"'),
|
||||
(43,NULL,'Lucan Cordell','Lucan Cordell',NULL,NULL,'Lucan Cordell','Lucan Cordell','Лукан Корделл'),
|
||||
(44,NULL,'Lilliam Fusétincelle','Lilliam Spindelfunks',NULL,NULL,'Lilliam Chispeje','Lilliam Chispeje','Лилиам Шпиндель'),
|
||||
(45,NULL,'Shaina Fuller','Shaina Fuller',NULL,NULL,'Shaina Fuller','Shaina Fuller','Шайна Корпия'),
|
||||
(46,NULL,'Arnold Leland','Arnold Leland',NULL,NULL,'Arnold Leland','Arnold Leland','Арнольд Лиланд'),
|
||||
(47,NULL,'Au cuir protecteur','Der schützende Balg',NULL,NULL,'El Cuero Protector','El Cuero Protector','Прочная шкура'),
|
||||
(48,NULL,'Gelman Main-de-pierre','Gelman Steinhand',NULL,NULL,'Gelman Petramano','Gelman Petramano','Гельман Камнерук'),
|
||||
(49,NULL,'Textiles Duncan','Duncans Textilien',NULL,NULL,'Telas de Duncan','Telas de Duncan','Ткани Дункана'),
|
||||
(50,NULL,'Hôtel des ventes de Forgefer','Auktionshaus von Eisenschmiede',NULL,NULL,'Casa de subastas de Forjaz','Casa de subastas de Forjaz','Стальгорн: аукционный дом'),
|
||||
(51,NULL,'Le Caveau','Das Gewölbe',NULL,NULL,'Las Arcas','Las Arcas','Свод'),
|
||||
(52,NULL,'Tram des profondeurs','Die Tiefenbahn',NULL,NULL,'Tranvía Subterráneo','Tranvía Subterráneo','Подземный поезд'),
|
||||
(53,NULL,'Maître des griffons de Forgefer','Greifenmeister von Eisenschmiede',NULL,NULL,'Maestro de grifos de Forjaz','Maestro de grifos de Forjaz','Стальгорн: укротитель грифонов'),
|
||||
(54,NULL,'Centre des Visiteurs de Forgefer','Besucherzentrum von Eisenschmiede',NULL,NULL,'Centro de Viajeros de Forjaz','Centro de Viajeros de Forjaz','Гостевые покои Стальгорна'),
|
||||
(55,NULL,'La taverne de Brûlepierre','Steinfeuertaverne',NULL,NULL,'Taberna Roca de Fuego','Taberna Roca de Fuego','Таверна \"Горючий камень\"'),
|
||||
(56,NULL,'Boîte aux lettres de Forgefer','Briefkasten von Eisenschmiede',NULL,NULL,'Buzón de Forjaz','Buzón de Forjaz','Стальгорн: почта'),
|
||||
(57,NULL,'Ulbrek Brasemain','Ulbrek Feuerhand',NULL,NULL,'Ulbrek Manofuego','Ulbrek Manofuego','Ульбрек Огненная Длань'),
|
||||
(58,NULL,'Bixi et Buliwyf','Bixi und Buliwyf',NULL,NULL,'Bixi y Buliwyf','Bixi y Buliwyf','Бикси и Бульвайф'),
|
||||
(59,NULL,'Maîtres de guerre de Forgefer','Kampfmeister von Eisenschmiede',NULL,NULL,'Maestros de batalla de Forjaz','Maestros de batalla de Forjaz','Стальгорн: военачальники'),
|
||||
(60,NULL,'Coiffeuse de Forgefer','Barbier von Eisenschmiede',NULL,NULL,'Peluquería de Forjaz','Peluquería de Forjaz','Стальгорнский парикмахер'),
|
||||
(61,NULL,'Hall des Armes','Halle der Waffen',NULL,NULL,'La Sala Militar','La Sala Militar','Оружейная'),
|
||||
(62,NULL,'Hall des Mystères','Halle der Mysterien',NULL,NULL,'La Sala Mística','La Sala Mística','Зал Тайн'),
|
||||
(63,NULL,'Maître des voleurs de Forgefer','Schurkenlehrer von Eisenschmiede',NULL,NULL,'Instructor de pícaros de Forjaz','Instructor de pícaros de Forjaz','Стальгорн: наставник разбойников'),
|
||||
(64,NULL,'Maître des démonistes de Forgefer','Hexenmeisterlehrer von Eisenschmiede',NULL,NULL,'Instructor de brujos de Forjaz','Instructor de brujos de Forjaz','Стальгорн: наставник чернокнижников'),
|
||||
(65,NULL,'Maître des chamans de Forgefer','Schamanenlehrer von Eisenschmiede',NULL,NULL,'Instructor de chamanes de Forjaz','Instructor de chamanes de Forjaz','Стальгорн: наставник шаманов'),
|
||||
(66,NULL,'Potions et mixtures de Baiedesbulles','Brausefitz\' Tränke und Mischgetränke',NULL,NULL,'Pociones y Cócteles de Burbubaya','Pociones y Cócteles de Burbubaya','Снадобья и микстуры от Гонобобельзз'),
|
||||
(67,NULL,'La Grande Forge','Die große Schmiede',NULL,NULL,'La Gran Fundición','La Gran Fundición','Великая Кузня'),
|
||||
(68,NULL,'La Bouilloire de bronze','Zum Bronzekessel',NULL,NULL,'La Marmita de Bronce','La Marmita de Bronce',NULL),
|
||||
(69,NULL,'Arcanes de Duvechardon','Arkanarien Distelflaum',NULL,NULL,'Arcanería de Cardopelusa','Arcanería de Cardopelusa','Колдовские штучки Чертополуша'),
|
||||
(70,NULL,'Médecin de Forgefer','Heiler von Eisenschmiede',NULL,NULL,'Médico de Forjaz','Médico de Forjaz','Стальгорн: целитель'),
|
||||
(71,NULL,'Pêcheur itinérant','Reisender Angler',NULL,NULL,'El Pescador Nómada','El Pescador Nómada','Странствующий рыбак'),
|
||||
(72,NULL,'Calligraphies de Forgefer','Inschriften von Eisenschmiede',NULL,NULL,'Inscripción de Forjaz','Inscripción de Forjaz','Стальгорнское начертание'),
|
||||
(73,NULL,'Cuirs de Finfuseau','Lederwaren Feinspindel',NULL,NULL,'Artículos de Cuero Bueneje','Artículos de Cuero Bueneje','Кожевенная лавка Остроигла'),
|
||||
(74,NULL,'Guilde des mineurs de la montagne profonde','Tiefenbergbaugilde',NULL,NULL,'Gremio de Minería de Montañahonda','Gremio de Minería de Montañahonda','Гильдия рудокопов Темной Горы'),
|
||||
(75,NULL,'Vêtements de Front-de-pierre','Tuchmacherei Steinbraue',NULL,NULL,'Sastrería Petrocejas','Sastrería Petrocejas','Лавка одежды Камнелоба'),
|
||||
(76,NULL,'Distillerie de Tonnebière','Brauerei Donnerbräu',NULL,NULL,'Destilería Cebatruenos','Destilería Cebatruenos','Таверна \"Громоварка\"'),
|
||||
(77,NULL,'Shelby Pierre-à-feu','Shelby Steinsplint',NULL,NULL,'Shelby Petrepiedra','Shelby Petrepiedra','Шелби Щебенка'),
|
||||
(78,NULL,'Grif Cœur-sauvage','Grif Wildherz',NULL,NULL,'Grif Corazón Salvaje','Grif Corazón Salvaje','Гриф Дикое Сердце'),
|
||||
(79,NULL,'Magis Mantincelle','Magis Funkelmantel',NULL,NULL,'Magis Chispamanto','Magis Chispamanto','Магис Искроплащ'),
|
||||
(80,NULL,'Azar Fortmartel','Azar Hammerkraft',NULL,NULL,'Azar Martillopujante','Azar Martillopujante','Азар Мощный Молот'),
|
||||
(81,NULL,'Maxan Anvol','Maxan Anvol',NULL,NULL,'Maxan Anvol','Maxan Anvol','Максан Анвол'),
|
||||
(82,NULL,'Hogral Bakkan','Hogral Bakkan',NULL,NULL,'Hogral Bakkan','Hogral Bakkan','Хограл Баккан'),
|
||||
(83,NULL,'Gimrizz Sombrouage','Gimrizz Schattenrad',NULL,NULL,'Gimrizz Molaro','Gimrizz Molaro','Гимризз Которышка'),
|
||||
(84,NULL,'Granis Vivehache','Granis Flinkaxt',NULL,NULL,'Granis Hachaveloz','Granis Hachaveloz','Гранис Свист Топора'),
|
||||
(85,NULL,'Tognus Flammesilex','Tognus Funkenfeuer',NULL,NULL,'Tognus Fuegosílex','Tognus Fuegosílex','Тогнус Огниво'),
|
||||
(86,NULL,'Gremlock Pilsnor','Gremlock Pilsnor',NULL,NULL,'Gremlock Pilsnor','Gremlock Pilsnor','Гремлок Пилзнор'),
|
||||
(87,NULL,'Thamner Pol','Thamner Pol',NULL,NULL,'Thamner Pol','Thamner Pol','Тамнер Пол'),
|
||||
(88,NULL,'Paxton Ganter','Paxton Ganter',NULL,NULL,'Paxton Ganter','Paxton Ganter','Пакстон Гантер'),
|
||||
(89,NULL,'Autel des ventes de Darnassus','Auktionshaus Darnassus',NULL,NULL,'Casa de subastas de Darnassus','Casa de subastas de Darnassus','Аукционный дом Дарнаса'),
|
||||
(90,NULL,'Banque de Darnassus','Bank von Darnassus',NULL,NULL,'Banco de Darnassus','Banco de Darnassus','Дарнас: банк'),
|
||||
(91,NULL,'Maître des hippogriffes de Darnassus','Rut\'theran',NULL,NULL,'Aldea Rut\'theran','Aldea Rut\'theran',NULL),
|
||||
(92,NULL,'Maître des guildes de Darnassus','Gildenmeister von Darnassus',NULL,NULL,'Maestro de hermandad de Darnassus','Maestro de hermandad de Darnassus','Дарнас: регистрация гильдий'),
|
||||
(93,NULL,'Auberge de Darnassus','Gasthaus von Darnassus',NULL,NULL,'Posada de Darnassus','Posada de Darnassus','Дарнасская таверна'),
|
||||
(94,NULL,'Boîte aux lettres de Darnassus','Briefkasten von Darnassus',NULL,NULL,'Buzón de Darnassus','Buzón de Darnassus','Дарнас: почта'),
|
||||
(95,NULL,'Alassin','Alassin',NULL,NULL,'Alassin','Alassin','Алассин'),
|
||||
(96,NULL,'Ilyenia Lunéclat','Ilyenia Mondfeuer',NULL,NULL,'Ilyenia Fuegolunar','Ilyenia Fuegolunar','Илиения Лунное Пламя'),
|
||||
(97,NULL,'Maîtres de guerre de Darnassus','Kampfmeister von Darnassus',NULL,NULL,'Maestros de batalla, Darnassus','Maestros de batalla, Darnassus','Дарнас: военачальники'),
|
||||
(98,NULL,'Maître des druides de Darnassus','Druidenlehrer von Darnassus',NULL,NULL,'Instructor de druidas de Darnassus','Instructor de druidas de Darnassus','Дарнас: наставник друидов'),
|
||||
(99,NULL,'Maître des chasseurs de Darnassus','Jägerlehrer von Darnassus',NULL,NULL,'Instructor de cazadores de Darnassus','Instructor de cazadores de Darnassus','Дарнас: наставник охотников'),
|
||||
(100,NULL,'Maître des voleurs de Darnassus','Schurkenlehrer von Darnassus',NULL,NULL,'Instructor de pícaros de Darnassus','Instructor de pícaros de Darnassus','Дарнас: наставник разбойников'),
|
||||
(101,NULL,'La terrasse des guerriers','Die Terrasse der Krieger',NULL,NULL,'Bancal del Guerrero','Bancal del Guerrero','Терраса Воинов'),
|
||||
(102,NULL,'Maître des alchimistes de Darnassus','Alchemielehrer von Darnassus',NULL,NULL,'Instructor de alquimia de Darnassus','Instructor de alquimia de Darnassus','Дарнасский учитель алхимии'),
|
||||
(103,NULL,'Maître des cuisiniers de Darnassus','Kochkunstlehrer von Darnassus',NULL,NULL,'Profesor de cocina de Darnassus','Profesor de cocina de Darnassus','Дарнас: Учитель кулинарии'),
|
||||
(104,NULL,'Maître des enchanteurs de Darnassus','Verzauberkunstlehrer von Darnassus',NULL,NULL,'Instructor de encantamiento de Darnassus','Instructor de encantamiento de Darnassus','Дарнасский учитель наложения чар'),
|
||||
(105,NULL,'Maître des sécouristes de Darnassus','Lehrer für Erste Hilfe von Darnassus',NULL,NULL,'Instructor de primeros auxilios de Darnassus','Instructor de primeros auxilios de Darnassus','Дарнас: учитель первой помощи'),
|
||||
(106,NULL,'Maître des pêcheurs de Darnassus','Angellehrer von Darnassus',NULL,NULL,'Instructor de pesca de Darnassus','Instructor de pesca de Darnassus','Дарнасский учитель рыбной ловли'),
|
||||
(107,NULL,'Calligraphies de Darnassus','Inschriften von Darnassus',NULL,NULL,'Inscripción de Darnassus','Inscripción de Darnassus','Дарнасский начертатель'),
|
||||
(108,NULL,'Maître des travailleurs du cuir de Darnassus','Lederverarbeitungslehrer von Darnassus',NULL,NULL,'Instructor de peletería de Darnassus','Instructor de peletería de Darnassus','Дарнасский учитель кожевничества'),
|
||||
(109,NULL,'Maître des dépeceurs de Darnassus','Kürschnerlehrer von Darnassus',NULL,NULL,'Instructor de desuello de Darnassus','Instructor de desuello de Darnassus','Дарнасский учитель снятия шкур'),
|
||||
(110,NULL,'Tailleur de Darnassus','Schneider von Darnassus',NULL,NULL,'Sastre de Darnassus','Sastre de Darnassus','Дарнасский портной'),
|
||||
(111,NULL,'Auberge de Dolanaar','Gasthaus Dolanaar',NULL,NULL,'Posada de Dolanaar','Posada de Dolanaar','Таверна Доланаара'),
|
||||
(112,NULL,'Seriadne','Seriadne',NULL,NULL,'Seriadne','Seriadne','Сериадна'),
|
||||
(113,NULL,'Kal',NULL,NULL,NULL,'Kal','Kal','Каль'),
|
||||
(114,NULL,'Dazalar','Dazalar',NULL,NULL,'Dazalar','Dazalar','Дазалар'),
|
||||
(115,NULL,'Laurna Clairematin','Laurna Morgenglanz',NULL,NULL,'Laurna Luzdelalba','Laurna Luzdelalba','Лорна Утренний Свет'),
|
||||
(116,NULL,'Jannok Chantebrise','Jannok Windsang',NULL,NULL,'Jannok Brisón','Jannok Brisón','Джаннок Поющий Ветерок'),
|
||||
(117,NULL,'Kyra Lamevent','Kyra Windklinge',NULL,NULL,'Kyra Espada del Viento','Kyra Espada del Viento','Кайра Ветрорез'),
|
||||
(118,NULL,'Cyndra Murmegent','Cyndra Samtwisper',NULL,NULL,'Cyndra Suavesusurro','Cyndra Suavesusurro','Циндра Ласковый Шепот'),
|
||||
(119,NULL,'Zarrin','Zarrin',NULL,NULL,'Zarrin','Zarrin','Заррин'),
|
||||
(120,NULL,'Alanna Oeil-de-corbeau','Alanna Rabenauge',NULL,NULL,'Alanna Cuervojo','Alanna Cuervojo','Аланна Око Ворона'),
|
||||
(121,NULL,'Byancie','Byancie',NULL,NULL,'Byancie','Byancie','Бьянси'),
|
||||
(122,NULL,'Malorne Feuillelame','Malorne Messerblatt',NULL,NULL,'Malorne Filohoja','Malorne Filohoja','Малорн Остролист'),
|
||||
(123,NULL,'Nadyia Tissecrin','Nadyia Schopfweber',NULL,NULL,'Nadyia Tejecrín','Nadyia Tejecrín','Надайя Гривопряд'),
|
||||
(124,NULL,'Radnaal Tissecrin','Radnaal Schopfweber',NULL,NULL,'Radnaal Tejecrín','Radnaal Tejecrín','Раднаал Гривопряд'),
|
||||
(125,NULL,'Nadyia Tissecrin','Nadyia Schopfweber',NULL,NULL,'Nadyia Tejecrín','Nadyia Tejecrín','Надайя Гривопряд'),
|
||||
(126,NULL,'Entrée Est des Égouts de Dalaran','Östlicher Kanalisationseingang von Dalaran',NULL,NULL,'Entrada oriental de las cloacas','Entrada oriental de las cloacas',NULL),
|
||||
(127,NULL,'Entrée Ouest des Égouts de Dalaran','Westlicher Kanalisationseingang von Dalaran',NULL,NULL,'Entrada occidental de las cloacas','Entrada occidental de las cloacas',NULL),
|
||||
(128,NULL,'Puit de Dalaran','Brunnen von Dalaran',NULL,NULL,'Entrada del pozo','Entrada del pozo',NULL),
|
||||
(129,NULL,'Enclave Argentée de Dalaran','Silberne Enklave von Dalaran',NULL,NULL,'El Enclave de Plata','El Enclave de Plata',NULL),
|
||||
(130,NULL,'Sanctuaire des Saccages-Soleil de Dalaran','Sonnenhäschers Zuflucht von Dalaran',NULL,NULL,'Santuario Atracasol','Santuario Atracasol',NULL),
|
||||
(131,NULL,'Banque Nord de Dalaran','Nördliche Bank von Dalaran',NULL,NULL,'Banco Norte','Banco Norte',NULL),
|
||||
(132,NULL,'Banque Sud de Dalaran','Südliche Bank von Dalaran',NULL,NULL,'Banco Sur','Banco Sur',NULL),
|
||||
(133,NULL,'Coiffeuse de Dalaran','Barbier von Dalaran',NULL,NULL,'Peluquería de Dalaran','Peluquería de Dalaran',NULL),
|
||||
(134,NULL,'Maître de Vol de Dalaran','Flugmeister in Dalaran',NULL,NULL,'Maestro de vuelo de Dalaran','Maestro de vuelo de Dalaran',NULL),
|
||||
(135,NULL,'Centre d\'Accueil des Visiteurs de Dalaran','Besucherzentrum von Dalaran',NULL,NULL,'Centro de Visitantes de Dalaran','Centro de Visitantes de Dalaran',NULL),
|
||||
(136,NULL,'Auberge de Dalaran','Gasthaus von Dalaran',NULL,NULL,'Posada de Dalaran','Posada de Dalaran',NULL),
|
||||
(137,NULL,'Auberge de l\'Alliance de Dalaran','Allianzgasthaus von Dalaran',NULL,NULL,'Posada de la Alianza','Posada de la Alianza',NULL),
|
||||
(138,NULL,'Auberge de la Horde de Dalaran','Hordengasthaus von Dalaran',NULL,NULL,'Posada de la Horda','Posada de la Horda',NULL),
|
||||
(139,NULL,'Serrurier de Dalaran','Schlosser von Dalaran',NULL,NULL,'Cerrajería de Dalaran','Cerrajería de Dalaran',NULL),
|
||||
(140,NULL,'Aire de Krasus de Dalaran','Krasus\' Landeplatz in Dalaran',NULL,NULL,'Alto de Krasus','Alto de Krasus',NULL),
|
||||
(141,NULL,'Citadelle Pourpre de Dalaran','Violette Zitadelle von Dalaran',NULL,NULL,'La Ciudadela Violeta','La Ciudadela Violeta',NULL),
|
||||
(142,NULL,'Fort Pourpre de Dalaran','Violette Festung von Dalaran',NULL,NULL,'El Bastión Violeta','El Bastión Violeta',NULL),
|
||||
(143,NULL,'Quartier des Commerçants de Dalaran','Handelsdistrikt von Dalaran',NULL,NULL,'Distrito de Mercaderes','Distrito de Mercaderes',NULL),
|
||||
(144,NULL,'Monument à Antonidus de Dalaran','Antonidas\' Denkmal von Dalaran',NULL,NULL,'Monumento de Antonidas','Monumento de Antonidas',NULL),
|
||||
(145,NULL,'Place de Tisserune de Dalaran','Runenweberplatz von Dalaran',NULL,NULL,'Plaza Tejerruna','Plaza Tejerruna',NULL),
|
||||
(146,NULL,'Le Brunant de Dalaran','Abendruh in Dalaran',NULL,NULL,'El Manto de la Noche','El Manto de la Noche',NULL),
|
||||
(147,NULL,'Cimetière de Dalaran','Friedhof von Dalaran',NULL,NULL,'Cementerio de Dalaran','Cementerio de Dalaran',NULL),
|
||||
(148,NULL,'Maître des calligraphes de Dalaran','Inschriftenkundelehrer von Dalaran',NULL,NULL,'Instructor de inscripción de Dalaran','Instructor de inscripción de Dalaran',NULL),
|
||||
(149,NULL,'Maître des écuries de Dalaran','Stallmeister in Dalaran',NULL,NULL,'Maestro de establos de Dalaran','Maestro de establos de Dalaran',NULL),
|
||||
(150,NULL,'Maître des mages de Dalaran','Magierlehrer von Dalaran',NULL,NULL,'Instructor de magos de Dalaran','Instructor de magos de Dalaran',NULL),
|
||||
(151,NULL,'Maître des alchimistes de Dalaran','Alchemielehrer von Dalaran',NULL,NULL,'Instructor de alquimia de Dalaran','Instructor de alquimia de Dalaran',NULL),
|
||||
(152,NULL,'Maître des forgerons de Dalaran','Schmiedekunstlehrer von Dalaran',NULL,NULL,'Instructor de herrería de Dalaran','Instructor de herrería de Dalaran',NULL),
|
||||
(153,NULL,'Maître des enchanteurs de Dalaran','Verzauberkunstlehrer von Dalaran',NULL,NULL,'Instructor de encantamiento de Dalaran','Instructor de encantamiento de Dalaran',NULL),
|
||||
(154,NULL,'Maître des ingénieurs de Dalaran','Ingenieurskunstlehrer von Dalaran',NULL,NULL,'Instructor de ingeniería de Dalaran','Instructor de ingeniería de Dalaran',NULL),
|
||||
(155,NULL,'Maître des secouristes de Dalaran','Lehrer für Erste Hilfe von Dalaran',NULL,NULL,'Instructor de primeros auxilios de Dalaran','Instructor de primeros auxilios de Dalaran',NULL),
|
||||
(156,NULL,'Fontaine de Dalaran','Anglerbrunnen von Dalaran',NULL,NULL,'Fuente de Pesca de Dalaran','Fuente de Pesca de Dalaran',NULL),
|
||||
(157,NULL,'Maître des herboristes de Dalaran','Kräuterkundelehrer von Dalaran',NULL,NULL,'Instructor de herboristería de Dalaran','Instructor de herboristería de Dalaran',NULL),
|
||||
(158,NULL,'Maître des joailliers de Dalaran','Juwelierskunstlehrer von Dalaran',NULL,NULL,'Instructor de joyería de Dalaran','Instructor de joyería de Dalaran',NULL),
|
||||
(159,NULL,'Maître des travailleurs du cuir de Dalaran','Lederverarbeitungslehrer von Dalaran',NULL,NULL,'Instructor de peletería de Dalaran','Instructor de peletería de Dalaran',NULL),
|
||||
(160,NULL,'Maître des mineurs de Dalaran','Bergbaulehrer von Dalaran',NULL,NULL,'Instructor de minería de Dalaran','Instructor de minería de Dalaran',NULL),
|
||||
(161,NULL,'Maître des dépeceurs de Dalaran','Kürschnerlehrer von Dalaran',NULL,NULL,'Instructor de desuello de Dalaran','Instructor de desuello de Dalaran',NULL),
|
||||
(162,NULL,'Maître des tailleurs de Dalaran','Schneiderleher von Dalaran',NULL,NULL,'Instructor de sastrería de Dalaran','Instructor de sastrería de Dalaran',NULL),
|
||||
(163,NULL,'Armures d\'étoffes et de fourrures de Dalaran','Stoffrüstung & Kleidung von Dalaran',NULL,NULL,'Armaduras de tela y Ropa','Armaduras de tela y Ropa',NULL),
|
||||
(164,NULL,'Fleuriste de Dalaran','Blumen von Dalaran',NULL,NULL,'Flores de Dalaran','Flores de Dalaran',NULL),
|
||||
(165,NULL,'Vendeur de fruits de Dalaran','Fruchthändler von Dalaran',NULL,NULL,'Vendedor de Fruta de Dalaran','Vendedor de Fruta de Dalaran',NULL),
|
||||
(166,NULL,'Fournitures générales de Dalaran','Gemischt- & Handwerksswarenladen von Dalaran',NULL,NULL,'Suministros comerciales de Dalaran','Suministros comerciales de Dalaran',NULL),
|
||||
(167,NULL,'Animalerie de Dalaran','Haustierbedarf von Dalaran',NULL,NULL,'Tienda de Mascotas de Dalaran','Tienda de Mascotas de Dalaran',NULL),
|
||||
(168,NULL,'Tartes, patisseries et gateaux de Dalaran','Kuchen, Gebäck & Torten von Dalaran',NULL,NULL,'Tartas, pastelitos y pasteles','Tartas, pastelitos y pasteles',NULL),
|
||||
(169,NULL,'Réactifs de Dalaran','Reagenzien von Dalaran',NULL,NULL,'Componentes de Dalaran','Componentes de Dalaran',NULL),
|
||||
(170,NULL,'Marchand de jouets de Dalaran','Spielzeugladen von Dalaran',NULL,NULL,'Juguetería de Dalaran','Juguetería de Dalaran',NULL),
|
||||
(171,NULL,'Bijoux de Dalaran','Schmuckstücke von Dalaran',NULL,NULL,'Abalorios de Dalaran','Abalorios de Dalaran',NULL),
|
||||
(172,NULL,'Armes de mélée de Dalaran','Nahkampfwaffen von Dalaran',NULL,NULL,'Armas de combate cuerpo a cuerpo','Armas de combate cuerpo a cuerpo',NULL),
|
||||
(173,NULL,'Armes de jets de Dalaran','Distanzwaffen von Dalaran',NULL,NULL,'Armas a distancia','Armas a distancia',NULL),
|
||||
(174,NULL,'Bâtons et baguettes de Dalaran','Stäbe & Zauberstäbe von Dalaran',NULL,NULL,'Bastones y varitas','Bastones y varitas',NULL),
|
||||
(175,NULL,'Vins et fromages de Dalaran','Wein & Käse von Dalaran',NULL,NULL,'Vinos y quesos','Vinos y quesos',NULL),
|
||||
(176,NULL,'Banque d\'Orgrimmar','Bank von Orgrimmar',NULL,NULL,'Banco de Orgrimmar','Banco de Orgrimmar','Банк Оргриммара'),
|
||||
(177,NULL,'Tour des Cieux','Der Himmelsturm',NULL,NULL,'La Torre del Cielo','La Torre del Cielo','Башня Небес'),
|
||||
(178,NULL,'Ambassade de la Horde','Botschaft der Horde',NULL,NULL,'Embajada de la Horda','Embajada de la Horda','Посольство Орды'),
|
||||
(179,NULL,'Auberge d\'Orgrimmar','Gasthaus von Orgrimmar',NULL,NULL,'Posada de Orgrimmar','Posada de Orgrimmar','Таверна Оргриммара'),
|
||||
(180,NULL,'Boîte aux lettres d\'Orgrimmar','Briefkasten von Orgrimmar',NULL,NULL,'Buzón de Orgrimmar','Buzón de Orgrimmar','Оргриммар: почта'),
|
||||
(181,NULL,'Autel des ventes d\'Orgrimmar','Auktionshaus von Orgrimmar',NULL,NULL,'Casa de subastas de Orgrimmar','Casa de subastas de Orgrimmar','Оргриммар: аукционный дом'),
|
||||
(182,NULL,'Tour des Zeppelins Est d\'Orgrimmar','Östlicher Zeppelinturm von Orgrimmar',NULL,NULL,'Torre de zepelín este de Orgrimmar','Torre de zepelín este de Orgrimmar','Башня дирижаблей Оргриммара'),
|
||||
(183,NULL,'Tour des Zeppelins Ouest d\'Orgrimmar','Westlicher Zeppelinturm von Orgrimmar',NULL,NULL,'Torre de zepelín oeste de Orgrimmar','Torre de zepelín oeste de Orgrimmar','Западная башня дирижаблей Оргриммара'),
|
||||
(184,NULL,'Sayoc & Hanashi','Sayoc und Hanashi',NULL,NULL,'Sayoc y Hanashi','Sayoc y Hanashi','Сайок и Ханаши'),
|
||||
(185,NULL,'Xon\'cha','Xon\'cha',NULL,NULL,'Xon\'cha','Xon\'cha','Ксон\'ча'),
|
||||
(186,NULL,'Hall des Légendes','Die Halle der Legenden',NULL,NULL,'Sala de las Leyendas','Sala de las Leyendas','Зал Легенд'),
|
||||
(187,NULL,'Maître de guerre d\'Orgrimmar','Kampfmeister von Orgrimmar',NULL,NULL,'Maestros de batalla, Orgrimmar','Maestros de batalla, Orgrimmar','Оргриммар: военачальники'),
|
||||
(188,NULL,'Coiffeuse d\'Orgrimmar','Barbier von Orgrimmar',NULL,NULL,'Peluquería de Orgrimmar','Peluquería de Orgrimmar','Оргриммарский парикмахер'),
|
||||
(189,NULL,'Calligraphe d\'Orgrimmar','Inschriften von Orgrimmar',NULL,NULL,'Inscripción de Orgrimmar','Inscripción de Orgrimmar','Оргриммарский начертатель'),
|
||||
(190,NULL,'Exodar, Maison des enchères','Auktionator der Exodar',NULL,NULL,'El Exodar, subastador','El Exodar, subastador',NULL),
|
||||
(191,NULL,'Exodar, Banque','Bank der Exodar',NULL,NULL,'El Exodar, banco','El Exodar, banco',NULL),
|
||||
(192,NULL,'Exodar, Maître des Griffons','Hippogryphenmeister der Exodar',NULL,NULL,'El Exodar, maestro de hipogrifos','El Exodar, maestro de hipogrifos',NULL),
|
||||
(193,NULL,'Exodar, Maître des guildes','Gildenmeister der Exodar',NULL,NULL,'El Exodar, maestro de hermandad','El Exodar, maestro de hermandad',NULL),
|
||||
(194,NULL,'Exodar, Auberge','Gasthaus der Exodar',NULL,NULL,'El Exodar, posada','El Exodar, posada',NULL),
|
||||
(195,NULL,'Exodar, Boîte aux lettres','Briefkasten der Exodar',NULL,NULL,'El Exodar, buzón de correo','El Exodar, buzón de correo',NULL),
|
||||
(196,NULL,'Exodar, Maître des étables','Stallmeister der Exodar',NULL,NULL,'El Exodar, maestro de establos','El Exodar, maestro de establos',NULL),
|
||||
(197,NULL,'Exodar, Maître des armes','Waffenmeister der Exodar',NULL,NULL,'El Exodar, maestro de armas','El Exodar, maestro de armas',NULL),
|
||||
(198,NULL,'Exodar, Maître des Druides','Druidenlehrer der Exodar',NULL,NULL,'El Exodar, instructor de druidas','El Exodar, instructor de druidas',NULL),
|
||||
(199,NULL,'Exodar, Maître des Chasseurs','Jägerlehrer der Exodar',NULL,NULL,'El Exodar, instructores de cazadores','El Exodar, instructores de cazadores',NULL),
|
||||
(200,NULL,'Exodar, Maître des Mages','Magierlehrer der Exodar',NULL,NULL,'El Exodar, instructores de magos','El Exodar, instructores de magos',NULL),
|
||||
(201,NULL,'Exodar, Maître des Paladins','Paladinlehrer der Exodar',NULL,NULL,'El Exodar, instructores de paladines','El Exodar, instructores de paladines',NULL),
|
||||
(202,NULL,'Exodar, Maître des Prêtres','Priesterlehrer der Exodar',NULL,NULL,'El Exodar, instructores de sacerdotes','El Exodar, instructores de sacerdotes',NULL),
|
||||
(203,NULL,'Exodar, Maître des Chamans','Schamanenlehrer der Exodar',NULL,NULL,'El Exodar, instructor de chamanes','El Exodar, instructor de chamanes',NULL),
|
||||
(204,NULL,'Exodar, Maître des Guerriers','Kriegerlehrer der Exodar',NULL,NULL,'El Exodar, instructor de guerreros','El Exodar, instructor de guerreros',NULL),
|
||||
(205,NULL,'Exodar, Maître des Alchismistes','Alchemielehrer der Exodar',NULL,NULL,'El Exodar, instructores de alquimia','El Exodar, instructores de alquimia',NULL),
|
||||
(206,NULL,'Exodar, Maître des Forgerons','Schmiedekunstlehrer der Exodar',NULL,NULL,'El Exodar, instructores de herrería','El Exodar, instructores de herrería',NULL),
|
||||
(207,NULL,'Exodar, Enchantement','Verzauberer der Exodar',NULL,NULL,'El Exodar, encantadores','El Exodar, encantadores',NULL),
|
||||
(208,NULL,'Exodar, Ingénierie','Ingenieurskunst der Exodar',NULL,NULL,'El Exodar, ingeniería','El Exodar, ingeniería',NULL),
|
||||
(209,NULL,'Exodar, Secourisme','Lehrer für Erste Hilfe der Exodar',NULL,NULL,'El Exodar, instructores de primeros auxilios','El Exodar, instructores de primeros auxilios',NULL),
|
||||
(210,NULL,'Exodar, Pêche','Angellehrer der Exodar',NULL,NULL,'El Exodar, instructor de pesca','El Exodar, instructor de pesca',NULL),
|
||||
(211,NULL,'Exodar, Herboristerie','Kräuterkundelehrer der Exodar',NULL,NULL,'El Exodar, instructor de herboristería','El Exodar, instructor de herboristería',NULL),
|
||||
(212,NULL,'Exodar, Calligraphie','Inschriften der Exodar',NULL,NULL,'Inscripción de El Exodar','Inscripción de El Exodar',NULL),
|
||||
(213,NULL,'Exodar, Joaillerie','Juwelenschleifer der Exodar',NULL,NULL,'El Exodar, joyeros','El Exodar, joyeros',NULL),
|
||||
(214,NULL,'Exodar, Travail du Cuir','Lederverarbeitung der Exodar',NULL,NULL,'El Exodar, peletería','El Exodar, peletería',NULL),
|
||||
(215,NULL,'Exodar, Minage','Bergbaulehrer der Exodar',NULL,NULL,'El Exodar, instructores de minería','El Exodar, instructores de minería',NULL),
|
||||
(216,NULL,'Exodar, Dépeçage','Kürschnerlehrer der Exodar',NULL,NULL,'El Exodar, instructor de desuello','El Exodar, instructor de desuello',NULL),
|
||||
(217,NULL,'Exodar, Couture','Schneider der Exodar',NULL,NULL,'El Exodar, sastres','El Exodar, sastres',NULL),
|
||||
(218,NULL,'Exodar, Cuisinier','Koch der Exodar',NULL,NULL,'El Exodar, cocinero','El Exodar, cocinero',NULL),
|
||||
(219,NULL,'Le Guet d\'Azur, Auberge','Gastwirt der Azurwacht',NULL,NULL,'Avanzada Azur, tabernero','Avanzada Azur, tabernero',NULL),
|
||||
(220,NULL,'Le Guet d\'Azur, Maître des étables','Stallmeister der Azurwacht',NULL,NULL,'Avanzada Azur, maestro de establos','Avanzada Azur, maestro de establos',NULL),
|
||||
(221,NULL,'Le Guet d\'Azur, Maître des Chasseurs','Jägerlehrer der Azurwacht',NULL,NULL,'Avanzada Azur, instructor de cazadores','Avanzada Azur, instructor de cazadores',NULL),
|
||||
(222,NULL,'Le Guet d\'Azur, Maître des Mages','Magierlehrer der Azurwacht',NULL,NULL,'Avanzada Azur, instructor de magos','Avanzada Azur, instructor de magos',NULL),
|
||||
(223,NULL,'Le Guet d\'Azur, Maître des Paladins','Paladinlehrer der Azurwacht',NULL,NULL,'Avanzada Azur, instructor de paladines','Avanzada Azur, instructor de paladines',NULL),
|
||||
(224,NULL,'Le Guet d\'Azur, Maître des Prêtres','Priesterlehrer der Azurwacht',NULL,NULL,'Avanzada Azur, instructor de sacerdotes','Avanzada Azur, instructor de sacerdotes',NULL),
|
||||
(225,NULL,'Le Guet d\'Azur, Maître des Chamans','Schamanenlehrer der Azurwacht',NULL,NULL,'Avanzada Azur, instructor de chamanes','Avanzada Azur, instructor de chamanes',NULL),
|
||||
(226,NULL,'Le Guet d\'Azur, Maître des Guerriers','Kriegerlehrer der Azurwacht',NULL,NULL,'Avanzada Azur, instructor de guerreros','Avanzada Azur, instructor de guerreros',NULL),
|
||||
(227,NULL,'Le Guet d\'Azur, Alchimiste','Alchemist der Azurwacht',NULL,NULL,'Avanzada Azur, alquimista','Avanzada Azur, alquimista',NULL),
|
||||
(228,NULL,'Point d\'accostage d’Odesyus, Forge','Schmied von Odesyus\' Ankerplatz',NULL,NULL,'Desembarco de Odesyus, herrero','Desembarco de Odesyus, herrero',NULL),
|
||||
(229,NULL,'Point d\'accostage d’Odesyus, Cuisinier','Koch von Odesyus\' Ankerplatz',NULL,NULL,'Desembarco de Odesyus, cocinero','Desembarco de Odesyus, cocinero',NULL),
|
||||
(230,NULL,'Le Guet d\'Azur, Maître des ingénieurs','Ingenieurskunstlehrer der Azurwacht',NULL,NULL,'Avanzada Azur, instructor de ingeniería','Avanzada Azur, instructor de ingeniería',NULL),
|
||||
(231,NULL,'Le Guet d\'Azur, Maître des sécouristes','Lehrer für Erste Hilfe der Azurwacht',NULL,NULL,'Avanzada Azur, instructor de primeros auxilios','Avanzada Azur, instructor de primeros auxilios',NULL),
|
||||
(232,NULL,'Gué d\'Ammen, pêcheuse','Anglerin des Am\'menflusses',NULL,NULL,'Vado Ammen, pescadora','Vado Ammen, pescadora',NULL),
|
||||
(233,NULL,'Le Guet d\'Azur, Herboriste','Kräuterkundiger der Azurwacht',NULL,NULL,'Avanzada Azur, herboristería','Avanzada Azur, herboristería',NULL),
|
||||
(234,NULL,'Repaire des Calmepins, Travailleur du cuir','Lederer der Tannenruhfeste',NULL,NULL,'Bastión Semprepino, peletero','Bastión Semprepino, peletero',NULL),
|
||||
(235,NULL,'Le Guet d\'Azur, Maître des mineurs','Bergbaulehrer der Azurwacht',NULL,NULL,'Avanzada Azur, instructor de minería','Avanzada Azur, instructor de minería',NULL),
|
||||
(236,NULL,'Repaire des Calmepins, Dépeceur','Kürschner der Tannenruhfeste',NULL,NULL,'Bastión Semprepino, desollador','Bastión Semprepino, desollador',NULL),
|
||||
(237,NULL,'Point d\'accostage d’Odesyus, Tailleur','Schneider von Odesyus\' Ankerplatz',NULL,NULL,'Desembarco de Odesyus, sastre','Desembarco de Odesyus, sastre',NULL),
|
||||
(238,NULL,'Amures en cuir et maille de Dalaran','Leder- & Kettenrüstung von Dalaran',NULL,NULL,'Armaduras de Cuero y Malla de Dalaran','Armaduras de Cuero y Malla de Dalaran',NULL),
|
||||
(239,NULL,'Amures et boucliers en plaque de Dalaran','Plattenrüstung & Schilde in Dalaran',NULL,NULL,'Armaduras de Placas y Escudos de Dalaran','Armaduras de Placas y Escudos de Dalaran',NULL),
|
||||
(240,NULL,'La cantine de Shattrath','Wirtshaus von Shattrath',NULL,NULL,'Taberna de Shattrath','Taberna de Shattrath',NULL),
|
||||
(241,NULL,'Banque de Shattrath des Clairvoyants','Bank der Seher von Shattrath',NULL,NULL,'Banco de los Arúspices de Shattrath','Banco de los Arúspices de Shattrath',NULL),
|
||||
(242,NULL,'L\'Auberge de Shattrath des Clairvoyants','Gasthaus der Seher von Shattrath',NULL,NULL,'Posada de los Arúspices de Shattrath','Posada de los Arúspices de Shattrath',NULL),
|
||||
(243,NULL,'Les Taxis de Shattrath','Taxi von Shattrath',NULL,NULL,'Maestro de vuelo de Shattrath','Maestro de vuelo de Shattrath',NULL),
|
||||
(244,NULL,'Etables de Shattrath des Aldor','Stall der Aldor von Shattrath',NULL,NULL,'Establo de los Aldor de Shattrath','Establo de los Aldor de Shattrath',NULL),
|
||||
(245,NULL,'Etables de Shattrath des Clairvoyants','Stall der Seher von Shattrath',NULL,NULL,'Establo de los Arúspices de Shattrath','Establo de los Arúspices de Shattrath',NULL),
|
||||
(246,NULL,'Maîtres de Guerre de Shattrath de l\'Alliance','Kampfmeister der Allianz von Shattrath',NULL,NULL,'Maestros de batalla de la Alianza de Shattrath','Maestros de batalla de la Alianza de Shattrath',NULL),
|
||||
(247,NULL,'Maîtres de Guerre de Shattrath de la Horde','Kampfmeister der Horde von Shattrath',NULL,NULL,'Maestros de batalla de la Horda de Shattrath','Maestros de batalla de la Horda de Shattrath',NULL),
|
||||
(248,NULL,'Alchimiste de Shattrath','Alchemist von Shattrath',NULL,NULL,'Alquimista de Shattrath','Alquimista de Shattrath',NULL),
|
||||
(249,NULL,'Forgeron d\'armures et d\'armes de Shattrath)','Rüstungs- und Waffenmacher von Shattrath',NULL,NULL,'Artífice en Armas y Armaduras de Shattrath','Artífice en Armas y Armaduras de Shattrath',NULL),
|
||||
(250,NULL,'Cuisinier de Shattrath','Koch von Shattrath',NULL,NULL,'Cocina de Shattrath','Cocina de Shattrath',NULL),
|
||||
(251,NULL,'Enchanteur de Shattrath','Verzauberer von Shattrath',NULL,NULL,'Encantadores de Shattrath','Encantadores de Shattrath',NULL),
|
||||
(252,NULL,'Secouriste de Shattrath','Erste Hilfe von Shattrath',NULL,NULL,'Primeros Auxilios de Shattrath','Primeros Auxilios de Shattrath',NULL),
|
||||
(253,NULL,'Joaillier de Shattrath','Juwelenschleifer von Shattrath',NULL,NULL,'Joyero de Shattrath','Joyero de Shattrath',NULL),
|
||||
(254,NULL,'Travailleur du Cuir de Shattrath','Lederer von Shattrath',NULL,NULL,'Peletero de Shattrath','Peletero de Shattrath',NULL),
|
||||
(255,NULL,'Dépeceur de Shattrath','Kürschner von Shattrath',NULL,NULL,'Desollador de Shattrath','Desollador de Shattrath',NULL),
|
||||
(256,NULL,'Puits de mana de Shattrath','Manawebrahmen von Shattrath',NULL,NULL,'Telar de Maná de Shattrath','Telar de Maná de Shattrath',NULL),
|
||||
(257,NULL,'Laboratoire d\'Alchimie de Shattrath','Alchemielabor von Shattrath',NULL,NULL,'Laboratorio de Alquimia de Shattrath','Laboratorio de Alquimia de Shattrath',NULL),
|
||||
(258,NULL,'Vendeur de gemmmes Clairvoyant','Edelsteinhändler der Seher',NULL,NULL,'Vendedor de Gemas de los Arúspices','Vendedor de Gemas de los Arúspices',NULL),
|
||||
(259,NULL,'Vendeur de gemmmes Aldor','Edelsteinhändler der Aldor',NULL,NULL,'Vendedor de Gemas de los Aldor','Vendedor de Gemas de los Aldor',NULL),
|
||||
(260,NULL,'Banque Aldor de Shattrath','Bank der Aldor von Shattrath',NULL,NULL,'Banco de los Aldor de Shattrath','Banco de los Aldor de Shattrath',NULL),
|
||||
(261,NULL,'Auberge Aldor de Shattrath','Gasthaus der Aldor von Shattrath',NULL,NULL,'Posada de los Aldor de Shattrath','Posada de los Aldor de Shattrath',NULL),
|
||||
(262,NULL,'Maître d\'arène de Shattrath','Arenakampfmeister von Shattrath',NULL,NULL,'Maestros de batalla de Arena de Shattrath','Maestros de batalla de Arena de Shattrath',NULL),
|
||||
(263,NULL,'Exodar, Maîtres de Guerre','Kampfmeister der Exodar',NULL,NULL,'El Exodar, maestros de batalla','El Exodar, maestros de batalla',NULL),
|
||||
(264,NULL,'Exodar, Maître d\'arène','Arenakampfmeister der Exodar',NULL,NULL,'El Exodar, maestro de batalla de arena','El Exodar, maestro de batalla de arena',NULL),
|
||||
(265,NULL,'Maître des Mages de Darnassus','Magielehrer von Darnassus',NULL,NULL,'Instructor de magos de Darnassus ','Instructor de magos de Darnassus ',NULL),
|
||||
(266,NULL,'Maître des Paladins de Darnassus','Paladinlehrer von Darnassus',NULL,NULL,'Instructor de paladines de Darnassus','Instructor de paladines de Darnassus',NULL),
|
||||
(267,NULL,'Temple de la Lune','Tempel des Mondes',NULL,NULL,'Templo de la Luna','Templo de la Luna','Храм Луны'),
|
||||
(268,NULL,'Herboristerie de Darnassus','Kräuterkundelehrer von Darnassus',NULL,NULL,'Instructor de herboristería de Darnassus','Instructor de herboristería de Darnassus','Дарнасский учитель травничества'),
|
||||
(269,NULL,'Herboriste Pomeroy','Kräuterkundige Pomeroy',NULL,NULL,'Herborista Pomarrosa','Herborista Pomarrosa','Травница Померой'),
|
||||
(270,NULL,'Arène des égouts de Dalaran ','Arena in der Kanalisation von Dalaran',NULL,NULL,'Arenas de las Cloacas de Dalaran','Arenas de las Cloacas de Dalaran',NULL),
|
||||
(271,NULL,'Banque des égouts de Dalaran ','Bank in der Kanalisation von Dalaran',NULL,NULL,'Banco de las Cloacas de Dalaran','Banco de las Cloacas de Dalaran',NULL),
|
||||
(272,NULL,'Auberge des égouts de Dalaran ','Gasthaus in der Kanalisation von Dalaran',NULL,NULL,'Posada de las Cloacas de Dalaran','Posada de las Cloacas de Dalaran',NULL),
|
||||
(273,NULL,'Tunnel des égouts de Dalaran ','Kanalisationstunnel von Dalaran',NULL,NULL,'Túnel de las Cloacas de Dalaran','Túnel de las Cloacas de Dalaran',NULL),
|
||||
(274,NULL,'Vendeurs des égouts de Dalaran ','Händler in der Kanalisation von Dalaran',NULL,NULL,'Vendedores de las Cloacas de Dalaran','Vendedores de las Cloacas de Dalaran',NULL),
|
||||
(275,NULL,'Banque des Pitons-du-Tonnerre','Bank von Donnerfels',NULL,NULL,'Banco de Cima del Trueno','Banco de Cima del Trueno','Громовой Утес: банк'),
|
||||
(276,NULL,'Perchoir du Coursier du vent','Windreiterhorst',NULL,NULL,'Nidal de los Jinetes del Viento','Nidal de los Jinetes del Viento','Гнездо ветрокрылов'),
|
||||
(277,NULL,'Centre d\'information civique des Pitons-du-Tonnerre','Informationen der Stadtverwaltung von Donnerfels',NULL,NULL,'Información al Ciudadano de Cima del Trueno','Información al Ciudadano de Cima del Trueno','Громовой Утес: городская информация'),
|
||||
(278,NULL,'Auberge des Pitons-du-Tonnerre','Gasthaus von Donnerfels',NULL,NULL,'Posada de Cima del Trueno','Posada de Cima del Trueno','Таверна Громового Утеса'),
|
||||
(279,NULL,'Boite à lettre des Pitons-du-Tonnerre','Briefkasten von Donnerfels',NULL,NULL,'Buzón de Cima del Trueno','Buzón de Cima del Trueno','Громовой Утес: почта'),
|
||||
(280,NULL,'Hôtel des ventes des Pitons-du-Tonnerre','Auktionshaus von Donnerfels',NULL,NULL,'Casa de subastas de Cima del Trueno','Casa de subastas de Cima del Trueno','Громовой Утес: аукционный дом'),
|
||||
(281,NULL,'Ansekhwa','Ansekhwa',NULL,NULL,'Ansekhwa','Ansekhwa','Ансеква'),
|
||||
(282,NULL,'Bulrug','Bulrug',NULL,NULL,'Bulrug','Bulrug','Балруг'),
|
||||
(283,NULL,'Maîtres de Guerre des Pitons-du-Tonnerre','Kampfmeister von Donnerfels',NULL,NULL,'Maestros de batalla, Cima del Trueno','Maestros de batalla, Cima del Trueno','Громовой Утес: военачальники'),
|
||||
(284,NULL,'Zeppelin des Pitons-du-Tonnerre','Zeppelin von Donnerfels',NULL,NULL,'Zepelín de Cima del Trueno','Zepelín de Cima del Trueno','Дирижабль Громового Утеса'),
|
||||
(285,NULL,'Hall des Anciens','Halle der Ältesten',NULL,NULL,'Sala de los Ancestros','Sala de los Ancestros','Зал Старейшин'),
|
||||
(286,NULL,'Hall des chasseurs','Jägerhalle',NULL,NULL,'Recinto de los Cazadores','Recinto de los Cazadores','Зал Охотников'),
|
||||
(287,NULL,'Le bassin des Visions','Teiche der Visionen',NULL,NULL,'Pozas de las Visiones','Pozas de las Visiones','Пруды Видений'),
|
||||
(288,NULL,'Hall des ésprits','Halle der Geister',NULL,NULL,'Sala de los Espíritus','Sala de los Espíritus','Зал Духов'),
|
||||
(289,NULL,'Alchimie de Bena','Benas Alchemie',NULL,NULL,'Bena la Alquimista','Bena la Alquimista','Лаборатория Бены'),
|
||||
(290,NULL,'Forge de Karn','Karns Schmiede',NULL,NULL,'Herrería de Karn','Herrería de Karn','Кузня Карна'),
|
||||
(291,NULL,'Cuisine d\'Aska','Askas Küche',NULL,NULL,'La Cocina de Aska','La Cocina de Aska','Кухня Аски'),
|
||||
(292,NULL,'Enchanteurs Aube-Glorieuse ','Morgenwandlers Verzauberungen',NULL,NULL,'Encantadores Caminalba','Encantadores Caminalba','Чародеи Утренних Путников'),
|
||||
(293,NULL,'Soins spirituels','Spirituelle Heilung',NULL,NULL,'Curación Espiritual','Curación Espiritual','Духовное исцеление'),
|
||||
(294,NULL,'Appâts & équipement du sommet','Gipfelbergs Köder und Ausrüstung',NULL,NULL,'Cebo y Aparejo de la Montaña','Cebo y Aparejo de la Montaña','Снасти и наживка с горных вершин'),
|
||||
(295,NULL,'Herboristerie holistique','Ganzheitliche kräuterkunde',NULL,NULL,'Herboristería Holística','Herboristería Holística','Общее травничество'),
|
||||
(296,NULL,'Calligraphe des Pitons-du-Tonnerre','Inschriften von Donnerfels',NULL,NULL,'Inscripción de Cima del Trueno','Inscripción de Cima del Trueno','Начертатель Громового Утеса'),
|
||||
(297,NULL,'Armurerie des Pitons-du-Tonnerre','Rüstungsschmiede von Donnerfels',NULL,NULL,'Armeros de Cima del Trueno','Armeros de Cima del Trueno','Громовой Утес: оружейники'),
|
||||
(298,NULL,'Géologie de Sabot-de-Pierre','Steinhufgeologie',NULL,NULL,'Geólogos Pezuña Pétrea','Geólogos Pezuña Pétrea','Лавка Геолога'),
|
||||
(299,NULL,'Mooranta','Mooranta',NULL,NULL,'Mooranta','Mooranta','Муранта'),
|
||||
(300,NULL,'Hall des Chasseurs d\'Orgrimmar','Jägerhalle von Orgrimmar',NULL,NULL,'Recinto de los Cazadores de Orgrimmar','Recinto de los Cazadores de Orgrimmar','Зал Охотников'),
|
||||
(301,NULL,'pavillon de Buissombre','Dunkeldornenlodge',NULL,NULL,'Cabaña de Brezo','Cabaña de Brezo','Пристанище Темнотерна'),
|
||||
(302,NULL,'Autel des esprits','Geisterlodge',NULL,NULL,'Recinto de los Espíritus','Recinto de los Espíritus','Обитель Духов'),
|
||||
(303,NULL,'Forteresse de Thrall','Thralls Festung',NULL,NULL,'Fortaleza de Thrall','Fortaleza de Thrall','Крепость Тралла'),
|
||||
(304,NULL,'Confrérie Ombrevive','Bruderschaft der Schattenläufer',NULL,NULL,'Hermandad de la Oscuridad','Hermandad de la Oscuridad','Братство Теней'),
|
||||
(305,NULL,'Enclave de Sombrefeu','Dunkelfeuerenklave',NULL,NULL,'Enclave Fuego Oscuro','Enclave Fuego Oscuro','Анклав Темного Пламени'),
|
||||
(306,NULL,'Hall des braves','Halle der Kriegerhelden',NULL,NULL,'Bastión de los Valientes','Bastión de los Valientes','Зал Отважных'),
|
||||
(307,NULL,'Chez Yelmak. Alchimie et potions','Yelmaks Alchemie und Tränke',NULL,NULL,'Alquimia y Pociones de Yelmak','Alquimia y Pociones de Yelmak','Алхимия и Эликсиры Йелмака'),
|
||||
(308,NULL,'L\'Enclume ardente','Der brennende Amboss',NULL,NULL,'El Yunque en Llamas','El Yunque en Llamas','Пылающая наковальня'),
|
||||
(309,NULL,'Fosse à feu de Borstan','Borstans Feuergrube',NULL,NULL,'Fosa de lava de Borstan','Fosa de lava de Borstan','Жаровня Борстана'),
|
||||
(310,NULL,'Runes de Godan','Godans Runenarbeiten',NULL,NULL,'Runas de Godan','Runas de Godan','Чародейские товары Годана'),
|
||||
(311,NULL,'Atelier de Nogg','Noggs Meistermaschinen',NULL,NULL,'Taller de Nogg','Taller de Nogg','Механическая мастерская Ногга'),
|
||||
(312,NULL,'La survie du plus fort','Der Stärkste überlebt',NULL,NULL,'Larga Vida al Mejor','Larga Vida al Mejor','Естественный отбор'),
|
||||
(313,NULL,'Articles de pêche de Lumak','Lumaks Angeln',NULL,NULL,'Pesca con Lumak','Pesca con Lumak','Рыбное место Лумака'),
|
||||
(314,NULL,'Arboretum de Jandi','Jandis Arboretum',NULL,NULL,'Arboreto de Jandi','Arboreto de Jandi','Дендрарий Джанди'),
|
||||
(315,NULL,'Mine du Canyon rouge','Bergbauunternehmen Rotschlucht',NULL,NULL,'Minería El Cañón Rojo','Minería El Cañón Rojo','Рудник Ржавого каньона'),
|
||||
(316,NULL,'Artisans du cuir kodo','Kodolederer',NULL,NULL,'Curtidores de piel de kodo','Curtidores de piel de kodo','Выделка шкур кодо'),
|
||||
(317,NULL,'Les étoffes de Magar','Magars Tuchwaren',NULL,NULL,'Géneros Magar','Géneros Magar','Портняжное ателье Магара'),
|
||||
(318,NULL,'Hôtel des ventes de Fossoyeuse','Auktionshaus von Unterstadt',NULL,NULL,'Casa de subastas de Entrañas','Casa de subastas de Entrañas','Подгород: аукционный дом'),
|
||||
(319,NULL,'Banque de Fossoyeuse','Bank von Unterstadt',NULL,NULL,'Banco de Entrañas','Banco de Entrañas','Подгород: банк'),
|
||||
(320,NULL,'Coiffeur de Fossoyeuse','Barbier von Unterstadt',NULL,NULL,'Peluquería de Entrañas','Peluquería de Entrañas','Подгородский парикмахер'),
|
||||
(321,NULL,'Eleveur de chauves-souris de Fossoyeuse','Fledermausführer von Unterstadt',NULL,NULL,'Cuidador de murciélagos de Entrañas','Cuidador de murciélagos de Entrañas','Подгород: дрессировщик нетопырей'),
|
||||
(322,NULL,'Maître de Guerre de Fossoyeuse','Kampfmeister von unterstadt',NULL,NULL,'Maestros de batalla, Entrañas','Maestros de batalla, Entrañas','Подгород: военачальники'),
|
||||
(323,NULL,'Maître des guildes de Fossoyeuse','Gildenmeister von Unterstadt',NULL,NULL,'Maestro de hermandad de Entrañas','Maestro de hermandad de Entrañas','Подгород: регистрация гильдий'),
|
||||
(324,NULL,'Auberge de Fossoyeuse','Gasthaus von Unterstadt',NULL,NULL,'Posada de Entrañas','Posada de Entrañas','Подгородская таверна'),
|
||||
(325,NULL,'Serrurier de Fossoyeuse','Schlosser von Unterstadt',NULL,NULL,'Cerrajería de Entrañas','Cerrajería de Entrañas','Подгородский замочник'),
|
||||
(326,NULL,'Boite à lettre de Fossoyeuse','Briefkasten von Unterstadt',NULL,NULL,'Buzón de Entrañas','Buzón de Entrañas','Подгород: почта'),
|
||||
(327,NULL,'Anya Maulray','Anya Maulray',NULL,NULL,'Anya Maulray','Anya Maulray','Аня Молрэ'),
|
||||
(328,NULL,'Archibald','Archibald',NULL,NULL,'Archibald','Archibald','Арчибальд'),
|
||||
(329,NULL,'Zeppelin de Fossoyeuse','Zeppelin von Unterstadt',NULL,NULL,'Zepelín de Entrañas','Zepelín de Entrañas','Подгород: дирижабль'),
|
||||
(330,NULL,'Championne Cyssa Auberose','Champion Cyssa Dämmerrose',NULL,NULL,'Campeona Cyssa Rosalba','Campeona Cyssa Rosalba','Воительница Цисса Роза Рассвета'),
|
||||
(331,NULL,'Maîtres des Mages de Fossoyeuse','Magierlehrer von Unterstadt',NULL,NULL,'Instructores de magos de Entrañas','Instructores de magos de Entrañas','Подгород: наставники магов'),
|
||||
(332,NULL,'Maîtres des Prêtres de Fossoyeuse','Priesterlehrer von Unterstadt',NULL,NULL,'Instructores de sacerdotes de Entrañas','Instructores de sacerdotes de Entrañas','Подгород: наставник жрецов'),
|
||||
(333,NULL,'Maîtres des Voleurs de Fossoyeuse','Schurkenlehrer von Unterstadt',NULL,NULL,'Instructores de pícaros de Entrañas','Instructores de pícaros de Entrañas','Подгород: наставник разбойников'),
|
||||
(334,NULL,'Maîtres des Démonistes de Fossoyeuse','Hexenmeisterlehrer von Unterstadt',NULL,NULL,'Instructores de brujos de Entrañas','Instructores de brujos de Entrañas','Подгород: наставники чернокнижников'),
|
||||
(335,NULL,'Maîtres des Guerriers de Fossoyeuse','Kriegerlehrer von Unterstadt',NULL,NULL,'Instructores de guerreros de Entrañas','Instructores de guerreros de Entrañas','Подгород: наставник воинов'),
|
||||
(336,NULL,'L\'Apothicarium','Das Apothekarium',NULL,NULL,'El Apothecarium','El Apothecarium','Район Фармацевтов'),
|
||||
(337,NULL,'Maître des Forgerons de Fossoyeuse','Schmiedekunstlehrer von Unterstadt',NULL,NULL,'Instructor de herrería de Entrañas','Instructor de herrería de Entrañas','Подгородский учитель кузнечного дела'),
|
||||
(338,NULL,'Maître des Cuisiniers de Fossoyeuse','Kochkunstlehrer von Unterstadt',NULL,NULL,'Profesor de cocina de Entrañas','Profesor de cocina de Entrañas','Подгород: Учитель кулинарии'),
|
||||
(339,NULL,'Maître des Enchanteurs de Fossoyeuse','Verzauberkunstlehrer von Unterstadt',NULL,NULL,'Instructor de encantamiento de Entrañas','Instructor de encantamiento de Entrañas','Подгородский учитель наложения чар'),
|
||||
(340,NULL,'Maître des Ingénieurs de Fossoyeuse','Ingenieurskunstlehrer von Unterstadt',NULL,NULL,'Instructor de ingeniería de Entrañas','Instructor de ingeniería de Entrañas','Подгородский учитель инженерного дела'),
|
||||
(341,NULL,'Maître des Sécouristes de Fossoyeuse','Lehrer für Erste hilfe von Unterstadt',NULL,NULL,'Instructor de primeros auxilios de Entrañas','Instructor de primeros auxilios de Entrañas','Подгород: учитель первой помощи'),
|
||||
(342,NULL,'Maître des Pêcheurs de Fossoyeuse','Angellehrer von Unterstadt',NULL,NULL,'Instructor de pesca de Entrañas','Instructor de pesca de Entrañas','Подгородский учитель рыбной ловли'),
|
||||
(343,NULL,'Maître des Herboristes de Fossoyeuse','Kräuterkundelehrer von Unterstadt',NULL,NULL,'Instructor de herboristería de Entrañas','Instructor de herboristería de Entrañas','Подгородский учитель травничества'),
|
||||
(344,NULL,'Maître des Calligraphes de Fossoyeuse','Inschriften von Unterstadt',NULL,NULL,'Inscripción de Entrañas','Inscripción de Entrañas','Подгородский начертатель'),
|
||||
(345,NULL,'Maître des Travailleurs du cuir de Fossoyeuse','Lederverarbeitungslehrer von Unterstadt',NULL,NULL,'Instructor de peletería de Entrañas','Instructor de peletería de Entrañas','Подгородский учитель кожевничества'),
|
||||
(346,NULL,'Maître des Dépeceurs de Fossoyeuse','Kürschnerlehrer von Unterstadt',NULL,NULL,'Instructores de desuello de Entrañas','Instructores de desuello de Entrañas','Подгородский учитель снятия шкур'),
|
||||
(347,NULL,'Maître des Mineurs de Fossoyeuse','Bergbaulehrer von Unterstadt',NULL,NULL,'Instructor de minería de Entrañas','Instructor de minería de Entrañas','Подгородский учитель горного дела'),
|
||||
(348,NULL,'Maître des Tailleurs de Fossoyeuse','Schneiderlehrer von Unterstadt',NULL,NULL,'Profesor de sastrería de Entrañas','Profesor de sastrería de Entrañas','Подгородский учитель портняжного дела'),
|
||||
(349,NULL,'Lune-d\'argent, Hôtel des ventes','Auktionshaus von Silbermond',NULL,NULL,'Ciudad de Lunargenta, casa de subastas','Ciudad de Lunargenta, casa de subastas',NULL),
|
||||
(350,NULL,'Lune-d\'argent, Hôtel des ventes','Auktionshaus von Silbermond',NULL,NULL,'Ciudad de Lunargenta, casa de subastas','Ciudad de Lunargenta, casa de subastas',NULL),
|
||||
(351,NULL,'Lune-d\'argent, Banque','Bank von Silbermond',NULL,NULL,'Ciudad de Lunargenta, banco','Ciudad de Lunargenta, banco',NULL),
|
||||
(352,NULL,'Lune-d\'argent, Banque','Bank von Silbermond',NULL,NULL,'Ciudad de Lunargenta, banco','Ciudad de Lunargenta, banco',NULL),
|
||||
(353,NULL,'Lune-d\'argent, Maître de vol','Flugmeister von Silbermond',NULL,NULL,'Ciudad de Lunargenta, maestro de vuelo','Ciudad de Lunargenta, maestro de vuelo',NULL),
|
||||
(354,NULL,'Lune-d\'argent, Guilde','Gildenhaus von Silbermond',NULL,NULL,'Ciudad de Lunargenta, casa de la Hermandad','Ciudad de Lunargenta, casa de la Hermandad',NULL),
|
||||
(355,NULL,'Lune-d\'argent, Auberge','Gasthaus von Silbermond',NULL,NULL,'Ciudad de Lunargenta, posada','Ciudad de Lunargenta, posada',NULL),
|
||||
(356,NULL,'Lune-d\'argent, Auberge','Gasthaus von Silbermond',NULL,NULL,'Ciudad de Lunargenta, posada','Ciudad de Lunargenta, posada',NULL),
|
||||
(357,NULL,'Lune-d\'argent, Boite aux lettres','Briefkasten von Silbermond',NULL,NULL,'Ciudad de Lunargenta, buzón de correo','Ciudad de Lunargenta, buzón de correo',NULL),
|
||||
(358,NULL,'Lune-d\'argent, Maître des écuries','Stallmeister von Silbermond',NULL,NULL,'Ciudad de Lunargenta, maestro de establos','Ciudad de Lunargenta, maestro de establos',NULL),
|
||||
(359,NULL,'Lune-d\'argent, Maître des armes','Waffenmeister von Silbermond',NULL,NULL,'Ciudad de Lunargenta, maestro de armas','Ciudad de Lunargenta, maestro de armas',NULL),
|
||||
(360,NULL,'Lune-d\'argent, Maître de Guerre','Kampfmeister von Silbermond',NULL,NULL,'Ciudad de Lunargenta, maestros de batalla','Ciudad de Lunargenta, maestros de batalla',NULL),
|
||||
(361,NULL,'Lune-d\'argent, Maître des Druides','Druidenlehrer von Silbermond',NULL,NULL,'Ciudad de Lunargenta, instructor de druidas','Ciudad de Lunargenta, instructor de druidas',NULL),
|
||||
(362,NULL,'Lune-d\'argent, Maître des Chasseurs','Jägerlehrer von Silbermond',NULL,NULL,'Ciudad de Lunargenta, instructor de cazadores','Ciudad de Lunargenta, instructor de cazadores',NULL),
|
||||
(363,NULL,'Lune-d\'argent, Maître des Mages','Magielehrer von Silbermond',NULL,NULL,'Ciudad de Lunargenta, instructor de magos','Ciudad de Lunargenta, instructor de magos',NULL),
|
||||
(364,NULL,'Lune-d\'argent, Maître des Paladins','Paladinlehrer von Silbermond',NULL,NULL,'Ciudad de Lunargenta, instructor de paladines','Ciudad de Lunargenta, instructor de paladines',NULL),
|
||||
(365,NULL,'Lune-d\'argent, Maître des Prêtres','Priesterlehrer von Silbermond',NULL,NULL,'Ciudad de Lunargenta, instructor de sacerdotes','Ciudad de Lunargenta, instructor de sacerdotes',NULL),
|
||||
(366,NULL,'Lune-d\'argent, Maître des Voleurs','Schurkenlehrer von Silbermond',NULL,NULL,'Ciudad de Lunargenta, instructor de pícaros','Ciudad de Lunargenta, instructor de pícaros',NULL),
|
||||
(367,NULL,'Lune-d\'argent, Maître des Démonistes','Hexenmeisterlehrer von Silbermond',NULL,NULL,'Ciudad de Lunargenta, instructores de brujos','Ciudad de Lunargenta, instructores de brujos',NULL),
|
||||
(368,NULL,'Lune-d\'argent, Alchimiste','Alchemie von Silbermond',NULL,NULL,'Ciudad de Lunargenta, alquimia','Ciudad de Lunargenta, alquimia',NULL),
|
||||
(369,NULL,'Lune-d\'argent, Forgeron','Schmiedekunst von Silbermond',NULL,NULL,'Ciudad de Lunargenta, herrería','Ciudad de Lunargenta, herrería',NULL),
|
||||
(370,NULL,'Lune-d\'argent, Cuisinier','Kochen in Silbermond',NULL,NULL,'Ciudad de Lunargenta, cocina','Ciudad de Lunargenta, cocina',NULL),
|
||||
(371,NULL,'Lune-d\'argent, Enchantement','Verzauberkunst von Silbermond',NULL,NULL,'Ciudad de Lunargenta, encantamiento','Ciudad de Lunargenta, encantamiento',NULL),
|
||||
(372,NULL,'Lune-d\'argent, Ingénierie','Ingenieurskunst von Silbermond',NULL,NULL,'Ciudad de Lunargenta, ingeniería','Ciudad de Lunargenta, ingeniería',NULL),
|
||||
(373,NULL,'Lune-d\'argent, Secourisme','Erste Hilfe von Silbermond',NULL,NULL,'Ciudad de Lunargenta, primeros auxilios','Ciudad de Lunargenta, primeros auxilios',NULL),
|
||||
(374,NULL,'Lune-d\'argent, Pêche','Angeln von Silbermond',NULL,NULL,'Ciudad de Lunargenta, pesca','Ciudad de Lunargenta, pesca',NULL),
|
||||
(375,NULL,'Lune-d\'argent, Herboristerie','Kräuterkunde von Silbermond',NULL,NULL,'Ciudad de Lunargenta, herboristería','Ciudad de Lunargenta, herboristería',NULL),
|
||||
(376,NULL,'Lune-d\'argent, Calligraphie','Inschriften von Silbermond',NULL,NULL,'Inscripción de la Ciudad de Lunargenta','Inscripción de la Ciudad de Lunargenta',NULL),
|
||||
(377,NULL,'Lune-d\'argent, Joaillerie','Juwelenschleifen von Silbermond',NULL,NULL,'Ciudad de Lunargenta, joyería','Ciudad de Lunargenta, joyería',NULL),
|
||||
(378,NULL,'Lune-d\'argent, Travail du Cuir','Lederverarbeitung von Silbermond',NULL,NULL,'Ciudad de Lunargenta, peletería','Ciudad de Lunargenta, peletería',NULL),
|
||||
(379,NULL,'Lune-d\'argent, Minage','Bergbau von Silbermond',NULL,NULL,'Ciudad de Lunargenta, minería','Ciudad de Lunargenta, minería',NULL),
|
||||
(380,NULL,'Lune-d\'argent, Dépeçage','Kürschnerei von Silbermond',NULL,NULL,'Ciudad de Lunargenta, desuello','Ciudad de Lunargenta, desuello',NULL),
|
||||
(381,NULL,'Lune-d\'argent, Couture','Schneiderei von Silbermond',NULL,NULL,'Ciudad de Lunargenta, sastrería','Ciudad de Lunargenta, sastrería',NULL),
|
||||
(382,NULL,'Lune-d\'argent, Puit de Mana','Manawebrahmen von Silbermond',NULL,NULL,'Ciudad de Lunargenta, telar de maná','Ciudad de Lunargenta, telar de maná',NULL),
|
||||
(383,NULL,'Place de l\'Épervier, l\'Aubergiste','Gastwirt vom Falkenplatz',NULL,NULL,'Plaza Alalcón, tabernero','Plaza Alalcón, tabernero',NULL),
|
||||
(384,NULL,'Place de l\'Épervier, Maître des écuries','Stallmeister vom Falkenplatz',NULL,NULL,'Plaza Alalcón, maestro de establos','Plaza Alalcón, maestro de establos',NULL),
|
||||
(385,NULL,'Place de l\'Épervier, Maître des Chasseurs','Jägerlehrer vom Falkenplatz',NULL,NULL,'Plaza Alalcón, instructor de cazadores','Plaza Alalcón, instructor de cazadores',NULL),
|
||||
(386,NULL,'Place de l\'Épervier, Maître des Mages','Magielehrer vom Falkenplatz',NULL,NULL,'Plaza Alalcón, instructor de magos','Plaza Alalcón, instructor de magos',NULL),
|
||||
(387,NULL,'Place de l\'Épervier, Maître des Paladins','Paladinlehrer vom Falkenplatz',NULL,NULL,'Plaza Alalcón, instructor de paladines','Plaza Alalcón, instructor de paladines',NULL),
|
||||
(388,NULL,'Place de l\'Épervier, Maître des Prêtres','Priesterlehrer vom Falkenplatz',NULL,NULL,'Plaza Alalcón, instructor de sacerdotes','Plaza Alalcón, instructor de sacerdotes',NULL),
|
||||
(389,NULL,'Place de l\'Épervier, Maître des Voleurs','Schurkenlehrer vom Falkenplatz',NULL,NULL,'Plaza Alalcón, instructor de pícaros','Plaza Alalcón, instructor de pícaros',NULL),
|
||||
(390,NULL,'Place de l\'Épervier, Maître des Démonistes','Hexenmeisterlehrer vom Falkenplatz',NULL,NULL,'Plaza Alalcón, instructor de brujos','Plaza Alalcón, instructor de brujos',NULL),
|
||||
(391,NULL,'Havre de Saltheril, Alchimiste','Alchemist von Saltherils Hafen',NULL,NULL,'Refugio de Saltheril, alquimista','Refugio de Saltheril, alquimista',NULL),
|
||||
(392,NULL,'La Retraite des pérégrins, Forgeron','Schmied der Zuflucht der Weltenwanderer',NULL,NULL,'El Retiro del Errante, herrero','El Retiro del Errante, herrero',NULL),
|
||||
(393,NULL,'la place de l\'Epervier, Cuisinier','Koch vom Falkenplatz',NULL,NULL,'Plaza Alalcón, cocinero','Plaza Alalcón, cocinero',NULL),
|
||||
(394,NULL,'Havre de Saltheril, Enchanteur','Verzauberer von Saltherils Hafen',NULL,NULL,'Refugio de Saltheril, encantador','Refugio de Saltheril, encantador',NULL),
|
||||
(395,NULL,'la place de l\'Epervier, Secourisme','Lehrer für Erste Hilfe vom Falkenplatz',NULL,NULL,'Plaza Alalcón, instructor de primeros auxilios','Plaza Alalcón, instructor de primeros auxilios',NULL),
|
||||
(396,NULL,'Havre de Saltheril, Herboriste','Kräuterkundiger von Saltherils Hafen',NULL,NULL,'Refugio de Saltheril, herborista','Refugio de Saltheril, herborista',NULL),
|
||||
(397,NULL,'la place de l\'Epervier, Joaillier','Juwelenschleifer vom Falkenplatz',NULL,NULL,'Plaza Alalcón, joyero','Plaza Alalcón, joyero',NULL),
|
||||
(398,NULL,'Bois des Chants éternels, Travailleur du cuir','Lederer des Immersangwalds',NULL,NULL,'Bosque Canción Eterna, peletero','Bosque Canción Eterna, peletero',NULL),
|
||||
(399,NULL,'Bois des Chants éternels, Dépeceur','Kürschner des Immersangwalds',NULL,NULL,'Bosque Canción Eterna, desollador','Bosque Canción Eterna, desollador',NULL),
|
||||
(400,NULL,'Havre de Saltheril, Couturier','Schneider von Saltherils Hafen',NULL,NULL,'Refugio de Saltheril, sastre','Refugio de Saltheril, sastre',NULL),
|
||||
(401,NULL,'Gadjets de Fuseressort','Gerätehandel Sprungspindel',NULL,NULL,'Artilugios de Muello','Artilugios de Muello','Безделушки Пружиннера'),
|
||||
(402,NULL,'Yarr Martèlepierre','Yarr Hammerstein',NULL,NULL,'Yarr Martillal','Yarr Martillal','Ярр Камнедроб'),
|
||||
(403,NULL,'Auberge de Tranchecolline','Gasthaus Klingenhügel',NULL,NULL,'Posada de Cerrotajo','Posada de Cerrotajo','Таверна Колючего Холма'),
|
||||
(404,NULL,'Shoja\'my ','Shoja\'my',NULL,NULL,'Shoja\'my','Shoja\'my','Шоя\'май'),
|
||||
(405,NULL,'Thotar','Thotar',NULL,NULL,'Thotar','Thotar','Тотар'),
|
||||
(406,NULL,'Un\'Thuwa','Un\'Thuwa',NULL,NULL,'Un\'Thuwa','Un\'Thuwa','Ун\'Тува'),
|
||||
(407,NULL,'Tai\'jin','Tai\'jin',NULL,NULL,'Tai\'jin','Tai\'jin','Тай\'джин'),
|
||||
(408,NULL,'Kaplak','Kaplak',NULL,NULL,'Kaplak','Kaplak','Каплак'),
|
||||
(409,NULL,'Swart','Swart',NULL,NULL,'Swart','Swart','Злобр'),
|
||||
(410,NULL,'Dhugru Soif-de-carnage','Dhugru Blutgier',NULL,NULL,'Dhugru Ansiagore','Dhugru Ansiagore','Дхугру Кровожадный'),
|
||||
(411,NULL,'Tarshaw Salbalafre','Tarshaw Raunarbe',NULL,NULL,'Tarshaw Marcadentada','Tarshaw Marcadentada','Таршо Рваный Шрам'),
|
||||
(412,NULL,'Miao\'zan','Miao\'zan',NULL,NULL,'Miao\'zan','Miao\'zan','Мяо\'зан'),
|
||||
(413,NULL,'Dwukk','Dwukk',NULL,NULL,'Dwukk','Dwukk','Двукк'),
|
||||
(414,NULL,'Mukdrak','Mukdrak',NULL,NULL,'Mukdrak','Mukdrak','Мукдрак'),
|
||||
(415,NULL,'Rawrk','Rawrk',NULL,NULL,'Rawrk','Rawrk','Роурк'),
|
||||
(416,NULL,'Lau\'Tiki','Lau\'Tiki',NULL,NULL,'Lau\'Tiki','Lau\'Tiki','Лау\'Тики'),
|
||||
(417,NULL,'Mishiki','Mishiki',NULL,NULL,'Mishiki','Mishiki','Мишики'),
|
||||
(418,NULL,'Krunn','Krunn',NULL,NULL,'Krunn','Krunn','Крунн'),
|
||||
(419,NULL,'Auberge du Sabot-de-Sang','Gasthaus der Bluthufe',NULL,NULL,'Posada del Poblado Pezuña de Sangre','Posada del Poblado Pezuña de Sangre','Таверна в Деревне Кровавого Копыта'),
|
||||
(420,NULL,'Seikwa','Seikwa',NULL,NULL,'Seikwa','Seikwa','Сейква'),
|
||||
(421,NULL,'Gennia Totem-Runique','Gennia Runentotem',NULL,NULL,'Gennia Tótem de Runa','Gennia Tótem de Runa','Генния Рунический Тотем'),
|
||||
(422,NULL,'Yaw Crin-Tranchant','Yaw Scharfmähne',NULL,NULL,'Yaw Crinafilada','Yaw Crinafilada','Йо Колкая Грива'),
|
||||
(423,NULL,'Narm Chasse-le-Ciel','Narm Himmelsjäger',NULL,NULL,'Narm Cazacielo','Narm Cazacielo','Нарм Небесный Охотник'),
|
||||
(424,NULL,'Krang Sabot-de-Pierre','Krang Steinhuf',NULL,NULL,'Krang Pezuña Pétrea','Krang Pezuña Pétrea','Кранг Каменное Копыто'),
|
||||
(425,NULL,'Pyall Sabots-Feutrés','Pyall Leisetreter',NULL,NULL,'Pyall Trancosilencio','Pyall Trancosilencio','Пиалл Тихая Поступь'),
|
||||
(426,NULL,'Vira Jeune-Sabot','Vira Junghuf',NULL,NULL,'Vira Pezuña Joven','Vira Pezuña Joven','Вира Нежное Копыто'),
|
||||
(427,NULL,'Uthan Eau-Plate','Uthan Stillwasser',NULL,NULL,'Uthan Aguaserena','Uthan Aguaserena','Утан Тихая Заводь'),
|
||||
(428,NULL,'Chaw Cuir-Solide','Chaw Starkfell',NULL,NULL,'Chaw Pellejofuerte','Chaw Pellejofuerte','Чоу Толстая Шкура'),
|
||||
(429,NULL,'Yonn Entaille-Profonde','Yonn Pelzscherer',NULL,NULL,'Yonn Corte Profundo','Yonn Corte Profundo','Йонн Глубокий Надрез'),
|
||||
(430,NULL,'La Taverne du pendu','Taverne Zur Galgenschlinge',NULL,NULL,'Mesón La Horca','Mesón La Horca','Таверна \"Петля висельника\"'),
|
||||
(431,NULL,'La Taverne du pendu','Taverne Zur Galgenschlinge',NULL,NULL,'Mesón La Horca','Mesón La Horca','Таверна \"Петля висельника\"'),
|
||||
(432,NULL,'Morganus','Morganus',NULL,NULL,'Morganus','Morganus','Морганус'),
|
||||
(433,NULL,'Cain Chantefeu','Cain Feuerlied',NULL,NULL,'Cain Pirosón','Cain Pirosón','Кейн Песнь Пламени'),
|
||||
(434,NULL,'Sombre clerc Beryl','Dunkler Kleriker Beryll',NULL,NULL,'Clérigo oscuro Beryl','Clérigo oscuro Beryl','Темный священник Берил'),
|
||||
(435,NULL,'Marion Call','Marion Kall',NULL,NULL,'Marion Call','Marion Call','Марион Зов'),
|
||||
(436,NULL,'Rupert Boch','Rupert Boch',NULL,NULL,'Rupert Boch','Rupert Boch','Руперт Бош'),
|
||||
(437,NULL,'Austil de Mon','Austil de Mon',NULL,NULL,'Austil de Mon','Austil de Mon','Остил де Мон'),
|
||||
(438,NULL,'Carolai Anise','Carolai Anise',NULL,NULL,'Carolai Anise','Carolai Anise','Каролай Аниса'),
|
||||
(439,NULL,'Vance Tristefosse','Vance Niederglimm',NULL,NULL,'Vance Bajopenumbra','Vance Bajopenumbra','Ванс Мрачнейший'),
|
||||
(440,NULL,'Infirmière Neela','Schwester Neela',NULL,NULL,'Enfermera Neela','Enfermera Neela','Сиделка Нила'),
|
||||
(441,NULL,'Clyde Kellen','Clyde Kellen',NULL,NULL,'Clyde Kellen','Clyde Kellen','Клайд Келлен'),
|
||||
(442,NULL,'Faruza','Faruza',NULL,NULL,'Faruza','Faruza','Фаруза'),
|
||||
(443,NULL,'Shelene Rhobart','Shelene Rhobart',NULL,NULL,'Shelene Rhobart','Shelene Rhobart','Шелена Робарт'),
|
||||
(444,NULL,'Rand Rhobart','Rand Rhobart',NULL,NULL,'Rand Rhobart','Rand Rhobart','Рэнд Робарт'),
|
||||
(445,NULL,'Bowen Brisboise','Bowen Brisboise',NULL,NULL,'Bowen Bribuesa','Bowen Bribuesa','Боуэн Брисбойс'),
|
||||
(446,NULL,'La Taverne du pendu','Taverne Zur Galgenschlinge',NULL,NULL,'Mesón La Horca','Mesón La Horca','Таверна \"Петля висельника\"'),
|
||||
(447,NULL,'Morganus','Morganus',NULL,NULL,'','','Морганус'),
|
||||
(448,NULL,'Souvenirs de la fête des brasseurs','Braufest Souvenirs',NULL,NULL,'','',NULL),
|
||||
(449,NULL,'Bélier de course de la fête des brasseurs','Braufest Ram Racing',NULL,NULL,'','',NULL),
|
||||
(450,NULL,'Le club de la Bière du mois, Forgefer','Bier des Monats e.V. Eisenschmiede',NULL,NULL,'','',NULL),
|
||||
(451,NULL,'Souvenirs de la fête des brasseurs Goblin','Goblin Braufest Souvenirs',NULL,NULL,'','',NULL),
|
||||
(452,NULL,'Bélier de course de la fête des brasseurs Goblin','Bier des Monats e.V. Orgrimmar',NULL,NULL,'','',NULL),
|
||||
(453,NULL,'Le club de la Bière du mois, Orgrimmar',NULL,NULL,NULL,'','',NULL);
|
||||
/*!40000 ALTER TABLE `locales_points_of_interest` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ CREATE TABLE `npc_text`
|
|||
`text0_0` longtext,
|
||||
`text0_1` longtext,
|
||||
`lang0` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`prob0` float NOT NULL DEFAULT '0',
|
||||
`Probability0` float NOT NULL DEFAULT '0',
|
||||
`em0_0` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`em0_1` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`em0_2` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
|
|
@ -23,7 +23,7 @@ CREATE TABLE `npc_text`
|
|||
`text1_0` longtext,
|
||||
`text1_1` longtext,
|
||||
`lang1` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`prob1` float NOT NULL DEFAULT '0',
|
||||
`Probability1` float NOT NULL DEFAULT '0',
|
||||
`em1_0` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`em1_1` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`em1_2` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
|
|
@ -33,7 +33,7 @@ CREATE TABLE `npc_text`
|
|||
`text2_0` longtext,
|
||||
`text2_1` longtext,
|
||||
`lang2` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`prob2` float NOT NULL DEFAULT '0',
|
||||
`Probability2` float NOT NULL DEFAULT '0',
|
||||
`em2_0` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`em2_1` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`em2_2` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
|
|
@ -43,7 +43,7 @@ CREATE TABLE `npc_text`
|
|||
`text3_0` longtext,
|
||||
`text3_1` longtext,
|
||||
`lang3` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`prob3` float NOT NULL DEFAULT '0',
|
||||
`Probability3` float NOT NULL DEFAULT '0',
|
||||
`em3_0` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`em3_1` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`em3_2` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
|
|
@ -53,7 +53,7 @@ CREATE TABLE `npc_text`
|
|||
`text4_0` longtext,
|
||||
`text4_1` longtext,
|
||||
`lang4` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`prob4` float NOT NULL DEFAULT '0',
|
||||
`Probability4` float NOT NULL DEFAULT '0',
|
||||
`em4_0` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`em4_1` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`em4_2` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
|
|
@ -63,7 +63,7 @@ CREATE TABLE `npc_text`
|
|||
`text5_0` longtext,
|
||||
`text5_1` longtext,
|
||||
`lang5` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`prob5` float NOT NULL DEFAULT '0',
|
||||
`Probability5` float NOT NULL DEFAULT '0',
|
||||
`em5_0` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`em5_1` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`em5_2` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
|
|
@ -73,7 +73,7 @@ CREATE TABLE `npc_text`
|
|||
`text6_0` longtext,
|
||||
`text6_1` longtext,
|
||||
`lang6` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`prob6` float NOT NULL DEFAULT '0',
|
||||
`Probability6` float NOT NULL DEFAULT '0',
|
||||
`em6_0` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`em6_1` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`em6_2` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
|
|
@ -83,7 +83,7 @@ CREATE TABLE `npc_text`
|
|||
`text7_0` longtext,
|
||||
`text7_1` longtext,
|
||||
`lang7` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`prob7` float NOT NULL DEFAULT '0',
|
||||
`Probability7` float NOT NULL DEFAULT '0',
|
||||
`em7_0` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`em7_1` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`em7_2` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
|
|
|
|||
|
|
@ -9,13 +9,13 @@ DROP TABLE IF EXISTS `npc_trainer`;
|
|||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `npc_trainer`
|
||||
(
|
||||
`entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`spell` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`spellcost` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`reqskill` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`reqskillvalue` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`reqlevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`entry`,`spell`)
|
||||
`ID` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`SpellID` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`MoneyCost` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`ReqSkillLine` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`ReqSkillRank` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`ReqLevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`SpellID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,11 @@ DROP TABLE IF EXISTS `page_text`;
|
|||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `page_text`
|
||||
(
|
||||
`entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`text` longtext NOT NULL,
|
||||
`next_page` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '1',
|
||||
PRIMARY KEY (`entry`)
|
||||
`ID` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`Text` longtext NOT NULL,
|
||||
`NextPageID` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` smallint(5) DEFAULT '0',
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Item System';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
|
|
|
|||
|
|
@ -9,9 +9,9 @@ DROP TABLE IF EXISTS `player_xp_for_level`;
|
|||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `player_xp_for_level`
|
||||
(
|
||||
`lvl` tinyint(3) unsigned NOT NULL,
|
||||
`xp_for_next_level` int(10) unsigned NOT NULL,
|
||||
PRIMARY KEY (`lvl`)
|
||||
`Level` tinyint(3) unsigned NOT NULL,
|
||||
`Experience` int(10) unsigned NOT NULL,
|
||||
PRIMARY KEY (`Level`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
|
|
|
|||
|
|
@ -9,14 +9,14 @@ DROP TABLE IF EXISTS `points_of_interest`;
|
|||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `points_of_interest`
|
||||
(
|
||||
`entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`x` float NOT NULL DEFAULT '0',
|
||||
`y` float NOT NULL DEFAULT '0',
|
||||
`icon` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`flags` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`data` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`icon_name` text NOT NULL,
|
||||
PRIMARY KEY (`entry`)
|
||||
`ID` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`PositionX` float NOT NULL DEFAULT '0',
|
||||
`PositionY` float NOT NULL DEFAULT '0',
|
||||
`Icon` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`Flags` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`Data` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`Name` text NOT NULL,
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
|
|
|
|||
|
|
@ -9,16 +9,16 @@ DROP TABLE IF EXISTS `quest_poi`;
|
|||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `quest_poi`
|
||||
(
|
||||
`questId` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`QuestID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`id` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`objIndex` int(11) NOT NULL DEFAULT '0',
|
||||
`mapid` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`ObjectiveIndex` int(11) NOT NULL DEFAULT '0',
|
||||
`MapID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`WorldMapAreaId` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`FloorId` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`unk3` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`unk4` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`questId`,`id`),
|
||||
KEY `idx` (`questId`,`id`)
|
||||
`Floor` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Priority` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Flags` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`QuestID`,`id`),
|
||||
KEY `idx` (`QuestID`,`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
|
|
|
|||
|
|
@ -9,13 +9,13 @@ DROP TABLE IF EXISTS `quest_poi_points`;
|
|||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `quest_poi_points`
|
||||
(
|
||||
`questId` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`id` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`idx` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`x` int(11) NOT NULL DEFAULT '0',
|
||||
`y` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`questId`,`id`,`idx`),
|
||||
KEY `questId_id` (`questId`,`id`)
|
||||
`QuestID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Idx1` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Idx2` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`X` int(11) NOT NULL DEFAULT '0',
|
||||
`Y` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`QuestID`,`Idx1`,`Idx2`),
|
||||
KEY `questId_id` (`QuestID`,`Idx1`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
|
|
|
|||
|
|
@ -9,14 +9,14 @@ DROP TABLE IF EXISTS `quest_template`;
|
|||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `quest_template`
|
||||
(
|
||||
`Id` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`ID` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`Method` tinyint(3) unsigned NOT NULL DEFAULT '2',
|
||||
`Level` smallint(3) NOT NULL DEFAULT '1',
|
||||
`QuestLevel` smallint(3) NOT NULL DEFAULT '1',
|
||||
`MinLevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`MaxLevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`ZoneOrSort` smallint(6) NOT NULL DEFAULT '0',
|
||||
`Type` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`SuggestedPlayers` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`QuestSortID` smallint(6) NOT NULL DEFAULT '0',
|
||||
`QuestType` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`SuggestedGroupNum` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`LimitTime` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`RequiredClasses` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RequiredRaces` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
|
|
@ -48,56 +48,56 @@ CREATE TABLE `quest_template`
|
|||
`SourceSpellId` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`Flags` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`SpecialFlags` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardTitleId` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardTitle` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`RequiredPlayerKills` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardTalents` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardArenaPoints` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardItemId1` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardItemId2` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardItemId3` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardItemId4` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardItemCount1` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardItemCount2` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardItemCount3` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardItemCount4` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemId1` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemId2` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemId3` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemId4` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemId5` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemId6` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemCount1` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemCount2` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemCount3` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemCount4` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemCount5` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemCount6` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardFactionId1` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction id from Faction.dbc in this case',
|
||||
`RewardFactionId2` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction id from Faction.dbc in this case',
|
||||
`RewardFactionId3` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction id from Faction.dbc in this case',
|
||||
`RewardFactionId4` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction id from Faction.dbc in this case',
|
||||
`RewardFactionId5` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction id from Faction.dbc in this case',
|
||||
`RewardFactionValueId1` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RewardFactionValueId2` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RewardFactionValueId3` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RewardFactionValueId4` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RewardFactionValueId5` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RewardFactionValueIdOverride1` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RewardFactionValueIdOverride2` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RewardFactionValueIdOverride3` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RewardFactionValueIdOverride4` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RewardFactionValueIdOverride5` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RewardItem1` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardItem2` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardItem3` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardItem4` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardAmount1` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardAmount2` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardAmount3` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardAmount4` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemID1` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemID2` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemID3` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemID4` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemID5` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemID6` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemQuantity1` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemQuantity2` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemQuantity3` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemQuantity4` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemQuantity5` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardChoiceItemQuantity6` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RewardFactionID1` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction id from Faction.dbc in this case',
|
||||
`RewardFactionID2` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction id from Faction.dbc in this case',
|
||||
`RewardFactionID3` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction id from Faction.dbc in this case',
|
||||
`RewardFactionID4` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction id from Faction.dbc in this case',
|
||||
`RewardFactionID5` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction id from Faction.dbc in this case',
|
||||
`RewardFactionValue1` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RewardFactionValue2` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RewardFactionValue3` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RewardFactionValue4` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RewardFactionValue5` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RewardFactionOverride1` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RewardFactionOverride2` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RewardFactionOverride3` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RewardFactionOverride4` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RewardFactionOverride5` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`PointMapId` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`PointX` float NOT NULL DEFAULT '0',
|
||||
`PointY` float NOT NULL DEFAULT '0',
|
||||
`PointOption` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`Title` text,
|
||||
`Objectives` text,
|
||||
`Details` text,
|
||||
`LogTitle` text,
|
||||
`LogDescription` text,
|
||||
`QuestDescription` text,
|
||||
`EndText` text,
|
||||
`OfferRewardText` text,
|
||||
`RequestItemsText` text,
|
||||
`CompletedText` text,
|
||||
`QuestCompletionLog` text,
|
||||
`RequiredNpcOrGo1` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RequiredNpcOrGo2` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`RequiredNpcOrGo3` mediumint(8) NOT NULL DEFAULT '0',
|
||||
|
|
@ -150,7 +150,7 @@ CREATE TABLE `quest_template`
|
|||
`OfferRewardEmoteDelay3` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`OfferRewardEmoteDelay4` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '1',
|
||||
PRIMARY KEY (`Id`)
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Quest System';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
|
|
|
|||
|
|
@ -20380,6 +20380,9 @@ INSERT INTO `smart_scripts` VALUES
|
|||
(25087,0,0,0,11,0,100,1,0,0,0,0,79,35,0,0,0,0,0,1,0,0,0,0,0,0,0,'Dawnblade Reservist - On Respawn - Set Ranged Movement (No Repeat)'),
|
||||
(25087,0,1,0,0,0,100,0,2500,6000,6000,10000,11,34120,0,0,0,0,0,2,0,0,0,0,0,0,0,'Dawnblade Reservist - In Combat - Cast \'Steady Shot\' (No Repeat)'),
|
||||
(25087,0,2,0,9,0,100,0,1,25,1000,4000,11,32915,0,0,0,0,0,2,0,0,0,0,0,0,0,'Dawnblade Reservist - Within 1-25 Range - Cast \'Raptor Strike\' (No Repeat)'),
|
||||
(25090,0,0,0,8,0,100,0,45115,0,0,0,33,25090,0,0,0,0,0,7,0,0,0,0,0,0,0,'Sin\'Loren - On spellhit 45115 - Kill Credit'),
|
||||
(25091,0,0,0,8,0,100,0,45115,0,0,0,33,25091,0,0,0,0,0,7,0,0,0,0,0,0,0,'Bloodoath - On spellhit 45115 - Kill Credit'),
|
||||
(25092,0,0,0,8,0,100,0,45115,0,0,0,33,25092,0,0,0,0,0,7,0,0,0,0,0,0,0,'Dawnchaser - On spellhit 45115 - Kill Credit'),
|
||||
(25100,9,0,0,0,0,100,0,0,0,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,5.39307,'On Script - Set Orientation 5,39307'),
|
||||
(25100,9,1,0,0,0,100,0,2000,2000,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'On Script - Say Line 0'),
|
||||
(25100,9,2,0,0,0,100,0,2000,2000,0,0,5,7,0,0,0,0,0,1,0,0,0,0,0,0,0,'On Script - Play Emote 7'),
|
||||
|
|
@ -20431,9 +20434,10 @@ INSERT INTO `smart_scripts` VALUES
|
|||
(25214,0,2,0,0,0,100,1,7000,10000,0,0,11,45270,0,0,0,0,0,5,30,0,0,0,0,0,0,'Shadow Image - In Combat - Cast Shadowfury'),
|
||||
(25215,0,0,0,4,0,100,1,0,0,0,0,11,50262,0,0,0,0,0,1,0,0,0,0,0,0,0,'Winterfin Shorestriker - On Aggro - Cast \'Rushed Assault\''),
|
||||
(25215,0,1,0,2,0,100,1,0,15,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,'Winterfin Shorestriker - Between 0-15% Health - Flee For Assist'),
|
||||
(25216,0,0,0,4,0,100,0,0,0,0,0,11,50272,1,0,0,0,0,1,0,0,0,0,0,0,0,'Winterfin Oracle - On Aggro - Cast \'Unstable Magic\''),
|
||||
(25216,0,1,0,0,1,100,0,0,0,2700,5600,11,9532,64,0,0,0,0,2,0,0,0,0,0,0,0,'Winterfin Oracle - In Combat CMC - Cast \'Lightning Bolt\''),
|
||||
(25216,0,2,0,2,0,100,1,0,15,0,0,25,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Winterfin Oracle - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
(25216,0,0,0,0,0,100,0,0,0,3400,4700,11,9532,64,0,0,0,0,2,0,0,0,0,0,0,0,'Cast bolt'),
|
||||
(25216,0,1,2,2,0,100,1,0,15,0,0,25,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Flee at 15% HP'),
|
||||
(25216,0,2,0,61,0,100,1,0,15,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Say Text at 15% HP'),
|
||||
(25216,0,3,0,9,0,100,0,0,5,12300,19800,11,50272,0,0,0,0,0,1,0,0,0,0,0,0,0,'Cast Unstable Magic on Close'),
|
||||
(25217,0,0,0,0,0,100,0,1800,3100,16500,20200,11,50267,0,0,0,0,0,1,0,0,0,0,0,0,0,'Winterfin Warrior - In Combat - Cast \'Demoralizing Mmmrrrggglll\' (No Repeat)'),
|
||||
(25217,0,1,0,2,0,100,1,0,15,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,'Winterfin Warrior - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
(25226,0,0,0,9,0,100,0,0,20,10000,15000,11,50257,0,0,0,0,0,2,0,0,0,0,0,0,0,'Scalder - On Range - Cast Scalding Blast'),
|
||||
|
|
@ -23638,10 +23642,10 @@ INSERT INTO `smart_scripts` VALUES
|
|||
(27947,0,3,0,4,0,100,0,0,0,0,0,28,47543,0,0,0,0,0,1,0,0,0,0,0,0,0,'Horde Commander - On Aggro - Remove Aura Frozen Prison'),
|
||||
(27949,0,0,0,0,0,100,0,0,0,60000,60000,11,31403,0,0,0,0,0,1,0,0,0,0,0,0,0,'Alliance Commander - In Combat - Cast Battle Shout'),
|
||||
(27949,0,1,0,4,0,100,0,0,0,0,0,11,60067,0,0,0,0,0,7,0,0,0,0,0,0,0,'Alliance Commander - On Aggro - Cast Charge'),
|
||||
(27949,0,2,0,0,0,100,0,5000,10000,10000,10000,11,38618,0,0,0,0,0,1,0,0,0,0,0,0,0,'Alliance Commander - In Combat - Cast Whirlwind'),
|
||||
(27949,0,3,0,4,0,100,0,0,0,0,0,28,47543,0,0,0,0,0,1,0,0,0,0,0,0,0,'Alliance Commander - On Aggro - Remove Aura Frozen Prison'),
|
||||
(27951,0,0,1,25,0,100,0,0,0,0,0,20,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Admiral Barean Westwind - On Reset - Disable Auto Attack');
|
||||
(27949,0,2,0,0,0,100,0,5000,10000,10000,10000,11,38618,0,0,0,0,0,1,0,0,0,0,0,0,0,'Alliance Commander - In Combat - Cast Whirlwind');
|
||||
INSERT INTO `smart_scripts` VALUES
|
||||
(27949,0,3,0,4,0,100,0,0,0,0,0,28,47543,0,0,0,0,0,1,0,0,0,0,0,0,0,'Alliance Commander - On Aggro - Remove Aura Frozen Prison'),
|
||||
(27951,0,0,1,25,0,100,0,0,0,0,0,20,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Admiral Barean Westwind - On Reset - Disable Auto Attack'),
|
||||
(27951,0,1,0,61,0,100,0,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Admiral Barean Westwind - On Reset - Disable Combat Movement'),
|
||||
(27951,0,2,0,38,0,100,0,2,2,0,0,28,50161,0,0,0,0,0,1,0,0,0,0,0,0,0,'Admiral Barean Westwind - On Data Set 2 2 - Remove Aura Protection Sphere'),
|
||||
(27951,0,3,4,4,0,100,0,0,0,0,0,11,50161,0,0,0,0,0,1,0,0,0,0,0,0,0,'Admiral Barean Westwind - On Agro - Cast Protection Sphere'),
|
||||
|
|
@ -26282,8 +26286,8 @@ INSERT INTO `smart_scripts` VALUES
|
|||
(30279,0,2,0,0,0,100,4,4000,7000,9000,12000,11,59108,0,0,0,0,0,5,0,0,0,0,0,0,0,'Deep Crawler - Target Between 0-20% Health - Cast \'Fatal Sting\' (Phase 1) (No Repeat) (Dungeon)'),
|
||||
(30279,0,3,0,12,0,100,2,0,20,14000,17000,11,56581,33,0,0,0,0,2,0,0,0,0,0,0,0,'Deep Crawler - Target Between 0-20% Health - Cast \'Fatal Sting\' (Phase 1) (No Repeat) (Dungeon)'),
|
||||
(30279,0,4,0,12,0,100,4,0,20,14000,17000,11,59109,33,0,0,0,0,2,0,0,0,0,0,0,0,'Deep Crawler - On Target Between 0-20% Health - Cast 59109 (Heroic Dungeon)'),
|
||||
(30283,0,0,0,25,0,100,2,0,0,0,0,11,56709,1,0,0,0,0,1,0,0,0,0,0,0,0,'Plague Walker - On Respawn - Cast \'Aura of Lost Hope\' (Phase 1) (No Repeat) (Dungeon)'),
|
||||
(30283,0,1,0,25,0,100,4,0,0,0,0,11,61459,1,0,0,0,0,1,0,0,0,0,0,0,0,'Plague Walker - On Respawn - Cast \'Aura of Lost Hope\' (Phase 1) (No Repeat) (Dungeon)'),
|
||||
(30283,0,0,0,0,0,100,2,0,0,0,0,11,56709,1,0,0,0,0,1,0,0,0,0,0,0,0,'Plague Walker - Combat - Cast \'Aura of Lost Hope\' (Phase 1) (No Repeat) (Dungeon)'),
|
||||
(30283,0,1,0,0,0,100,4,0,0,0,0,11,61459,1,0,0,0,0,1,0,0,0,0,0,0,0,'Plague Walker - On Respawn - Cast \'Aura of Lost Hope\' (Phase 1) (No Repeat) (Dungeon)'),
|
||||
(30283,0,2,0,0,0,100,6,7000,11000,120000,130000,11,56707,0,0,0,0,0,2,0,0,0,0,0,0,0,'Plague Walker - In Combat - Cast \'Contagion of Rot\' (Phase 1) (No Repeat) (Dungeon)'),
|
||||
(30284,0,0,0,0,0,100,2,4000,7000,18000,22000,11,56736,0,0,0,0,0,1,0,0,0,0,0,0,0,'Bonegrinder - In Combat - Cast \'Trample\' (Phase 1) (No Repeat) (Dungeon)'),
|
||||
(30284,0,1,0,0,0,100,4,4000,7000,18000,22000,11,59107,0,0,0,0,0,1,0,0,0,0,0,0,0,'Bonegrinder - In Combat - Cast \'Trample\' (Phase 1) (No Repeat) (Dungeon)'),
|
||||
|
|
@ -28037,7 +28041,7 @@ INSERT INTO `smart_scripts` VALUES
|
|||
(33518,0,3,0,38,0,100,0,0,1,0,0,85,63516,0,0,0,0,0,12,1,0,0,0,0,0,0,'Squire Danny - On data set - cast quest credit'),
|
||||
(33519,0,0,0,27,0,100,0,0,0,0,0,53,0,33519,0,13663,0,0,1,0,0,0,0,0,0,0,'Black Knight\'s Gryphon - On passenger - Start WP movement'),
|
||||
(33519,0,1,0,40,0,100,0,40,33519,0,0,33,33519,0,0,0,0,0,7,0,0,0,0,0,0,0,'Black Knight\'s Gryphon - On WP 40 - Quest Credit'),
|
||||
(33519,0,2,0,40,0,100,0,43,33519,0,0,11,50630,0,0,0,0,0,7,0,0,0,0,0,0,0,'Black Knight\'s Gryphon - On WP 43 - Dismount Spell'),
|
||||
(33519,0,2,0,40,0,100,0,44,33519,0,0,11,50630,0,0,0,0,0,7,0,0,0,0,0,0,0,'Black Knight\'s Gryphon - On WP 43 - Dismount Spell'),
|
||||
(33519,0,3,0,40,0,100,0,44,33519,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Black Knight\'s Gryphon - On WP 44 - Despawn'),
|
||||
(33519,0,4,0,1,0,100,1,2000,2000,0,0,60,1,700,0,0,0,0,1,0,0,0,0,0,0,0,'Black Knight\'s Gryphon - Set fly speed'),
|
||||
(33522,0,0,1,62,0,100,0,10383,0,0,0,80,3352200,0,2,0,0,0,1,0,0,0,0,0,0,0,'Cavin - On gossip option select - Run script'),
|
||||
|
|
@ -30143,6 +30147,9 @@ INSERT INTO `smart_scripts` VALUES
|
|||
(185512,1,0,0,70,0,100,0,2,0,0,0,80,18551200,0,0,0,0,0,1,0,0,0,0,0,0,0,'Stasis Chamber Alpha - On Gameobject State Changed - Run Script'),
|
||||
(185519,1,0,1,64,0,100,0,0,0,0,0,26,10977,0,0,0,0,0,7,0,0,0,0,0,0,0,'Summon Pax\'ivi'),
|
||||
(185519,1,1,0,61,0,100,0,0,0,0,0,12,22928,3,30000,0,0,0,1,0,0,0,0,0,0,0,'Summon Pax\'ivi'),
|
||||
(185547,1,0,0,70,0,100,0,2,0,0,0,12,22993,7,60000,0,0,0,7,0,0,0,0,0,0,0,'Eagle Shrine - On Gossip Hello - Summon Creature 22993'),
|
||||
(185551,1,0,0,70,0,100,0,2,0,0,0,12,22992,7,60000,0,0,0,7,0,0,0,0,0,0,0,'Hawk Shrine - On Activate - Summon Creature 22992'),
|
||||
(185553,1,0,0,70,0,100,0,2,0,0,0,12,22994,7,60000,0,0,0,7,0,0,0,0,0,0,0,'Hawk Shrine - On Gossip Hello - Summon Creature 22994'),
|
||||
(185861,1,0,0,38,0,100,0,0,1,0,0,70,30,0,0,0,0,0,1,0,0,0,0,0,0,0,'Fel Cannonball Stack - On Data Set 0 1 - Respawn Self'),
|
||||
(185916,1,0,0,64,0,100,0,0,0,0,0,45,1,1,0,0,0,0,19,23304,5,0,0,0,0,0,'Cage Trap - On Gossip Hello - Set Data'),
|
||||
(185927,1,0,1,62,0,100,0,8671,0,0,0,64,1,0,0,0,0,0,7,0,0,0,0,0,0,0,'Fel Crystal Prism - On Gossip Option 0 Selected - Store Targetlist'),
|
||||
|
|
@ -31876,14 +31883,14 @@ INSERT INTO `smart_scripts` VALUES
|
|||
(1620800,9,2,0,0,0,100,0,0,0,0,0,66,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Apothecary Enith - On Script - Set Orientation Invoker'),
|
||||
(1620800,9,3,0,0,0,100,0,1000,1000,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Apothecary Enith - On Script - Say Line 0'),
|
||||
(1620800,9,4,0,0,0,100,0,2000,2000,0,0,33,16208,0,0,0,0,0,7,0,0,0,0,0,0,0,'Apothecary Enith - On Script - Quest Credit \'Captives at Deatholme\''),
|
||||
(1620800,9,5,0,0,0,100,0,1000,1000,0,0,53,1,16208,0,0,0,0,1,0,0,0,0,0,0,0,'Apothecary Enith - On Script - Start Waypoint'),
|
||||
(1620800,9,5,0,0,0,100,0,1000,1000,0,0,53,1,16208,0,0,0,0,1,0,0,0,0,0,0,0,'Apothecary Enith - On Script - Start Waypoint');
|
||||
INSERT INTO `smart_scripts` VALUES
|
||||
(1620900,9,0,0,0,0,100,0,0,0,0,0,81,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Ranger Vedoran - On Script - Set Npc Flag '),
|
||||
(1620900,9,1,0,0,0,100,0,0,0,0,0,91,7,0,0,0,0,0,1,0,0,0,0,0,0,0,'Ranger Vedoran - On Script - Remove Flag Standstate Dead'),
|
||||
(1620900,9,2,0,0,0,100,0,0,0,0,0,66,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Ranger Vedoran - On Script - Set Orientation Invoker'),
|
||||
(1620900,9,3,0,0,0,100,0,1000,1000,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Ranger Vedoran - On Script - Say Line 0'),
|
||||
(1620900,9,4,0,0,0,100,0,2000,2000,0,0,33,16209,0,0,0,0,0,7,0,0,0,0,0,0,0,'Ranger Vedoran - On Script - Quest Credit \'Captives at Deatholme\''),
|
||||
(1620900,9,5,0,0,0,100,0,1000,1000,0,0,53,1,16209,0,0,0,0,1,0,0,0,0,0,0,0,'Ranger Vedoran - On Script - Start Waypoint');
|
||||
INSERT INTO `smart_scripts` VALUES
|
||||
(1620900,9,5,0,0,0,100,0,1000,1000,0,0,53,1,16209,0,0,0,0,1,0,0,0,0,0,0,0,'Ranger Vedoran - On Script - Start Waypoint'),
|
||||
(1622200,9,0,0,0,0,100,0,1000,1000,0,0,66,0,0,0,0,0,0,12,1,0,0,0,0,0,0,'Silvermoon City Guardian - Script9 - Set Orientation'),
|
||||
(1622200,9,1,0,0,0,100,0,1500,1500,0,0,5,16,0,0,0,0,0,1,0,0,0,0,0,0,0,'Silvermoon City Guardian - Script9 - Play Emote'),
|
||||
(1622200,9,2,0,0,0,100,0,4000,4000,0,0,66,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Silvermoon City Guardian - Script9 - Set Orientation'),
|
||||
|
|
|
|||
|
|
@ -624,8 +624,8 @@ INSERT INTO `spell_area` VALUES
|
|||
(72914,4438,12856,12856,0,0,2,1,74,11),
|
||||
(72914,4535,12905,0,0,0,2,1,74,11),
|
||||
(73001,4892,0,0,0,0,2,0,64,11),
|
||||
(73818,4812,0,0,0,690,2,1,64,11),
|
||||
(73824,4812,0,0,0,1101,2,1,64,11),
|
||||
(73822,4812,0,0,0,690,2,1,64,11),
|
||||
(73828,4812,0,0,0,1101,2,1,64,11),
|
||||
(74276,4910,0,0,0,0,2,1,64,11),
|
||||
(74410,3638,0,0,0,0,2,1,64,11),
|
||||
(74410,3698,0,0,0,0,2,1,64,11),
|
||||
|
|
|
|||
|
|
@ -9,14 +9,14 @@ DROP TABLE IF EXISTS `spell_target_position`;
|
|||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `spell_target_position`
|
||||
(
|
||||
`id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier',
|
||||
`effIndex` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`target_map` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`target_position_x` float NOT NULL DEFAULT '0',
|
||||
`target_position_y` float NOT NULL DEFAULT '0',
|
||||
`target_position_z` float NOT NULL DEFAULT '0',
|
||||
`target_orientation` float NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`id`,`effIndex`)
|
||||
`ID` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier',
|
||||
`EffectIndex` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`MapID` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`PositionX` float NOT NULL DEFAULT '0',
|
||||
`PositionY` float NOT NULL DEFAULT '0',
|
||||
`PositionZ` float NOT NULL DEFAULT '0',
|
||||
`Orientation` float NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`EffectIndex`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell System';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
|
|
|
|||
|
|
@ -929,6 +929,8 @@ INSERT INTO `trinity_string` VALUES
|
|||
(1331,'The Frostwolf General is Dead!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
|
||||
(1332,'The Stormpike General is Dead!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
|
||||
(1333,'The Battle for Alterac Valley begins in 2 minutes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
|
||||
(1334,'Your ticket has been closed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
|
||||
(1335,'You received a ticket response.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
|
||||
(2000,'|cff00ff00New ticket from|r|cffff00ff %s.|r |cff00ff00Ticket entry:|r|cffff00ff %d.|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
|
||||
(2001,'|cff00ff00Character|r|cffff00ff %s |r|cff00ff00edited his/her ticket:|r|cffff00ff %d.|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
|
||||
(2002,'|cff00ff00Character|r|cffff00ff %s |r|cff00ff00abandoned ticket entry:|r|cffff00ff %d.|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
|
||||
|
|
|
|||
53
data/sql/base/db_world/version_db_world.sql
Normal file
53
data/sql/base/db_world/version_db_world.sql
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
DROP TABLE IF EXISTS `version_db_world`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `version_db_world`
|
||||
(
|
||||
`sql_rev` varchar(100) NOT NULL,
|
||||
`required_rev` varchar(100) DEFAULT NULL,
|
||||
`2016_11_06_02` bit(1) DEFAULT NULL,
|
||||
PRIMARY KEY (`sql_rev`),
|
||||
KEY `required` (`required_rev`),
|
||||
CONSTRAINT `required` FOREIGN KEY (`required_rev`) REFERENCES `version_db_world` (`sql_rev`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Last applied sql update to DB';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
LOCK TABLES `version_db_world` WRITE;
|
||||
/*!40000 ALTER TABLE `version_db_world` DISABLE KEYS */;
|
||||
INSERT INTO `version_db_world` VALUES
|
||||
('1473110802988536500',NULL,NULL),
|
||||
('1473111010225487800',NULL,NULL),
|
||||
('1473111186171042200',NULL,NULL),
|
||||
('1473152344430838100',NULL,NULL),
|
||||
('1473583129228647885',NULL,NULL),
|
||||
('1474716815295101300',NULL,NULL),
|
||||
('1474739178715315500',NULL,NULL),
|
||||
('1474792959599938200',NULL,NULL),
|
||||
('1475527352519816200',NULL,NULL),
|
||||
('1475785264262766400',NULL,NULL),
|
||||
('1477151458117544700',NULL,NULL),
|
||||
('1477427695797942400',NULL,NULL),
|
||||
('1477683243N',NULL,NULL),
|
||||
('1478151940273037900',NULL,NULL),
|
||||
('1478287154825052800',NULL,NULL),
|
||||
('1478293306653271000',NULL,NULL),
|
||||
('1478360753169893400',NULL,NULL),
|
||||
('1478364861156705000',NULL,NULL),
|
||||
('1478377821535626700',NULL,NULL),
|
||||
('1478377844582051200',NULL,NULL),
|
||||
('1478458446109383200',NULL,NULL);
|
||||
/*!40000 ALTER TABLE `version_db_world` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
|
|
@ -46933,6 +46933,18 @@ INSERT INTO `waypoint_data` VALUES
|
|||
(642460,4,1595.27,8608.18,-32.8571,0,0,0,0,100,0),
|
||||
(642460,5,1549.83,8613.37,-33.6102,0,0,0,0,100,0),
|
||||
(642460,6,1502.41,8615.58,-27.779,0,0,0,0,100,0),
|
||||
(643200,1,843.944,-4207.75,-9.11563,0,0,0,0,100,0),
|
||||
(643200,2,855.389,-4212.85,-9.99841,0,0,0,0,100,0),
|
||||
(643200,3,867.336,-4204.73,-13.9766,0,0,0,0,100,0),
|
||||
(643200,4,879.138,-4186.37,-13.9981,0,0,0,0,100,0),
|
||||
(643200,5,898.795,-4170.9,-9.24759,0,0,0,0,100,0),
|
||||
(643200,6,894.318,-4165.13,-9.10758,0,0,0,0,100,0),
|
||||
(643200,7,881.809,-4167.77,-13.8924,0,0,0,0,100,0),
|
||||
(643200,8,864.355,-4183.45,-14.0399,0,0,0,0,100,0),
|
||||
(643200,9,847.975,-4191.54,-10.0094,0,0,0,0,100,0),
|
||||
(643200,10,847.094,-4194.71,-9.9878,0,0,0,0,100,0),
|
||||
(645500,1,870.331,-4202.85,-14.0742,0,45000,0,0,100,0),
|
||||
(645500,2,869.751,-4190.07,-14.1105,0,45000,0,0,100,0),
|
||||
(647670,1,223.561,6374.22,17.4991,0,0,0,0,100,0),
|
||||
(647670,2,256.588,6388.81,17.4991,0,0,0,0,100,0),
|
||||
(647670,3,251.364,6428.17,17.4991,0,0,0,0,100,0),
|
||||
|
|
@ -48000,6 +48012,110 @@ INSERT INTO `waypoint_data` VALUES
|
|||
(648400,8,-368.054,8508.6,17.4991,0,0,0,0,100,0),
|
||||
(648400,9,-388.456,8480.8,17.499,0,0,0,0,100,0),
|
||||
(648400,10,-368.054,8508.6,17.4991,0,0,0,0,100,0),
|
||||
(649730,1,9796.13,-7283.99,27.0848,0,0,0,0,100,0),
|
||||
(649730,2,9780.9,-7294.99,25.6967,0,0,0,0,100,0),
|
||||
(649730,3,9761.53,-7308.11,24.5389,0,0,0,0,100,0),
|
||||
(649730,4,9739.73,-7318.02,24.6614,0,0,0,0,100,0),
|
||||
(649730,5,9718.6,-7323.63,17.8332,0,0,0,0,100,0),
|
||||
(649730,6,9705.04,-7327.56,12.2357,0,0,0,0,100,0),
|
||||
(649730,7,9692.66,-7328.25,12.4671,0,0,0,0,100,0),
|
||||
(649730,8,9688.66,-7326.75,13.4671,0,0,0,0,100,0),
|
||||
(649730,9,9687.16,-7326.25,13.7171,0,0,0,0,100,0),
|
||||
(649730,10,9684.91,-7325.5,13.7171,0,0,0,0,100,0),
|
||||
(649730,11,9680.16,-7323.75,13.9671,0,0,0,0,100,0),
|
||||
(649730,12,9678.28,-7317.16,14.091,0,0,0,0,100,0),
|
||||
(649730,13,9678.28,-7315.41,14.091,0,0,0,0,100,0),
|
||||
(649730,14,9693.33,-7309.64,14.2688,0,0,0,0,100,0),
|
||||
(649730,15,9694.83,-7309.64,14.5188,0,0,0,0,100,0),
|
||||
(649730,16,9697.68,-7306.81,14.9708,0,0,0,0,100,0),
|
||||
(649730,17,9698.18,-7303.81,15.4708,0,0,0,0,100,0),
|
||||
(649730,18,9694.49,-7299.81,14.8114,0,0,0,0,100,0),
|
||||
(649730,19,9693.24,-7299.56,14.5614,0,0,0,0,100,0),
|
||||
(649730,20,9681.49,-7297.31,14.3114,0,0,0,0,100,0),
|
||||
(649730,21,9680.24,-7297.06,14.3114,0,0,0,0,100,0),
|
||||
(649730,22,9676.99,-7291.82,14.2163,0,0,0,0,100,0),
|
||||
(649730,23,9676.49,-7290.07,13.9663,0,0,0,0,100,0),
|
||||
(649730,24,9674.99,-7285.07,14.2163,0,0,0,0,100,0),
|
||||
(649730,25,9664.73,-7275.52,14.0017,0,0,0,0,100,0),
|
||||
(649730,26,9663.51,-7275.04,14.205,0,0,0,0,100,0),
|
||||
(649730,27,9640.07,-7275.81,14.1943,0,0,0,0,100,0),
|
||||
(649730,28,9600.18,-7275.95,14.198,0,0,0,0,100,0),
|
||||
(649730,29,9591.28,-7275.9,14.202,0,0,0,0,100,0),
|
||||
(649730,30,9527.37,-7276.4,14.2027,0,0,0,0,100,0),
|
||||
(649730,31,9514.25,-7280.67,14.2357,0,0,0,0,100,0),
|
||||
(649730,32,9513,-7281.17,14.2357,0,0,0,0,100,0),
|
||||
(649730,33,9505.66,-7290.03,14.3172,0,0,0,0,100,0),
|
||||
(649730,34,9505.66,-7307.28,14.3172,0,0,0,0,100,0),
|
||||
(649730,35,9515.08,-7323.17,14.3692,0,0,0,0,100,0),
|
||||
(649730,36,9520.66,-7327.14,14.3411,0,0,0,0,100,0),
|
||||
(649730,37,9530.85,-7327.04,14.0993,0,0,0,0,100,0),
|
||||
(649730,38,9548.44,-7326.64,14.0621,0,0,0,0,100,0),
|
||||
(649730,39,9580.66,-7327.75,14.3568,0,0,0,0,100,0),
|
||||
(649730,40,9594.12,-7336.5,14.4136,0,0,0,0,100,0),
|
||||
(649730,41,9596.05,-7359.26,13.8062,0,0,0,0,100,0),
|
||||
(649730,42,9596.3,-7361.26,13.8062,0,0,0,0,100,0),
|
||||
(649730,43,9579.05,-7368.44,13.7,0,0,0,0,100,0),
|
||||
(649730,44,9577.05,-7368.69,13.95,0,0,0,0,100,0),
|
||||
(649730,45,9574.3,-7368.94,14.2,0,0,0,0,100,0),
|
||||
(649730,46,9573.44,-7371.7,14.5983,0,0,0,0,100,0),
|
||||
(649730,47,9573.44,-7372.7,14.8483,0,0,0,0,100,0),
|
||||
(649730,48,9573.44,-7377.45,14.8483,0,0,0,0,100,0),
|
||||
(649730,49,9573.44,-7381.45,14.8483,0,0,0,0,100,0),
|
||||
(649730,50,9578.81,-7384.08,14.058,0,0,0,0,100,0),
|
||||
(649730,51,9581.81,-7384.33,13.808,0,0,0,0,100,0),
|
||||
(649730,52,9590.56,-7385.08,13.808,0,0,0,0,100,0),
|
||||
(649730,53,9591.81,-7385.33,13.808,0,0,0,0,100,0),
|
||||
(649730,54,9594.39,-7393.9,13.3269,0,0,0,0,100,0),
|
||||
(649730,55,9605.18,-7424.4,13.5485,0,0,0,0,100,0),
|
||||
(649730,56,9611.56,-7427.8,13.5534,0,0,0,0,100,0),
|
||||
(649730,57,9650.36,-7430.1,13.5478,0,0,0,0,100,0),
|
||||
(649730,58,9667.59,-7436.15,13.5435,0,0,0,0,100,0),
|
||||
(649730,59,9669.13,-7437,13.5433,0,0,0,0,100,0),
|
||||
(649730,60,9692.81,-7437.09,13.5433,0,0,0,0,100,0),
|
||||
(649730,61,9700.06,-7434.09,13.5433,0,0,0,0,100,0),
|
||||
(649730,62,9720.65,-7424.15,13.5211,0,0,0,0,100,0),
|
||||
(649730,63,9746.54,-7421.81,13.4852,0,0,0,0,100,0),
|
||||
(649730,64,9740.97,-7422.06,13.223,0,0,0,0,100,0),
|
||||
(649730,65,9760.84,-7421.12,13.5205,0,0,0,0,100,0),
|
||||
(649730,66,9766.76,-7413.83,13.8653,0,0,0,0,100,0),
|
||||
(649730,67,9767.26,-7402.33,13.8653,0,0,0,0,100,0),
|
||||
(649730,68,9767.26,-7400.33,13.8653,0,0,0,0,100,0),
|
||||
(649730,69,9767.26,-7397.58,14.1153,0,0,0,0,100,0),
|
||||
(649730,70,9767.45,-7397.04,14.5061,0,0,0,0,100,0),
|
||||
(649730,71,9770.45,-7397.04,14.5061,0,0,0,0,100,0),
|
||||
(649730,72,9775.95,-7396.79,15.0061,0,0,0,0,100,0),
|
||||
(649730,73,9790.2,-7396.29,14.7561,0,0,0,0,100,0),
|
||||
(649730,74,9791.45,-7396.29,15.0061,0,0,0,0,100,0),
|
||||
(649730,75,9793.19,-7398,14.6096,0,0,0,0,100,0),
|
||||
(649730,76,9793.19,-7400.75,14.1096,0,0,0,0,100,0),
|
||||
(649730,77,9793.19,-7402.5,14.1096,0,0,0,0,100,0),
|
||||
(649730,78,9793.44,-7405.5,13.8596,0,0,0,0,100,0),
|
||||
(649730,79,9793.44,-7415,13.8596,0,0,0,0,100,0),
|
||||
(649730,80,9801.36,-7416.34,13.8933,0,0,0,0,100,0),
|
||||
(649730,81,9803.36,-7416.34,13.3933,0,0,0,0,100,0),
|
||||
(649730,82,9815.1,-7417.08,13.5569,0,0,0,0,100,0),
|
||||
(649730,83,9842.76,-7416.91,13.5596,0,0,0,0,100,0),
|
||||
(649730,84,9876.42,-7415.62,13.5377,0,0,0,0,100,0),
|
||||
(649730,85,9872.04,-7415.87,13.275,0,0,0,0,100,0),
|
||||
(649730,86,9879.89,-7412.87,13.5164,0,0,0,0,100,0),
|
||||
(649730,87,9882.89,-7409.12,13.5164,0,0,0,0,100,0),
|
||||
(649730,88,9884.78,-7404.79,13.4201,0,0,0,0,100,0),
|
||||
(649730,89,9884.51,-7369.62,20.8877,0,0,0,0,100,0),
|
||||
(649730,90,9888.86,-7355.77,20.9352,0,0,0,0,100,0),
|
||||
(649730,91,9889.95,-7346.21,22.3016,0,0,0,0,100,0),
|
||||
(649730,92,9889.7,-7344.46,22.5516,0,0,0,0,100,0),
|
||||
(649730,93,9885.72,-7331.88,24.0137,0,0,0,0,100,0),
|
||||
(649730,94,9875.47,-7325.63,25.5137,0,0,0,0,100,0),
|
||||
(649730,95,9873.41,-7324.01,26.0212,0,0,0,0,100,0),
|
||||
(649730,96,9870.91,-7322.01,26.5212,0,0,0,0,100,0),
|
||||
(649730,97,9862.41,-7315.01,26.5212,0,0,0,0,100,0),
|
||||
(649730,98,9858.66,-7312.01,26.5212,0,0,0,0,100,0),
|
||||
(649730,99,9852.26,-7303.12,26.4503,0,0,0,0,100,0),
|
||||
(649730,100,9850.76,-7299.87,26.4503,0,0,0,0,100,0),
|
||||
(649730,101,9848.26,-7295.12,26.4503,0,0,0,0,100,0),
|
||||
(649730,102,9845.63,-7286.91,26.397,0,0,0,0,100,0),
|
||||
(649730,103,9843.29,-7277.3,26.4125,0,0,0,0,100,0),
|
||||
(649730,104,9819.62,-7272.36,26.4964,0,0,0,0,100,0),
|
||||
(655040,1,-1376.59,7232.03,30.5035,0,45000,0,0,100,0),
|
||||
(655040,2,-1390.23,7236.77,26.6002,0,0,0,0,100,0),
|
||||
(655040,3,-1403.12,7270.29,25.5283,0,0,0,0,100,0),
|
||||
|
|
@ -60759,7 +60875,8 @@ INSERT INTO `waypoint_data` VALUES
|
|||
(867600,7,1708.47,-6275.29,10.4668,0,0,0,0,100,0),
|
||||
(867600,8,1707.72,-6276.79,10.2168,0,0,0,0,100,0),
|
||||
(867600,9,1706.65,-6278.83,9.85989,0,0,0,0,100,0),
|
||||
(867600,10,1707.9,-6280.58,9.85989,0,0,0,0,100,0),
|
||||
(867600,10,1707.9,-6280.58,9.85989,0,0,0,0,100,0);
|
||||
INSERT INTO `waypoint_data` VALUES
|
||||
(867600,11,1708.07,-6280.78,10.1522,0,0,0,0,100,0),
|
||||
(867600,12,1708.57,-6281.53,10.1522,0,0,0,0,100,0),
|
||||
(867600,13,1711.57,-6281.78,10.4022,0,0,0,0,100,0),
|
||||
|
|
@ -60876,8 +60993,7 @@ INSERT INTO `waypoint_data` VALUES
|
|||
(868730,60,-227.122,4150.22,97.472,0,0,0,0,100,0),
|
||||
(868730,61,-226.5,4171.22,97.8333,0,0,0,0,100,0),
|
||||
(868730,62,-226.344,4196.9,96.7709,0,0,0,0,100,0),
|
||||
(868730,63,-226.233,4214.4,95.6005,0,0,0,0,100,0);
|
||||
INSERT INTO `waypoint_data` VALUES
|
||||
(868730,63,-226.233,4214.4,95.6005,0,0,0,0,100,0),
|
||||
(868730,64,-224.009,4234.16,94.0461,0,0,0,0,100,0),
|
||||
(868730,65,-222.177,4250.44,92.1034,0,0,0,0,100,0),
|
||||
(868730,66,-220.485,4265.46,89.4869,0,0,0,0,100,0),
|
||||
|
|
@ -80913,7 +81029,8 @@ INSERT INTO `waypoint_data` VALUES
|
|||
(1109340,6,1585.48,-3148.62,1.70336,0,0,0,0,100,0),
|
||||
(1109340,7,1587.73,-3153.12,1.20336,0,0,0,0,100,0),
|
||||
(1109340,8,1588.01,-3153.39,1.01838,0,0,0,0,100,0),
|
||||
(1109340,9,1588.51,-3154.89,1.01838,0,0,0,0,100,0),
|
||||
(1109340,9,1588.51,-3154.89,1.01838,0,0,0,0,100,0);
|
||||
INSERT INTO `waypoint_data` VALUES
|
||||
(1109340,10,1589.76,-3165.64,1.26838,0,0,0,0,100,0),
|
||||
(1109340,11,1590.35,-3170.33,1.82389,0,0,0,0,100,0),
|
||||
(1109340,12,1585.56,-3186.67,1.85471,0,0,0,0,100,0),
|
||||
|
|
@ -81026,8 +81143,7 @@ INSERT INTO `waypoint_data` VALUES
|
|||
(1109540,79,3089.94,-135.435,76.9371,0,0,0,0,100,0),
|
||||
(1109540,80,3093.69,-138.685,77.6871,0,0,0,0,100,0),
|
||||
(1109540,81,3100.44,-144.435,78.4371,0,0,0,0,100,0),
|
||||
(1109540,82,3094.99,-139.781,77.4295,0,0,0,0,100,0);
|
||||
INSERT INTO `waypoint_data` VALUES
|
||||
(1109540,82,3094.99,-139.781,77.4295,0,0,0,0,100,0),
|
||||
(1109540,83,3089.49,-135.031,76.6795,0,0,0,0,100,0),
|
||||
(1109540,84,3086.74,-132.781,76.1795,0,0,0,0,100,0),
|
||||
(1109540,85,3083.74,-130.031,75.4295,0,0,0,0,100,0),
|
||||
|
|
@ -88286,6 +88402,48 @@ INSERT INTO `waypoint_data` VALUES
|
|||
(1158180,20,6482.68,-3938.78,482.96,0,0,0,0,100,0),
|
||||
(1158180,21,6493.83,-3954.18,482.34,0,0,0,0,100,0),
|
||||
(1158180,22,6481.75,-3966.81,482.03,0,0,0,0,100,0),
|
||||
(1158350,1,491.597,-6158.39,144.104,0,0,1,0,100,0),
|
||||
(1158350,2,509.594,-6162.63,111.271,0,0,1,0,100,0),
|
||||
(1158350,3,526.574,-6162.79,95.6042,0,0,1,0,100,0),
|
||||
(1158350,4,574.479,-6164,95.6042,0,0,1,0,100,0),
|
||||
(1158350,5,603.023,-6169.13,135.16,0,0,1,0,100,0),
|
||||
(1158350,6,621.696,-6158.34,152.596,0,0,1,0,100,0),
|
||||
(1158350,7,637.6,-6155.5,154.635,0,0,1,0,100,0),
|
||||
(1158350,8,663.042,-6125.69,179.413,0,0,1,0,100,0),
|
||||
(1158350,9,656.72,-6138.12,215.465,0,0,1,0,100,0),
|
||||
(1158350,10,639.132,-6143.21,215.465,0,0,1,0,100,0),
|
||||
(1158350,11,618.773,-6150.35,208.021,0,0,1,0,100,0),
|
||||
(1158350,12,588.939,-6145.33,208.021,0,0,1,0,100,0),
|
||||
(1158350,13,554.649,-6152.37,187.521,0,0,1,0,100,0),
|
||||
(1158350,14,528.241,-6138.12,166.66,0,0,1,0,100,0),
|
||||
(1158350,15,497.937,-6157.06,187.521,0,0,1,0,100,0),
|
||||
(1158350,16,482.706,-6146.38,174.688,0,0,1,0,100,0),
|
||||
(1158350,17,491.597,-6158.39,144.104,0,0,1,0,100,0),
|
||||
(1158360,1,520.622,-6137.84,169.302,0,0,1,0,100,0),
|
||||
(1158360,2,539.838,-6131.23,149.191,0,0,1,0,100,0),
|
||||
(1158360,3,520.709,-6158.92,160.413,0,0,1,0,100,0),
|
||||
(1158360,4,485.877,-6155.69,160.413,0,0,1,0,100,0),
|
||||
(1158360,5,438.815,-6158.29,160.413,0,0,1,0,100,0),
|
||||
(1158360,6,419.321,-6156.74,160.413,0,0,1,0,100,0),
|
||||
(1158360,7,390.655,-6143.17,160.413,0,0,1,0,100,0),
|
||||
(1158360,8,377.273,-6114.98,160.413,0,0,1,0,100,0),
|
||||
(1158360,9,383.09,-6129,185.83,0,0,0,1,100,0),
|
||||
(1158360,10,417.491,-6154.9,185.83,0,0,1,0,100,0),
|
||||
(1158360,11,452.243,-6147.8,185.83,0,0,1,0,100,0),
|
||||
(1158360,12,497.466,-6150.67,185.83,0,0,1,0,100,0),
|
||||
(1158360,13,520.622,-6137.84,169.302,0,0,1,0,100,0),
|
||||
(1158370,1,596.877,-6114.98,271.134,0,0,1,0,100,0),
|
||||
(1158370,2,595.459,-6109.4,278.375,0,0,1,0,100,0),
|
||||
(1158370,3,571.278,-6109.74,290.402,0,0,1,0,100,0),
|
||||
(1158370,4,556.719,-6108.81,297.357,0,0,1,0,100,0),
|
||||
(1158370,5,517.003,-6104.84,297.357,0,0,1,0,100,0),
|
||||
(1158370,6,503.921,-6117.69,297.357,0,0,1,0,100,0),
|
||||
(1158370,7,466.331,-6107.8,271.134,0,0,1,0,100,0),
|
||||
(1158370,8,475.638,-6120.52,271.134,0,0,1,0,100,0),
|
||||
(1158370,9,500.403,-6130.54,271.134,0,0,1,0,100,0),
|
||||
(1158370,10,542.152,-6114.92,271.134,0,0,1,0,100,0),
|
||||
(1158370,11,567.117,-6129.52,271.134,0,0,1,0,100,0),
|
||||
(1158370,12,596.877,-6114.98,271.134,0,0,1,0,100,0),
|
||||
(1158390,1,5821.91,772.636,661.278,0,0,0,0,100,0),
|
||||
(1158390,2,5840.41,780.657,661.278,0,0,0,0,100,0),
|
||||
(1158390,3,5855.2,790.918,661.278,0,0,0,0,100,0),
|
||||
|
|
@ -88293,6 +88451,43 @@ INSERT INTO `waypoint_data` VALUES
|
|||
(1158390,5,5849.31,786.801,661.278,0,0,0,0,100,0),
|
||||
(1158390,6,5835.44,778.523,661.278,0,0,0,0,100,0),
|
||||
(1158390,7,5816.62,771.915,661.278,0,0,0,0,100,0),
|
||||
(1158430,1,290.895,-6070.15,84.3692,0,0,1,0,100,0),
|
||||
(1158430,2,273.076,-6034.63,84.3692,0,0,1,0,100,0),
|
||||
(1158430,3,268.358,-6009.71,121.822,0,0,1,0,100,0),
|
||||
(1158430,4,282.774,-6034.7,150.647,0,0,1,0,100,0),
|
||||
(1158430,5,297.921,-6060.3,111.119,0,0,1,0,100,0),
|
||||
(1158430,6,324.443,-6101.17,115.008,0,0,1,0,100,0),
|
||||
(1158430,7,351.717,-6115.62,115.008,0,0,1,0,100,0),
|
||||
(1158430,8,380.059,-6146.51,102.452,0,0,1,0,100,0),
|
||||
(1158430,9,381.592,-6162.23,80.3692,0,0,1,0,100,0),
|
||||
(1158430,10,363.228,-6145.91,80.3692,0,0,1,0,100,0),
|
||||
(1158430,11,338.398,-6105.44,80.3692,0,0,1,0,100,0),
|
||||
(1158430,12,319.216,-6096.71,84.3692,0,0,1,0,100,0),
|
||||
(1158430,13,290.895,-6070.15,84.3692,0,0,1,0,100,0),
|
||||
(1158440,1,389.949,-6113.93,217.156,0,0,1,0,100,0),
|
||||
(1158440,2,365.973,-6083.05,249.128,0,0,1,0,100,0),
|
||||
(1158440,3,348.95,-6058.8,249.128,0,0,1,0,100,0),
|
||||
(1158440,4,334.475,-6041.24,249.128,0,0,1,0,100,0),
|
||||
(1158440,5,306.468,-6010.08,240.822,0,0,1,0,100,0),
|
||||
(1158440,6,305.474,-6011.15,217.156,0,0,1,0,100,0),
|
||||
(1158440,7,308.024,-6019.71,217.156,0,0,1,0,100,0),
|
||||
(1158440,8,331.708,-6052.97,217.156,0,0,1,0,100,0),
|
||||
(1158440,9,350.935,-6071.56,217.156,0,0,1,0,100,0),
|
||||
(1158440,10,371.713,-6102.68,217.156,0,0,1,0,100,0),
|
||||
(1158440,11,389.949,-6113.93,217.156,0,0,1,0,100,0),
|
||||
(1158450,1,360.916,-6061.68,302.84,0,0,1,0,100,0),
|
||||
(1158450,2,389.247,-6078.5,302.84,0,0,1,0,100,0),
|
||||
(1158450,3,392.204,-6094.84,296.007,0,0,1,0,100,0),
|
||||
(1158450,4,374.589,-6096.53,288.59,0,0,1,0,100,0),
|
||||
(1158450,5,358.694,-6082.39,274.924,0,0,1,0,100,0),
|
||||
(1158450,6,338.895,-6049.76,274.924,0,0,1,0,100,0),
|
||||
(1158450,7,320.349,-6021.41,274.924,0,0,1,0,100,0),
|
||||
(1158450,8,306.028,-5998.13,285.257,0,0,1,0,100,0),
|
||||
(1158450,9,313.488,-5983.75,285.229,0,0,1,0,100,0),
|
||||
(1158450,10,320.738,-5972.15,286.128,0,0,1,0,100,0),
|
||||
(1158450,11,330.683,-6008,302.84,0,0,1,0,100,0),
|
||||
(1158450,12,349.453,-6033.62,302.84,0,0,1,0,100,0),
|
||||
(1158450,13,360.916,-6061.68,302.84,0,0,1,0,100,0),
|
||||
(1158790,1,2537.7,-3682.9,308.71,0,0,1,0,100,0),
|
||||
(1158790,2,2561.32,-3713.3,308.71,0,0,1,0,100,0),
|
||||
(1158790,3,2597.5,-3747.97,308.71,0,0,1,0,100,0),
|
||||
|
|
@ -100941,7 +101136,8 @@ INSERT INTO `waypoint_data` VALUES
|
|||
(1357290,8,-12358.9,178.422,2.96931,0,0,0,0,100,0),
|
||||
(1357290,9,-12367.4,204.542,3.58372,0,0,0,0,100,0),
|
||||
(1357290,10,-12372.7,218.072,3.11098,0,0,0,0,100,0),
|
||||
(1357730,1,-11311.1,-1768.37,265.164,0,0,0,0,100,0),
|
||||
(1357730,1,-11311.1,-1768.37,265.164,0,0,0,0,100,0);
|
||||
INSERT INTO `waypoint_data` VALUES
|
||||
(1357730,2,-11331.1,-1759.51,265.164,0,0,0,0,100,0),
|
||||
(1357730,3,-11357.3,-1799.24,265.164,0,0,0,0,100,0),
|
||||
(1357750,1,-14405,424.645,8.40079,0,0,0,0,100,0),
|
||||
|
|
@ -101134,8 +101330,7 @@ INSERT INTO `waypoint_data` VALUES
|
|||
(1362820,17,1850.78,-374.459,412.98,0,0,0,0,100,0),
|
||||
(1362820,18,1841.93,-359.483,413.06,0,0,0,0,100,0),
|
||||
(1362820,19,1823.8,-358.099,412.858,0,0,0,0,100,0),
|
||||
(1363470,1,-806.78,-61.9102,430.218,0,0,0,0,100,0);
|
||||
INSERT INTO `waypoint_data` VALUES
|
||||
(1363470,1,-806.78,-61.9102,430.218,0,0,0,0,100,0),
|
||||
(1363470,2,-805.163,-65.6647,430.172,0,0,0,0,100,0),
|
||||
(1363470,3,-807.454,-68.6327,429.875,2.46091,2000,0,0,100,0),
|
||||
(1363470,4,-810.992,-72.2984,429.875,0,0,0,0,100,0),
|
||||
|
|
|
|||
|
|
@ -5767,50 +5767,50 @@ INSERT INTO `waypoints` VALUES
|
|||
(33235,5,1438.59,119.92,423.631,'Brann Bronzebeard'),
|
||||
(33462,1,8482.58,1113.82,554.34,'Paletress Confession'),
|
||||
(33462,2,8487.39,1113.7,554.28,'Paletress Confession'),
|
||||
(33519,1,8521.27,569.596,552.838,'Black Knight\'s Gryphon'),
|
||||
(33519,2,8517.86,579.109,553.213,'Black Knight\'s Gryphon'),
|
||||
(33519,3,8513.15,594.672,551.213,'Black Knight\'s Gryphon'),
|
||||
(33519,4,8505.26,606.557,550.418,'Black Knight\'s Gryphon'),
|
||||
(33519,5,8503.02,628.419,547.418,'Black Knight\'s Gryphon'),
|
||||
(33519,6,8480.27,652.708,547.418,'Black Knight\'s Gryphon'),
|
||||
(33519,7,8459.12,686.143,547.418,'Black Knight\'s Gryphon'),
|
||||
(33519,8,8436.8,713.869,547.343,'Black Knight\'s Gryphon'),
|
||||
(33519,9,8405.38,740.005,547.418,'Black Knight\'s Gryphon'),
|
||||
(33519,10,8386.14,770.601,547.588,'Black Knight\'s Gryphon'),
|
||||
(33519,11,8374.3,802.253,547.93,'Black Knight\'s Gryphon'),
|
||||
(33519,12,8374.27,847.036,548.043,'Black Knight\'s Gryphon'),
|
||||
(33519,13,8385.99,868.988,548.049,'Black Knight\'s Gryphon'),
|
||||
(33519,14,8413.03,867.857,547.299,'Black Knight\'s Gryphon'),
|
||||
(33519,15,8452.55,869.034,547.299,'Black Knight\'s Gryphon'),
|
||||
(33519,16,8473.06,875.201,547.295,'Black Knight\'s Gryphon'),
|
||||
(33519,17,8472.28,912.313,547.417,'Black Knight\'s Gryphon'),
|
||||
(33519,18,8479.67,954.165,547.33,'Black Knight\'s Gryphon'),
|
||||
(33519,19,8477.35,1001.37,547.337,'Black Knight\'s Gryphon'),
|
||||
(33519,20,8484.54,1025.8,547.462,'Black Knight\'s Gryphon'),
|
||||
(33519,21,8525.36,1029.28,547.418,'Black Knight\'s Gryphon'),
|
||||
(33519,22,8532.81,1052.9,548.168,'Black Knight\'s Gryphon'),
|
||||
(33519,23,8537.36,1077.93,554.579,'Black Knight\'s Gryphon'),
|
||||
(33519,24,8540.53,1083.38,569.683,'Black Knight\'s Gryphon'),
|
||||
(33519,25,8563.64,1140.96,569.683,'Black Knight\'s Gryphon'),
|
||||
(33519,26,8594.9,1205.46,569.683,'Black Knight\'s Gryphon'),
|
||||
(33519,27,8617.1,1257.4,566.183,'Black Knight\'s Gryphon'),
|
||||
(33519,28,8648.5,1329.35,558.019,'Black Knight\'s Gryphon'),
|
||||
(33519,29,8667.72,1388.41,546.188,'Black Knight\'s Gryphon'),
|
||||
(33519,30,8699.14,1474.9,528.22,'Black Knight\'s Gryphon'),
|
||||
(33519,31,8726.87,1546.01,501.774,'Black Knight\'s Gryphon'),
|
||||
(33519,32,8739.06,1592.16,478.551,'Black Knight\'s Gryphon'),
|
||||
(33519,33,8750.8,1636.77,455.08,'Black Knight\'s Gryphon'),
|
||||
(33519,34,8760.01,1669.48,423.221,'Black Knight\'s Gryphon'),
|
||||
(33519,35,8783.31,1701.85,375.887,'Black Knight\'s Gryphon'),
|
||||
(33519,36,8817.34,1735.73,343.332,'Black Knight\'s Gryphon'),
|
||||
(33519,37,8882.32,1789.75,301.581,'Black Knight\'s Gryphon'),
|
||||
(33519,38,8958.6,1841.81,259.914,'Black Knight\'s Gryphon'),
|
||||
(33519,39,9045.89,1908.08,233.414,'Black Knight\'s Gryphon'),
|
||||
(33519,40,9107.18,1964.59,215.97,'Black Knight\'s Gryphon'),
|
||||
(33519,41,9134.76,2036.93,175.193,'Black Knight\'s Gryphon'),
|
||||
(33519,42,9128.61,2089.09,141.359,'Black Knight\'s Gryphon'),
|
||||
(33519,43,9093.36,2128.38,99.3868,'Black Knight\'s Gryphon'),
|
||||
(33519,44,9050.71,2123.66,60.248,'Black Knight\'s Gryphon'),
|
||||
(33519,1,8526.23,567.717,552.608,'Black Knight Gryphon WP1'),
|
||||
(33519,2,8529.65,561.457,553.146,'Black Knight Gryphon WP2'),
|
||||
(33519,3,8560.83,564.063,560.969,'Black Knight Gryphon WP3'),
|
||||
(33519,4,8618.12,597.455,555.925,'Black Knight Gryphon WP4'),
|
||||
(33519,5,8656.04,624.922,552.328,'Black Knight Gryphon WP5'),
|
||||
(33519,6,8680.42,660.062,549.031,'Black Knight Gryphon WP6'),
|
||||
(33519,7,8698.54,705.598,548.933,'Black Knight Gryphon WP7'),
|
||||
(33519,8,8715.51,748.276,549.854,'Black Knight Gryphon WP8'),
|
||||
(33519,9,8740.09,810.067,549.854,'Black Knight Gryphon WP9'),
|
||||
(33519,10,8764.67,871.858,549.854,'Black Knight Gryphon WP10'),
|
||||
(33519,11,8796.18,959.072,518.157,'Black Knight Gryphon WP11'),
|
||||
(33519,12,8815.05,1018.42,468.263,'Black Knight Gryphon WP12'),
|
||||
(33519,13,8833.93,1077.77,418.369,'Black Knight Gryphon WP13'),
|
||||
(33519,14,8843.37,1107.45,393.422,'Black Knight Gryphon WP14'),
|
||||
(33519,15,8852.8,1137.12,368.474,'Black Knight Gryphon WP15'),
|
||||
(33519,16,8887.41,1245.93,277.002,'Black Knight Gryphon WP16'),
|
||||
(33519,17,8899.99,1285.49,243.739,'Black Knight Gryphon WP17'),
|
||||
(33519,18,8917.19,1344.25,206.989,'Black Knight Gryphon WP18'),
|
||||
(33519,19,8935.65,1428.33,171.939,'Black Knight Gryphon WP19'),
|
||||
(33519,20,8952.14,1502.28,152.627,'Black Knight Gryphon WP20'),
|
||||
(33519,21,8977.58,1604.01,134.608,'Black Knight Gryphon WP21'),
|
||||
(33519,22,8999.84,1693.02,118.842,'Black Knight Gryphon WP22'),
|
||||
(33519,23,9009.38,1731.17,112.085,'Black Knight Gryphon WP23'),
|
||||
(33519,24,9016.45,1757.73,107.355,'Black Knight Gryphon WP24'),
|
||||
(33519,25,9042.43,1803.28,98.3457,'Black Knight Gryphon WP25'),
|
||||
(33519,26,9068.41,1848.82,89.3364,'Black Knight Gryphon WP26'),
|
||||
(33519,27,9095.58,1894.97,73.9581,'Black Knight Gryphon WP27'),
|
||||
(33519,28,9113.08,1951.09,61.4356,'Black Knight Gryphon WP28'),
|
||||
(33519,29,9120.62,1988.22,68.3712,'Black Knight Gryphon WP29'),
|
||||
(33519,30,9126.46,2030.88,76.7076,'Black Knight Gryphon WP30'),
|
||||
(33519,31,9125.28,2059.72,71.875,'Black Knight Gryphon WP31'),
|
||||
(33519,32,9123.38,2100.16,76.8306,'Black Knight Gryphon WP32'),
|
||||
(33519,33,9121.33,2132.18,70.2638,'Black Knight Gryphon WP33'),
|
||||
(33519,34,9095.69,2181.88,58.6374,'Black Knight Gryphon WP34'),
|
||||
(33519,35,9076.85,2189.14,54.3544,'Black Knight Gryphon WP35'),
|
||||
(33519,36,9036.74,2180.53,57.0958,'Black Knight Gryphon WP36'),
|
||||
(33519,37,9031.46,2161.92,58.3603,'Black Knight Gryphon WP37'),
|
||||
(33519,38,9043.38,2134.61,60.2847,'Black Knight Gryphon WP38'),
|
||||
(33519,39,9058.39,2101.61,62.2349,'Black Knight Gryphon WP39'),
|
||||
(33519,40,9061.58,2094.73,64.1907,'Black Knight Gryphon WP40'),
|
||||
(33519,41,9061.58,2094.73,64.1907,'Black Knight Gryphon WP41'),
|
||||
(33519,42,9066.5,2084.15,66.2016,'Black Knight Gryphon WP42'),
|
||||
(33519,43,9068.36,2080.14,66.9176,'Black Knight Gryphon WP43'),
|
||||
(33519,44,9069.15,2078.45,66.99,'Black Knight Gryphon WP44'),
|
||||
(33589,1,8492.98,961.62,547.293,'Joseph Wilson'),
|
||||
(33589,2,8489.46,964.667,547.293,'Joseph Wilson'),
|
||||
(33589,3,8489.14,966.726,547.293,'Joseph Wilson'),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue