1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-25 06:07:46 +00:00
project-meteor-server/sql/server_battlenpc_spawn_locations.sql
Tahir Akhlaq 68a2d5f0b9 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)
2017-09-05 21:03:38 +01:00

24 lines
739 B
SQL

/*
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;