random_spawn.sql 483 B

123456789101112131415
  1. -- ---------------------------
  2. -- Table structure for random_spawn
  3. -- ---------------------------
  4. DROP TABLE IF EXISTS random_spawn;
  5. CREATE TABLE random_spawn (
  6. groupId INT NOT NULL default 0,
  7. npcId INT NOT NULL default 0,
  8. count INT NOT NULL default 0,
  9. randomSpawnDelay BIGINT NOT NULL default 0,
  10. spawnDelay BIGINT NOT NULL default 0,
  11. offset INT NOT NULL default 0,
  12. PRIMARY KEY (groupId)
  13. );
  14. Insert Into random_spawn Values (1, 7556, 1, 1800000, 0, 0);