mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
moved battlenpc loading to db (still doesnt load for some reason)
This commit is contained in:
@@ -20,7 +20,7 @@ CREATE TABLE `server_battlenpc_groups` (
|
||||
`actorClassId` int(10) unsigned NOT NULL,
|
||||
`minLevel` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
||||
`maxLevel` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
||||
`respawnTime` int(10) unisgned NOT NULL DEFAULT '10',
|
||||
`respawnTime` int(10) unsigned NOT NULL DEFAULT '10',
|
||||
`hp` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`mp` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`skillListId` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
|
@@ -20,5 +20,6 @@ CREATE TABLE `server_battlenpc_spawn_locations` (
|
||||
`positionX` float NOT NULL,
|
||||
`positionY` float NOT NULL,
|
||||
`positionZ` float NOT NULL,
|
||||
`rotation` float NOT NULL,
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
|
||||
`rotation` float NOT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
Reference in New Issue
Block a user