mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
stubbed item use state (needs to actually look up the item and get its reuse stuff)
- added tables to load mobs from (probably dont import besides server_battlenpc_genus.sql) - added field to server_battle_commands for commands usable by both monsters and players (probably arent any really)
This commit is contained in:
24
sql/server_battlenpc_spawn_locations.sql
Normal file
24
sql/server_battlenpc_spawn_locations.sql
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
MySQL Data Transfer
|
||||
Source Host: localhost
|
||||
Source Database: ffxiv_server
|
||||
Target Host: localhost
|
||||
Target Database: ffxiv_server
|
||||
Date: 7/9/2017 7:11:04 PM
|
||||
*/
|
||||
DROP TABLE IF EXISTS `server_battlenpc_spawn_locations`;
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
SET AUTOCOMMIT=0;
|
||||
-- ----------------------------
|
||||
-- Table structure for server_battlenpc_spawn_locations
|
||||
-- ----------------------------
|
||||
CREATE TABLE `server_battlenpc_spawn_locations` (
|
||||
`uniqueId` varchar(32) NOT NULL DEFAULT '',
|
||||
`customDisplayName` varchar(32) DEFAULT NULL,
|
||||
`groupId` int(10) unsigned NOT NULL,
|
||||
`positionX` float NOT NULL,
|
||||
`positionY` float NOT NULL,
|
||||
`positionZ` float NOT NULL,
|
||||
`rotation` float NOT NULL,
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
|
||||
Reference in New Issue
Block a user