Resetting the MYSQL menu

Shout-Out

User Tag List

Results 1 to 9 of 9
  1. #1
    alolas's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Resetting the MYSQL

    Hey,

    I recently set up the Ascent server on my computer. I accidently messed up the accounts database on my database. I was wondering how to delete the mysql completely, and restart. Because even after downloading, and running the Ascent server from a new download and fresh location, I still get the same error.

    Any solutions?

    Resetting the MYSQL
  2. #2
    The Grim Reaper's Avatar Member
    Reputation
    18
    Join Date
    Jan 2008
    Posts
    68
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by alolas View Post
    Hey,

    I recently set up the Ascent server on my computer. I accidently messed up the accounts database on my database. I was wondering how to delete the mysql completely, and restart. Because even after downloading, and running the Ascent server from a new download and fresh location, I still get the same error.

    Any solutions?
    1. What Error Is It Giving You?
    2. Screen Shots If Possible
    3. Why Not Just Delete The Accounts Database And Re Create It?

  3. #3
    alolas's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry, my post count wasn't high enough to post pic's. Heres one.


  4. #4
    The Grim Reaper's Avatar Member
    Reputation
    18
    Join Date
    Jan 2008
    Posts
    68
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by alolas View Post
    Sorry, my post count wasn't high enough to post pic's. Heres one.

    Looks Like Something Went Wrong When You Were Executing The SQL. Just Delete The Account Database, Create A New One And Try Executing The SQL Again.

  5. #5
    alolas's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can you give me a base SQL script to set up the accounts database? I can't seem to get it to work. Just one with the admin/admin2 accounts.

  6. #6
    The Grim Reaper's Avatar Member
    Reputation
    18
    Join Date
    Jan 2008
    Posts
    68
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by alolas View Post
    Can you give me a base SQL script to set up the accounts database? I can't seem to get it to work. Just one with the admin/admin2 accounts.
    Code:
    /*
    MySQL Data Transfer
    Source Host: localhost
    Source Database: accounts
    Target Host: localhost
    Target Database: accounts
    Date: 6/6/2008 1:22:59 AM
    */
    
    SET FOREIGN_KEY_CHECKS=0;
    -- ----------------------------
    -- Table structure for account_data
    -- ----------------------------
    CREATE TABLE `account_data` (
      `acct` int(30) NOT NULL,
      `uiconfig0` blob,
      `uiconfig1` blob,
      `uiconfig2` blob,
      `uiconfig3` blob,
      `uiconfig4` blob,
      `uiconfig5` blob,
      `uiconfig6` blob,
      `uiconfig7` blob,
      `uiconfig8` blob,
      PRIMARY KEY  (`acct`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for account_forced_permissions
    -- ----------------------------
    CREATE TABLE `account_forced_permissions` (
      `login` varchar(50) NOT NULL,
      `permissions` varchar(100) NOT NULL,
      PRIMARY KEY  (`login`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for accounts
    -- ----------------------------
    CREATE TABLE `accounts` (
      `acct` int(10) unsigned NOT NULL auto_increment COMMENT 'Unique ID',
      `login` varchar(32) collate utf8_unicode_ci NOT NULL COMMENT 'Login username',
      `password` varchar(32) collate utf8_unicode_ci NOT NULL COMMENT 'Login password',
      `encrypted_password` varchar(42) collate utf8_unicode_ci NOT NULL default '',
      `gm` varchar(32) collate utf8_unicode_ci NOT NULL default '' COMMENT 'Game permissions',
      `banned` tinyint(3) unsigned NOT NULL default '0' COMMENT 'Account Standing',
      `lastlogin` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Last login timestamp',
      `lastip` varchar(16) collate utf8_unicode_ci NOT NULL default '' COMMENT 'Last remote address',
      `email` varchar(64) collate utf8_unicode_ci NOT NULL default '' COMMENT 'Contact e-mail address',
      `flags` tinyint(3) unsigned NOT NULL default '0' COMMENT 'Client flags',
      `forceLanguage` varchar(5) collate utf8_unicode_ci NOT NULL default 'enUS',
      `muted` int(30) NOT NULL default '0',
      PRIMARY KEY  (`acct`),
      UNIQUE KEY `a` (`login`)
    ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Account Information';
    
    -- ----------------------------
    -- Table structure for arenateams
    -- ----------------------------
    CREATE TABLE `arenateams` (
      `id` int(30) NOT NULL,
      `type` int(30) NOT NULL,
      `leader` int(30) NOT NULL,
      `name` varchar(150) NOT NULL,
      `emblemstyle` int(40) NOT NULL,
      `emblemcolour` bigint(40) NOT NULL,
      `borderstyle` int(40) NOT NULL,
      `bordercolour` bigint(40) NOT NULL,
      `backgroundcolour` bigint(40) NOT NULL,
      `rating` int(30) NOT NULL,
      `data` varchar(150) NOT NULL,
      `ranking` int(30) NOT NULL,
      `player_data1` varchar(60) NOT NULL,
      `player_data2` varchar(60) NOT NULL,
      `player_data3` varchar(60) NOT NULL,
      `player_data4` varchar(60) NOT NULL,
      `player_data5` varchar(60) NOT NULL,
      `player_data6` varchar(60) NOT NULL,
      `player_data7` varchar(60) NOT NULL,
      `player_data8` varchar(60) NOT NULL,
      `player_data9` varchar(60) NOT NULL,
      `player_data10` varchar(60) NOT NULL,
      PRIMARY KEY  (`id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for auctions
    -- ----------------------------
    CREATE TABLE `auctions` (
      `auctionId` int(32) NOT NULL auto_increment,
      `auctionhouse` int(32) default NULL,
      `item` bigint(10) default NULL,
      `owner` bigint(10) default NULL,
      `buyout` int(32) default NULL,
      `time` int(32) default NULL,
      `bidder` bigint(10) default NULL,
      `bid` int(32) default NULL,
      `deposit` int(32) default NULL,
      PRIMARY KEY  (`auctionId`),
      KEY `b` (`auctionhouse`)
    ) ENGINE=MyISAM AUTO_INCREMENT=1027356 DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for banned_names
    -- ----------------------------
    CREATE TABLE `banned_names` (
      `name` varchar(30) collate utf8_unicode_ci NOT NULL
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
    
    -- ----------------------------
    -- Table structure for characters
    -- ----------------------------
    CREATE TABLE `characters` (
      `guid` int(6) unsigned NOT NULL default '0',
      `acct` int(20) unsigned NOT NULL default '0',
      `name` varchar(21) NOT NULL default '',
      `race` smallint(3) NOT NULL,
      `class` smallint(3) NOT NULL,
      `gender` tinyint(1) NOT NULL,
      `custom_faction` int(30) NOT NULL default '0',
      `level` int(3) NOT NULL,
      `xp` int(30) NOT NULL,
      `exploration_data` longtext NOT NULL,
      `skills` longtext NOT NULL,
      `watched_faction_index` bigint(40) NOT NULL,
      `selected_pvp_title` int(30) NOT NULL,
      `available_pvp_titles` int(30) NOT NULL,
      `gold` int(30) NOT NULL,
      `ammo_id` int(30) NOT NULL,
      `available_prof_points` int(30) NOT NULL,
      `available_talent_points` int(30) NOT NULL,
      `current_hp` int(30) NOT NULL,
      `current_power` int(30) NOT NULL,
      `pvprank` int(30) NOT NULL,
      `bytes` int(30) NOT NULL,
      `bytes2` int(30) NOT NULL,
      `player_flags` int(30) NOT NULL,
      `player_bytes` int(30) NOT NULL,
      `positionX` float NOT NULL default '0',
      `positionY` float NOT NULL default '0',
      `positionZ` float NOT NULL default '0',
      `orientation` float NOT NULL default '0',
      `mapId` int(8) unsigned NOT NULL default '0',
      `zoneId` int(8) unsigned NOT NULL default '0',
      `taximask` longtext NOT NULL,
      `banned` int(40) unsigned NOT NULL default '0',
      `banReason` varchar(255) NOT NULL,
      `timestamp` int(30) default NULL,
      `online` int(11) default NULL,
      `bindpositionX` float NOT NULL default '0',
      `bindpositionY` float NOT NULL default '0',
      `bindpositionZ` float NOT NULL default '0',
      `bindmapId` int(8) unsigned NOT NULL default '0',
      `bindzoneId` int(8) unsigned NOT NULL default '0',
      `isResting` int(3) NOT NULL default '0',
      `restState` int(5) NOT NULL default '0',
      `restTime` int(5) NOT NULL default '0',
      `playedtime` text NOT NULL,
      `deathstate` int(5) NOT NULL default '0',
      `TalentResetTimes` int(5) NOT NULL default '0',
      `first_login` tinyint(1) NOT NULL default '0',
      `forced_rename_pending` tinyint(1) NOT NULL default '0',
      `arenaPoints` int(10) NOT NULL,
      `totalstableslots` int(10) unsigned NOT NULL default '0',
      `instance_id` int(10) NOT NULL,
      `entrypointmap` int(10) NOT NULL,
      `entrypointx` float NOT NULL,
      `entrypointy` float NOT NULL,
      `entrypointz` float NOT NULL,
      `entrypointo` float NOT NULL,
      `entrypointinstance` int(10) NOT NULL,
      `taxi_path` int(10) NOT NULL,
      `taxi_lastnode` int(10) NOT NULL,
      `taxi_mountid` int(10) NOT NULL,
      `transporter` int(10) NOT NULL,
      `transporter_xdiff` float NOT NULL,
      `transporter_ydiff` float NOT NULL,
      `transporter_zdiff` float NOT NULL,
      `spells` longtext NOT NULL,
      `deleted_spells` longtext NOT NULL,
      `reputation` longtext NOT NULL,
      `actions` longtext NOT NULL,
      `auras` longtext NOT NULL,
      `finished_quests` longtext NOT NULL,
      `finisheddailies` longtext NOT NULL,
      `honorRolloverTime` int(30) NOT NULL default '0',
      `killsToday` int(10) NOT NULL default '0',
      `killsYesterday` int(10) NOT NULL default '0',
      `killsLifeTime` int(10) NOT NULL default '0',
      `honorToday` int(10) NOT NULL default '0',
      `honorYesterday` int(10) NOT NULL default '0',
      `honorPoints` int(10) NOT NULL default '0',
      `difficulty` int(4) NOT NULL default '0',
      PRIMARY KEY  (`guid`),
      KEY `acct` (`acct`),
      KEY `name` (`name`),
      KEY `b` (`banned`),
      KEY `c` (`online`),
      KEY `d` (`forced_rename_pending`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for characters_insert_queue
    -- ----------------------------
    CREATE TABLE `characters_insert_queue` (
      `insert_temp_guid` int(10) unsigned NOT NULL default '0',
      `acct` int(10) unsigned NOT NULL default '0',
      `name` varchar(21) collate utf8_unicode_ci NOT NULL,
      `race` tinyint(3) unsigned NOT NULL default '0',
      `class` tinyint(3) unsigned NOT NULL default '0',
      `gender` tinyint(3) unsigned NOT NULL default '0',
      `custom_faction` int(30) NOT NULL default '0',
      `level` int(10) unsigned NOT NULL default '0',
      `xp` int(10) unsigned NOT NULL default '0',
      `exploration_data` longtext collate utf8_unicode_ci NOT NULL,
      `skills` longtext collate utf8_unicode_ci NOT NULL,
      `watched_faction_index` int(10) unsigned NOT NULL default '0',
      `selected_pvp_title` int(10) unsigned NOT NULL default '0',
      `available_pvp_titles` int(10) unsigned NOT NULL default '0',
      `gold` int(10) unsigned NOT NULL default '0',
      `ammo_id` int(10) unsigned NOT NULL default '0',
      `available_prof_points` int(10) unsigned NOT NULL default '0',
      `available_talent_points` int(10) unsigned NOT NULL default '0',
      `current_hp` int(10) unsigned NOT NULL default '0',
      `current_power` int(10) unsigned NOT NULL default '0',
      `pvprank` tinyint(3) unsigned NOT NULL default '0',
      `bytes` int(10) unsigned NOT NULL default '0',
      `bytes2` int(10) unsigned NOT NULL default '0',
      `player_flags` int(10) unsigned NOT NULL default '0',
      `player_bytes` int(10) unsigned NOT NULL default '0',
      `positionX` float NOT NULL default '0',
      `positionY` float NOT NULL default '0',
      `positionZ` float NOT NULL default '0',
      `orientation` float NOT NULL default '0',
      `mapId` int(10) unsigned NOT NULL default '0',
      `zoneId` int(10) unsigned NOT NULL default '0',
      `taximask` longtext collate utf8_unicode_ci NOT NULL,
      `banned` int(40) NOT NULL,
      `banReason` varchar(50) collate utf8_unicode_ci NOT NULL,
      `timestamp` int(11) NOT NULL,
      `online` int(11) default NULL,
      `bindpositionX` float NOT NULL default '0',
      `bindpositionY` float NOT NULL default '0',
      `bindpositionZ` float NOT NULL default '0',
      `bindmapId` int(10) unsigned NOT NULL default '0',
      `bindzoneId` int(10) unsigned NOT NULL default '0',
      `isResting` tinyint(3) unsigned NOT NULL default '0',
      `restState` tinyint(3) unsigned NOT NULL default '0',
      `restTime` int(10) unsigned NOT NULL default '0',
      `playedtime` longtext collate utf8_unicode_ci NOT NULL,
      `deathstate` int(10) unsigned NOT NULL default '0',
      `TalentResetTimes` int(10) unsigned NOT NULL default '0',
      `first_login` tinyint(3) unsigned NOT NULL default '0',
      `forced_rename_pending` tinyint(3) unsigned NOT NULL default '0',
      `publicNote` varchar(32) collate utf8_unicode_ci NOT NULL,
      `officerNote` varchar(32) collate utf8_unicode_ci NOT NULL,
      `guildid` int(10) unsigned NOT NULL default '0',
      `guildRank` int(10) unsigned NOT NULL default '0',
      `arenaPoints` int(10) NOT NULL,
      `totalstableslots` int(10) unsigned NOT NULL default '0',
      `instance_id` int(10) unsigned NOT NULL default '0',
      `entrypointmap` int(10) unsigned NOT NULL default '0',
      `entrypointx` float NOT NULL default '0',
      `entrypointy` float NOT NULL default '0',
      `entrypointz` float NOT NULL default '0',
      `entrypointo` float NOT NULL default '0',
      `entrypointinstance` int(10) unsigned NOT NULL default '0',
      `taxi_path` int(10) unsigned NOT NULL default '0',
      `taxi_lastnode` int(10) unsigned NOT NULL default '0',
      `taxi_mountid` int(10) unsigned NOT NULL default '0',
      `transporter` int(10) unsigned NOT NULL default '0',
      `transporter_xdiff` float NOT NULL default '0',
      `transporter_ydiff` float NOT NULL default '0',
      `transporter_zdiff` float NOT NULL default '0',
      `spells` longtext collate utf8_unicode_ci NOT NULL,
      `deleted_spells` longtext collate utf8_unicode_ci NOT NULL,
      `reputation` longtext collate utf8_unicode_ci NOT NULL,
      `actions` longtext collate utf8_unicode_ci NOT NULL,
      `auras` longtext collate utf8_unicode_ci NOT NULL,
      `finished_quests` longtext collate utf8_unicode_ci NOT NULL,
      `honorPointsToAdd` int(10) NOT NULL,
      `killsToday` int(10) unsigned NOT NULL default '0',
      `killsYesterday` int(10) unsigned NOT NULL default '0',
      `killsLifeTime` int(10) unsigned NOT NULL default '0',
      `honorToday` int(10) unsigned NOT NULL default '0',
      `honorYesterday` int(10) unsigned NOT NULL default '0',
      `honorPoints` int(10) unsigned NOT NULL default '0',
      `difficulty` int(10) unsigned NOT NULL default '0',
      UNIQUE KEY `guid` (`insert_temp_guid`),
      KEY `acct` (`acct`),
      KEY `guildid` (`guildid`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
    
    -- ----------------------------
    -- Table structure for charters
    -- ----------------------------
    CREATE TABLE `charters` (
      `charterId` int(30) NOT NULL,
      `charterType` int(30) NOT NULL default '0',
      `leaderGuid` int(20) unsigned NOT NULL default '0',
      `guildName` varchar(32) NOT NULL default '',
      `itemGuid` bigint(40) unsigned NOT NULL default '0',
      `signer1` int(10) unsigned NOT NULL default '0',
      `signer2` int(10) unsigned NOT NULL default '0',
      `signer3` int(10) unsigned NOT NULL default '0',
      `signer4` int(10) unsigned NOT NULL default '0',
      `signer5` int(10) unsigned NOT NULL default '0',
      `signer6` int(10) unsigned NOT NULL default '0',
      `signer7` int(10) unsigned NOT NULL default '0',
      `signer8` int(10) unsigned NOT NULL default '0',
      `signer9` int(10) unsigned NOT NULL default '0',
      PRIMARY KEY  (`charterId`),
      UNIQUE KEY `leaderGuid` (`leaderGuid`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='InnoDB free: 11264 kB; InnoDB free: 18432 kB';
    
    -- ----------------------------
    -- Table structure for clientaddons
    -- ----------------------------
    CREATE TABLE `clientaddons` (
      `id` int(10) NOT NULL auto_increment,
      `name` varchar(50) default NULL,
      `crc` bigint(50) default NULL,
      `banned` int(1) NOT NULL default '0',
      `showinlist` int(1) NOT NULL default '0',
      PRIMARY KEY  (`id`),
      KEY `index` (`name`)
    ) ENGINE=MyISAM AUTO_INCREMENT=153 DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for command_overrides
    -- ----------------------------
    CREATE TABLE `command_overrides` (
      `command_name` varchar(100) NOT NULL,
      `access_level` varchar(10) NOT NULL,
      PRIMARY KEY  (`command_name`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for corpses
    -- ----------------------------
    CREATE TABLE `corpses` (
      `guid` bigint(20) unsigned NOT NULL default '0',
      `positionX` float NOT NULL default '0',
      `positionY` float NOT NULL default '0',
      `positionZ` float NOT NULL default '0',
      `orientation` float NOT NULL default '0',
      `zoneId` int(11) NOT NULL default '38',
      `mapId` int(11) NOT NULL default '0',
      `instanceId` int(11) NOT NULL default '0',
      `data` longtext NOT NULL,
      PRIMARY KEY  (`guid`),
      KEY `b` (`instanceId`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for gm_tickets
    -- ----------------------------
    CREATE TABLE `gm_tickets` (
      `guid` int(6) NOT NULL default '0',
      `name` varchar(200) NOT NULL default '',
      `level` int(6) NOT NULL default '0',
      `type` int(2) NOT NULL default '0',
      `posX` float NOT NULL default '0',
      `posY` float NOT NULL default '0',
      `posZ` float NOT NULL default '0',
      `message` text NOT NULL,
      `timestamp` text,
      PRIMARY KEY  (`guid`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for groups
    -- ----------------------------
    CREATE TABLE `groups` (
      `group_id` int(30) NOT NULL,
      `group_type` tinyint(2) NOT NULL,
      `subgroup_count` tinyint(2) NOT NULL,
      `loot_method` tinyint(2) NOT NULL,
      `loot_threshold` tinyint(2) NOT NULL,
      `difficulty` int(30) NOT NULL default '0',
      `assistant_leader` int(30) NOT NULL default '0',
      `main_tank` int(30) NOT NULL default '0',
      `main_assist` int(30) NOT NULL default '0',
      `group1member1` int(50) NOT NULL,
      `group1member2` int(50) NOT NULL,
      `group1member3` int(50) NOT NULL,
      `group1member4` int(50) NOT NULL,
      `group1member5` int(50) NOT NULL,
      `group2member1` int(50) NOT NULL,
      `group2member2` int(50) NOT NULL,
      `group2member3` int(50) NOT NULL,
      `group2member4` int(50) NOT NULL,
      `group2member5` int(50) NOT NULL,
      `group3member1` int(50) NOT NULL,
      `group3member2` int(50) NOT NULL,
      `group3member3` int(50) NOT NULL,
      `group3member4` int(50) NOT NULL,
      `group3member5` int(50) NOT NULL,
      `group4member1` int(50) NOT NULL,
      `group4member2` int(50) NOT NULL,
      `group4member3` int(50) NOT NULL,
      `group4member4` int(50) NOT NULL,
      `group4member5` int(50) NOT NULL,
      `group5member1` int(50) NOT NULL,
      `group5member2` int(50) NOT NULL,
      `group5member3` int(50) NOT NULL,
      `group5member4` int(50) NOT NULL,
      `group5member5` int(50) NOT NULL,
      `group6member1` int(50) NOT NULL,
      `group6member2` int(50) NOT NULL,
      `group6member3` int(50) NOT NULL,
      `group6member4` int(50) NOT NULL,
      `group6member5` int(50) NOT NULL,
      `group7member1` int(50) NOT NULL,
      `group7member2` int(50) NOT NULL,
      `group7member3` int(50) NOT NULL,
      `group7member4` int(50) NOT NULL,
      `group7member5` int(50) NOT NULL,
      `group8member1` int(50) NOT NULL,
      `group8member2` int(50) NOT NULL,
      `group8member3` int(50) NOT NULL,
      `group8member4` int(50) NOT NULL,
      `group8member5` int(50) NOT NULL,
      `timestamp` int(30) NOT NULL,
      PRIMARY KEY  (`group_id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for guild_bankitems
    -- ----------------------------
    CREATE TABLE `guild_bankitems` (
      `guildId` int(30) NOT NULL,
      `tabId` int(30) NOT NULL,
      `slotId` int(30) NOT NULL,
      `itemGuid` int(30) NOT NULL,
      PRIMARY KEY  (`guildId`,`tabId`,`slotId`),
      KEY `a` (`guildId`),
      KEY `b` (`tabId`),
      KEY `c` (`slotId`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for guild_banklogs
    -- ----------------------------
    CREATE TABLE `guild_banklogs` (
      `log_id` int(30) NOT NULL,
      `guildid` int(30) NOT NULL,
      `tabid` int(30) NOT NULL COMMENT 'tab 6 is money logs',
      `action` int(5) NOT NULL,
      `player_guid` int(30) NOT NULL,
      `item_entry` int(30) NOT NULL,
      `stack_count` int(30) NOT NULL,
      `timestamp` int(30) NOT NULL,
      PRIMARY KEY  (`log_id`,`guildid`),
      KEY `a` (`guildid`),
      KEY `b` (`tabid`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for guild_banktabs
    -- ----------------------------
    CREATE TABLE `guild_banktabs` (
      `guildId` int(30) NOT NULL,
      `tabId` int(30) NOT NULL,
      `tabName` varchar(200) NOT NULL,
      `tabIcon` varchar(200) NOT NULL,
      PRIMARY KEY  (`guildId`,`tabId`),
      KEY `a` (`guildId`),
      KEY `b` (`tabId`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for guild_data
    -- ----------------------------
    CREATE TABLE `guild_data` (
      `guildid` int(30) NOT NULL,
      `playerid` int(30) NOT NULL,
      `guildRank` int(30) NOT NULL,
      `publicNote` varchar(300) NOT NULL,
      `officerNote` varchar(300) NOT NULL,
      `lastWithdrawReset` int(30) NOT NULL default '0',
      `withdrawlsSinceLastReset` int(30) NOT NULL default '0',
      `lastItemWithdrawReset0` int(30) NOT NULL default '0',
      `itemWithdrawlsSinceLastReset0` int(30) NOT NULL default '0',
      `lastItemWithdrawReset1` int(30) NOT NULL,
      `itemWithdrawlsSinceLastReset1` int(30) NOT NULL,
      `lastItemWithdrawReset2` int(30) NOT NULL,
      `itemWithdrawlsSinceLastReset2` int(30) NOT NULL,
      `lastItemWithdrawReset3` int(30) NOT NULL,
      `itemWithdrawlsSinceLastReset3` int(30) NOT NULL,
      `lastItemWithdrawReset4` int(30) NOT NULL,
      `itemWithdrawlsSinceLastReset4` int(30) NOT NULL,
      `lastItemWithdrawReset5` int(30) NOT NULL,
      `itemWithdrawlsSinceLastReset5` int(30) NOT NULL,
      KEY `a` (`guildid`),
      KEY `b` (`playerid`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for guild_logs
    -- ----------------------------
    CREATE TABLE `guild_logs` (
      `log_id` int(30) NOT NULL,
      `guildid` int(30) NOT NULL,
      `timestamp` int(30) NOT NULL,
      `event_type` int(30) NOT NULL,
      `misc1` int(30) NOT NULL,
      `misc2` int(30) NOT NULL,
      `misc3` int(30) NOT NULL,
      PRIMARY KEY  (`log_id`,`guildid`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for guild_ranks
    -- ----------------------------
    CREATE TABLE `guild_ranks` (
      `guildId` int(6) unsigned NOT NULL default '0',
      `rankId` int(1) NOT NULL default '0',
      `rankName` varchar(255) NOT NULL default '',
      `rankRights` int(3) unsigned NOT NULL default '0',
      `goldLimitPerDay` int(30) NOT NULL default '0',
      `bankTabFlags0` int(30) NOT NULL default '0',
      `itemStacksPerDay0` int(30) NOT NULL default '0',
      `bankTabFlags1` int(30) NOT NULL default '0',
      `itemStacksPerDay1` int(30) NOT NULL default '0',
      `bankTabFlags2` int(30) NOT NULL default '0',
      `itemStacksPerDay2` int(30) NOT NULL default '0',
      `bankTabFlags3` int(30) NOT NULL default '0',
      `itemStacksPerDay3` int(30) NOT NULL default '0',
      `bankTabFlags4` int(30) NOT NULL default '0',
      `itemStacksPerDay4` int(30) NOT NULL default '0',
      `bankTabFlags5` int(30) NOT NULL default '0',
      `itemStacksPerDay5` int(30) NOT NULL default '0',
      PRIMARY KEY  (`guildId`,`rankId`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for guilds
    -- ----------------------------
    CREATE TABLE `guilds` (
      `guildId` bigint(20) NOT NULL auto_increment,
      `guildName` varchar(32) NOT NULL default '',
      `leaderGuid` bigint(20) NOT NULL default '0',
      `emblemStyle` int(10) NOT NULL default '0',
      `emblemColor` int(10) NOT NULL default '0',
      `borderStyle` int(10) NOT NULL default '0',
      `borderColor` int(10) NOT NULL default '0',
      `backgroundColor` int(10) NOT NULL default '0',
      `guildInfo` varchar(300) NOT NULL default '',
      `motd` varchar(300) NOT NULL default '',
      `createdate` int(30) NOT NULL,
      `bankTabCount` int(30) NOT NULL,
      `bankBalance` int(30) NOT NULL,
      PRIMARY KEY  (`guildId`),
      UNIQUE KEY `guildId` (`guildId`)
    ) ENGINE=MyISAM AUTO_INCREMENT=8189 DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for instances
    -- ----------------------------
    CREATE TABLE `instances` (
      `id` int(30) NOT NULL,
      `mapid` int(30) NOT NULL,
      `creation` int(30) NOT NULL,
      `expiration` int(30) NOT NULL,
      `killed_npc_guids` text NOT NULL,
      `difficulty` int(30) NOT NULL,
      `creator_group` int(30) NOT NULL,
      `creator_guid` int(30) NOT NULL,
      PRIMARY KEY  (`id`),
      KEY `a` (`mapid`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for ipbans
    -- ----------------------------
    CREATE TABLE `ipbans` (
      `ip` varchar(16) collate utf8_unicode_ci NOT NULL default '' COMMENT 'Remote host',
      `expire` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Expiry time (s)',
      PRIMARY KEY  (`ip`),
      UNIQUE KEY `a` (`ip`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='IPBanner';
    
    -- ----------------------------
    -- Table structure for mailbox
    -- ----------------------------
    CREATE TABLE `mailbox` (
      `message_id` int(30) NOT NULL default '0',
      `message_type` int(30) NOT NULL default '0',
      `player_guid` int(30) NOT NULL default '0',
      `sender_guid` int(30) NOT NULL default '0',
      `subject` varchar(255) NOT NULL default '',
      `body` longtext NOT NULL,
      `money` int(30) NOT NULL default '0',
      `attached_item_guids` varchar(200) NOT NULL default '',
      `cod` int(30) NOT NULL default '0',
      `stationary` int(30) NOT NULL default '0',
      `expiry_time` int(30) NOT NULL default '0',
      `delivery_time` int(30) NOT NULL default '0',
      `copy_made` int(30) NOT NULL default '0',
      `read_flag` int(30) NOT NULL default '0',
      `deleted_flag` int(30) NOT NULL default '0',
      PRIMARY KEY  (`message_id`),
      KEY `b` (`player_guid`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for mailbox_insert_queue
    -- ----------------------------
    CREATE TABLE `mailbox_insert_queue` (
      `sender_guid` int(30) NOT NULL,
      `receiver_guid` int(30) NOT NULL,
      `subject` varchar(200) NOT NULL,
      `body` varchar(500) NOT NULL,
      `stationary` int(30) NOT NULL,
      `money` int(30) NOT NULL,
      `item_id` int(30) NOT NULL,
      `item_stack` int(30) NOT NULL
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for playercooldowns
    -- ----------------------------
    CREATE TABLE `playercooldowns` (
      `player_guid` int(30) NOT NULL,
      `cooldown_type` int(30) NOT NULL COMMENT '0 is spell, 1 is item, 2 is spell category',
      `cooldown_misc` int(30) NOT NULL COMMENT 'spellid/itemid/category',
      `cooldown_expire_time` int(30) NOT NULL COMMENT 'expiring time in unix epoch format',
      `cooldown_spellid` int(30) NOT NULL COMMENT 'spell that cast it',
      `cooldown_itemid` int(30) NOT NULL COMMENT 'item that cast it'
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
    
    -- ----------------------------
    -- Table structure for playeritems
    -- ----------------------------
    CREATE TABLE `playeritems` (
      `ownerguid` int(10) unsigned NOT NULL default '0',
      `guid` bigint(10) NOT NULL auto_increment,
      `entry` int(10) unsigned NOT NULL default '0',
      `wrapped_item_id` int(30) NOT NULL default '0',
      `wrapped_creator` int(30) NOT NULL default '0',
      `creator` int(10) unsigned NOT NULL default '0',
      `count` int(10) unsigned NOT NULL default '0',
      `charges` int(10) unsigned NOT NULL default '0',
      `flags` int(10) unsigned NOT NULL default '0',
      `randomprop` int(10) unsigned NOT NULL default '0',
      `randomsuffix` int(10) NOT NULL,
      `itemtext` int(10) unsigned NOT NULL default '0',
      `durability` int(10) unsigned NOT NULL default '0',
      `containerslot` int(11) default '-1',
      `slot` int(10) NOT NULL default '0',
      `enchantments` longtext NOT NULL,
      PRIMARY KEY  (`guid`),
      KEY `ownerguid` (`ownerguid`),
      KEY `itemtext` (`itemtext`)
    ) ENGINE=MyISAM AUTO_INCREMENT=87328711 DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for playeritems_insert_queue
    -- ----------------------------
    CREATE TABLE `playeritems_insert_queue` (
      `ownerguid` int(10) unsigned NOT NULL default '0',
      `entry` int(10) unsigned NOT NULL default '0',
      `wrapped_item_id` int(30) NOT NULL default '0',
      `wrapped_creator` int(30) NOT NULL default '0',
      `creator` int(10) unsigned NOT NULL default '0',
      `count` int(10) unsigned NOT NULL default '0',
      `charges` int(10) unsigned NOT NULL default '0',
      `flags` int(10) unsigned NOT NULL default '0',
      `randomprop` int(10) unsigned NOT NULL default '0',
      `randomsuffix` int(30) NOT NULL,
      `itemtext` int(10) unsigned NOT NULL default '0',
      `durability` int(10) unsigned NOT NULL default '0',
      `containerslot` int(11) NOT NULL default '-1' COMMENT 'couldnt find this being used in source',
      `slot` tinyint(4) NOT NULL default '0',
      `enchantments` longtext collate utf8_unicode_ci NOT NULL,
      KEY `ownerguid` (`ownerguid`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
    
    -- ----------------------------
    -- Table structure for playerpets
    -- ----------------------------
    CREATE TABLE `playerpets` (
      `ownerguid` bigint(20) NOT NULL default '0',
      `petnumber` int(11) NOT NULL default '0',
      `name` varchar(21) NOT NULL default '',
      `entry` int(10) unsigned NOT NULL default '0',
      `fields` longtext character set utf8 collate utf8_unicode_ci NOT NULL,
      `xp` int(11) NOT NULL default '0',
      `active` tinyint(1) NOT NULL default '0',
      `level` int(11) NOT NULL default '0',
      `happiness` int(11) NOT NULL default '0',
      `actionbar` varchar(200) NOT NULL default '',
      `happinessupdate` int(11) NOT NULL default '0',
      `summon` int(11) NOT NULL default '0',
      `loyaltypts` int(11) NOT NULL,
      `loyaltyupdate` int(11) NOT NULL,
      PRIMARY KEY  (`ownerguid`,`petnumber`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for playerpetspells
    -- ----------------------------
    CREATE TABLE `playerpetspells` (
      `ownerguid` bigint(20) NOT NULL default '0',
      `petnumber` int(4) NOT NULL default '0',
      `spellid` int(4) NOT NULL default '0',
      `flags` int(4) NOT NULL default '0',
      KEY `a` (`ownerguid`),
      KEY `b` (`petnumber`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for playersummonspells
    -- ----------------------------
    CREATE TABLE `playersummonspells` (
      `ownerguid` bigint(20) NOT NULL default '0',
      `entryid` int(4) NOT NULL default '0',
      `spellid` int(4) NOT NULL default '0',
      KEY `a` (`ownerguid`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for questlog
    -- ----------------------------
    CREATE TABLE `questlog` (
      `player_guid` bigint(20) unsigned NOT NULL default '0',
      `quest_id` bigint(20) unsigned NOT NULL default '0',
      `slot` int(20) unsigned NOT NULL default '0',
      `time_left` bigint(20) NOT NULL default '0',
      `explored_area1` bigint(20) unsigned NOT NULL default '0',
      `explored_area2` bigint(20) unsigned NOT NULL default '0',
      `explored_area3` bigint(20) unsigned NOT NULL default '0',
      `explored_area4` bigint(20) unsigned NOT NULL default '0',
      `mob_kill1` bigint(20) NOT NULL default '0',
      `mob_kill2` bigint(20) NOT NULL default '0',
      `mob_kill3` bigint(20) NOT NULL default '0',
      `mob_kill4` bigint(20) NOT NULL default '0',
      PRIMARY KEY  (`player_guid`,`quest_id`)
    ) ENGINE=MyISAM AUTO_INCREMENT=33067588 DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for server_settings
    -- ----------------------------
    CREATE TABLE `server_settings` (
      `setting_id` varchar(200) NOT NULL,
      `setting_value` int(50) NOT NULL,
      PRIMARY KEY  (`setting_id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Table structure for social_friends
    -- ----------------------------
    CREATE TABLE `social_friends` (
      `character_guid` int(30) NOT NULL,
      `friend_guid` int(30) NOT NULL,
      `note` varchar(100) NOT NULL,
      PRIMARY KEY  (`character_guid`,`friend_guid`),
      KEY `a` (`character_guid`),
      KEY `b` (`friend_guid`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
    
    -- ----------------------------
    -- Table structure for social_ignores
    -- ----------------------------
    CREATE TABLE `social_ignores` (
      `character_guid` int(30) NOT NULL,
      `ignore_guid` int(30) NOT NULL,
      PRIMARY KEY  (`character_guid`,`ignore_guid`),
      KEY `a` (`character_guid`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
    
    -- ----------------------------
    -- Table structure for tutorials
    -- ----------------------------
    CREATE TABLE `tutorials` (
      `playerId` bigint(20) unsigned NOT NULL default '0',
      `tut0` bigint(20) unsigned NOT NULL default '0',
      `tut1` bigint(20) unsigned NOT NULL default '0',
      `tut2` bigint(20) unsigned NOT NULL default '0',
      `tut3` bigint(20) unsigned NOT NULL default '0',
      `tut4` bigint(20) unsigned NOT NULL default '0',
      `tut5` bigint(20) unsigned NOT NULL default '0',
      `tut6` bigint(20) unsigned NOT NULL default '0',
      `tut7` bigint(20) unsigned NOT NULL default '0',
      PRIMARY KEY  (`playerId`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Records 
    -- ----------------------------
    INSERT INTO `accounts` VALUES ('1', 'GrimReaper', 'wow1234', '', 'az', '0', '2008-06-06 00:35:28', '', '', '8', 'enUS', '0');
    INSERT INTO `accounts` VALUES ('2', 'Saidra', 'wow1234', '', 'az', '0', '0000-00-00 00:00:00', '', '', '8', 'enUS', '0');
    INSERT INTO `accounts` VALUES ('3', 'Wade', 'wow1234', '', '', '0', '0000-00-00 00:00:00', '', '', '8', 'enUS', '0');
    INSERT INTO `characters` VALUES ('1', '1', 'Gr', '10', '2', '0', '0', '70', '0', '0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16384,0,0,0,32,0,288,0,0,0,0,0,0,0,0,', '43;1;350;44;1;350;54;1;350;55;1;350;95;1;350;142;1;1;160;1;350;162;1;350;172;1;350;183;1;1;184;1;1;267;1;1;293;1;1;356;1;75;413;1;1;414;1;1;415;1;1;433;1;1;594;1;1;756;5;5;762;75;75;769;1;1;', '4008636142', '0', '8192', '2147483647', '0', '2', '61', '5486', '5247', '0', '17301513', '33554440', '0', '8', '1903.49', '497.82', '60.1799', '0.859223', '580', '4075', '0 0 131072 0 0 0 0 0 ', '0', '', '1212727514', '0', '10349.6', '-6357.29', '33.4026', '530', '3430', '0', '2', '0', '404 404 104 ', '0', '0', '0', '0', '0', '0', '24', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '81,107,201,202,203,204,522,635,668,669,670,671,672,750,813,822,1020,1038,1044,1152,2382,2479,3050,3127,3365,4987,5502,5573,6233,6246,6247,6477,6478,6603,7266,7267,7341,7355,7620,8386,8737,9077,9078,9116,9125,10278,10308,10322,10324,10326,13819,17737,19746,19752,20271,20347,20348,20356,20772,20773,21084,21651,21652,22027,22810,25780,25895,25898,27136,27137,27138,27139,27140,27141,27142,27143,27144,27145,27148,27149,27150,27151,27152,27153,27154,27155,27158,27169,27173,27180,27762,28730,28734,28877,29932,31789,31801,31884,31895,32223,33388,33391,33776,34090,34091,', '', '21,0,500,500,46,0,0,0,47,2,-42000,-42000,54,2,-42000,-42000,59,0,0,0,67,0,3500,3500,68,1,3100,3100,69,2,-42000,-42000,70,2,-10000,-10000,72,2,-42000,-42000,76,1,500,500,81,1,500,500,83,0,2999,2999,86,0,2999,2999,87,2,-6500,-6500,92,0,2000,2000,93,0,2000,2000,169,0,500,500,270,0,0,0,289,0,0,0,349,0,0,0,369,0,500,500,469,2,-42000,-42000,470,0,500,500,471,2,-42000,-42000,509,2,-42000,-42000,510,0,0,0,529,0,200,200,530,1,500,500,549,0,2999,2999,550,0,2999,2999,551,0,2999,2999,569,0,0,0,570,0,0,0,571,0,0,0,574,0,0,0,576,2,-3500,-3500,577,0,500,500,589,2,-42000,-42000,609,0,0,0,729,0,0,0,730,2,-42000,-42000,749,0,0,0,809,0,0,0,889,0,0,0,890,2,-42000,-42000,892,0,0,0,909,0,0,0,910,2,-42000,-42000,911,1,4000,4000,922,0,0,0,930,2,-42000,-42000,932,2,-3500,-3500,933,0,0,0,934,0,3500,3500,935,0,0,0,936,0,0,0,941,0,-500,-500,942,0,0,0,946,2,-42000,-42000,947,0,0,0,967,0,0,0,970,0,-2500,-2500,978,2,-42000,-42000,989,0,0,0,990,0,0,0,1005,0,3000,3000,1011,0,0,0,1012,0,0,0,1015,2,-42000,-42000,1031,0,0,0,1038,0,0,0,1077,0,0,0,', '6603,0,0,21084,0,0,635,0,0,20594,0,0,2481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,128,4540,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4540,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,', '', '', '', '7078045', '0', '0', '0', '0', '0', '0', '0');
    INSERT INTO `playeritems` VALUES ('1', '6', '159', '0', '0', '0', '2', '4294967295', '0', '0', '0', '0', '0', '-1', '24', '');
    INSERT INTO `playeritems` VALUES ('1', '5', '20857', '0', '0', '0', '4', '4294967295', '0', '0', '0', '0', '0', '-1', '23', '');
    INSERT INTO `playeritems` VALUES ('1', '4', '23346', '0', '0', '0', '1', '0', '0', '0', '0', '0', '25', '-1', '15', '');
    INSERT INTO `playeritems` VALUES ('1', '3', '24146', '0', '0', '0', '1', '0', '0', '0', '0', '0', '16', '-1', '7', '');
    INSERT INTO `playeritems` VALUES ('1', '2', '24145', '0', '0', '0', '1', '0', '0', '0', '0', '0', '25', '-1', '6', '');
    INSERT INTO `playeritems` VALUES ('1', '1', '24143', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '-1', '3', '');
    INSERT INTO `playeritems` VALUES ('1', '7', '6948', '0', '0', '0', '1', '0', '1', '0', '0', '0', '0', '-1', '25', '');
    INSERT INTO `playeritems` VALUES ('1', '8', '2586', '0', '0', '0', '1', '0', '1', '0', '0', '0', '35', '-1', '26', '');
    INSERT INTO `playeritems` VALUES ('1', '11', '34334', '0', '0', '0', '1', '0', '1', '0', '0', '0', '110', '-1', '27', '');
    INSERT INTO `playeritems` VALUES ('1', '10', '12064', '0', '0', '0', '1', '0', '1', '0', '0', '0', '20', '-1', '28', '');
    INSERT INTO `playeritems` VALUES ('1', '9', '11508', '0', '0', '0', '1', '0', '1', '0', '0', '0', '16', '-1', '29', '');
    INSERT INTO `server_settings` VALUES ('last_arena_update_time', '1212723651');
    INSERT INTO `server_settings` VALUES ('last_daily_update_time', '1212726857');
    INSERT INTO `tutorials` VALUES ('1', '4194310', '0', '0', '0', '0', '0', '0', '0');
    Make That Into A SQL File And Execute It Into The New Accounts Database With No Tables. I'm using OpenAscent So That May Or May Not Work.

  7. #7
    TheSpidey's Avatar Elite User
    Reputation
    365
    Join Date
    Jan 2008
    Posts
    2,200
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Don't do anything they said.
    You don't need a new mysql, a new db or even a new accounts table.
    All you need to do is get a proper reg site that fills the `encrypted_password` field in the accounts table. You have an sql statement that does exactly that in the SVN.

  8. #8
    waymirec's Avatar Member
    Reputation
    49
    Join Date
    Jan 2008
    Posts
    155
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    As a temp fix you can just clear the encrypted_password fields

    Code:
    UPDATE `accounts` SET `encrypted_password` = '';
    Last edited by waymirec; 06-06-2008 at 10:25 AM.

  9. #9
    WiKKiD's Avatar Member
    Reputation
    6
    Join Date
    Jan 2008
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah, no need for anything aside from wiping the encrypted passwords field.

    I assume you typed it in manually there, that'd be a no-no.

Similar Threads

  1. [Database] How to start the MySQL?
    By TarridoN in forum WoW EMU Questions & Requests
    Replies: 6
    Last Post: 11-21-2010, 01:35 PM
  2. [Lua] how to use the mysql functions
    By trujillo in forum WoW EMU Questions & Requests
    Replies: 4
    Last Post: 04-22-2010, 12:54 PM
  3. Resetting the Starting Items
    By aliceamphetamine in forum World of Warcraft Emulator Servers
    Replies: 5
    Last Post: 07-17-2008, 10:59 PM
  4. Anybody have the script for the mysql driven teleporter?
    By mafiaboy in forum World of Warcraft Emulator Servers
    Replies: 5
    Last Post: 06-30-2008, 08:43 PM
  5. Error 2003: Cannot connect to the MySQL server on 'localhost' (10061)
    By Gorge in forum World of Warcraft Emulator Servers
    Replies: 5
    Last Post: 10-31-2007, 09:50 AM
All times are GMT -5. The time now is 09:12 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search