PSO2SERVER/database/04-teleports.sql
2024-12-12 22:41:51 +08:00

48 lines
1.7 KiB
SQL

/*
Navicat Premium Data Transfer
Source Server : 3307
Source Server Type : MySQL
Source Server Version : 80019 (8.0.19)
Source Host : 192.168.0.23:3307
Source Schema : pso2server
Target Server Type : MySQL
Target Server Version : 80019 (8.0.19)
File Encoding : 65001
Date: 12/12/2024 22:38:28
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for teleports
-- ----------------------------
DROP TABLE IF EXISTS `teleports`;
CREATE TABLE `teleports` (
`ZoneName` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`ObjectID` int NOT NULL,
`RotX` float NOT NULL,
`RotY` float NOT NULL,
`RotZ` float NOT NULL,
`RotW` float NOT NULL,
`PosX` float NOT NULL,
`PosY` float NOT NULL,
`PosZ` float NOT NULL,
PRIMARY KEY (`ZoneName`, `ObjectID`) USING BTREE
) ENGINE = MyISAM AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of teleports
-- ----------------------------
INSERT INTO `teleports` VALUES ('lobby', 433, 0, -0.964844, 0, 0.262207, 28.5625, 0, 148.375);
INSERT INTO `teleports` VALUES ('lobby', 435, 0, 0.964844, 0, 0.262451, -28.3281, 0, 148.25);
INSERT INTO `teleports` VALUES ('lobby', 437, 0, 0.999512, 0, -0.000893593, 0.112061, 0, 138.625);
INSERT INTO `teleports` VALUES ('lobby', 441, 0, -0.00242615, 0, 0.999512, -0.0609131, 14, -167.125);
INSERT INTO `teleports` VALUES ('lobby', 443, 0, -0.368652, 0, 0.929199, 8.01562, 0.0999756, -143);
INSERT INTO `teleports` VALUES ('lobby', 446, 0, -0.391846, 0, -0.919922, -8.00781, 0.0999756, -142.875);
SET FOREIGN_KEY_CHECKS = 1;