random_spawn_loc.sql 537 B

123456789101112131415
  1. -- ---------------------------
  2. -- Table structure for random_spawn_loc
  3. -- ---------------------------
  4. DROP TABLE IF EXISTS random_spawn_loc;
  5. CREATE TABLE random_spawn_loc (
  6. groupId INT NOT NULL default 0,
  7. x INT NOT NULL default 0,
  8. y INT NOT NULL default 0,
  9. z INT NOT NULL default 0,
  10. PRIMARY KEY (groupId, x, y, z)
  11. );
  12. Insert Into random_spawn_loc Values (1, 178834, -184336, -355);
  13. Insert Into random_spawn_loc Values (1, 151680, -174891, -1782);
  14. Insert Into random_spawn_loc Values (1, 154153, -220105, -3402);