mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-24 11:28:22 +02:00
added mob name colour update
- added mobmods (need to be loaded from db) - added Zone.GetBattleNpcById - added missing IsValidTarget check in AttackState
This commit is contained in:
parent
9077c60b96
commit
ce5030acd1
18 changed files with 434 additions and 22 deletions
|
@ -23,14 +23,14 @@ DROP TABLE IF EXISTS `server_battlenpc_spawn_locations`;
|
|||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `server_battlenpc_spawn_locations` (
|
||||
`bnpcIndex` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`bnpcId` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`customDisplayName` varchar(32) NOT NULL DEFAULT '',
|
||||
`groupId` int(10) unsigned NOT NULL,
|
||||
`positionX` float NOT NULL,
|
||||
`positionY` float NOT NULL,
|
||||
`positionZ` float NOT NULL,
|
||||
`rotation` float NOT NULL,
|
||||
PRIMARY KEY (`bnpcIndex`)
|
||||
PRIMARY KEY (`bnpcId`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
|
@ -56,4 +56,4 @@ commit;
|
|||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2017-09-07 21:54:41
|
||||
-- Dump completed on 2017-09-10 2:47:43
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue