Jump to content
TrinityCore

Minimize

Members
  • Posts

    16
  • Joined

  • Last visited

Everything posted by Minimize

  1. Okay i have used this sql to move the creature_respawn to characters DB. -- Move creature_respawn from world to characters db INSERT INTO `characters`.`creature_respawn` SELECT * FROM `world`.`creature_respawn`; -- Remove creature_respawn table from world db DROP TABLE `world`.`creature_respawn`; -- Move gameobject_respawn from world to characters db INSERT INTO `characters`.`gameobject_respawn` SELECT * FROM `world`.`gameobject_respawn`; -- Remove creature_respawn table from world db DROP TABLE `world`.`gameobject_respawn`; But unfortunetley another error have occurs: ERROR: [1146] Tble 'characters.bounties' doesnt exist 2012-07-02 12:59:52 ERROR: C:TrinitysrcserversharedDatabaseMySQLConnection.cpp:531 in MySQLConnection::_HandleMySQLErrno FATAL ERROR: Your database structure is not up to date. Please make sure you've executed all queries in the sql/updates folders. - Is there another DB rather than TDB?
  2. Hello guys i have a problem in my game while pvp before i kill player the world.exe crash. C:\Trinity\src\server\shared\Database\MySQLConnect ion.cpp:531 in MySQLConnection::_HandleMySQLErrno FATAL ERROR: Your database structure is not up to date. Please make sure you've executed all queries in the sql/updates folders. - I have already updated the world database by the sql/updates [Err] 1146 - Table 'world.creature_respawn' doesn't exist [Err] ALTER TABLE `creature_respawn` ADD `mapId` SMALLINT(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `respawnTime`; [Msg] Finished - Unsuccessfully
×
×
  • Create New...