|
|
 |
 |
 |
 |
|
 |
 |
|
 |
 |
|
 |
|
Support::Windows Servers Support forum for Windows EQEMu users. |
 |
|
 |

04-12-2011, 11:15 PM
|
 |
Demi-God
|
|
Join Date: Nov 2007
Posts: 2,175
|
|
If you sourced peq then you should have the character_ table, or at least I really thought you would. If you look in Heidi at the PEQ database, are you not seeing character_ ?
If not here you go.
Code:
/*
MySQL Data Transfer
Source Host: localhost
Source Database: cvs
Target Host: localhost
Target Database: cvs
Date: 2008-09-30 7:12:28 PM
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for character_
-- ----------------------------
CREATE TABLE `character_` (
`id` int(11) NOT NULL auto_increment,
`account_id` int(11) NOT NULL default '0',
`name` varchar(64) NOT NULL default '',
`profile` blob,
`timelaston` int(11) unsigned default '0',
`x` float NOT NULL default '0',
`y` float NOT NULL default '0',
`z` float NOT NULL default '0',
`zonename` varchar(30) NOT NULL default '',
`alt_adv` blob,
`zoneid` smallint(6) NOT NULL default '0',
`instanceid` SMALLINT UNSIGNED DEFAULT '0' NOT NULL,
`pktime` int(8) NOT NULL default '0',
`inventory` blob,
`groupid` int(10) unsigned NOT NULL default '0',
`extprofile` blob,
`class` tinyint(4) NOT NULL default '0',
`level` mediumint(8) unsigned NOT NULL default '0',
`lfp` tinyint(1) unsigned NOT NULL default '0',
`lfg` tinyint(1) unsigned NOT NULL default '0',
`mailkey` CHAR(16) NOT NULL default '0',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`),
KEY `account_id` (`account_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records
-- ----------------------------
|
 |
|
 |
 |
|
 |

04-12-2011, 11:20 PM
|
Fire Beetle
|
|
Join Date: Aug 2010
Posts: 29
|
|
Quote:
Originally Posted by provocating
If you sourced peq then you should have the character_ table, or at least I really thought you would. If you look in Heidi at the PEQ database, are you not seeing character_ ?
If not here you go.
Code:
/*
MySQL Data Transfer
Source Host: localhost
Source Database: cvs
Target Host: localhost
Target Database: cvs
Date: 2008-09-30 7:12:28 PM
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for character_
-- ----------------------------
CREATE TABLE `character_` (
`id` int(11) NOT NULL auto_increment,
`account_id` int(11) NOT NULL default '0',
`name` varchar(64) NOT NULL default '',
`profile` blob,
`timelaston` int(11) unsigned default '0',
`x` float NOT NULL default '0',
`y` float NOT NULL default '0',
`z` float NOT NULL default '0',
`zonename` varchar(30) NOT NULL default '',
`alt_adv` blob,
`zoneid` smallint(6) NOT NULL default '0',
`instanceid` SMALLINT UNSIGNED DEFAULT '0' NOT NULL,
`pktime` int(8) NOT NULL default '0',
`inventory` blob,
`groupid` int(10) unsigned NOT NULL default '0',
`extprofile` blob,
`class` tinyint(4) NOT NULL default '0',
`level` mediumint(8) unsigned NOT NULL default '0',
`lfp` tinyint(1) unsigned NOT NULL default '0',
`lfg` tinyint(1) unsigned NOT NULL default '0',
`mailkey` CHAR(16) NOT NULL default '0',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`),
KEY `account_id` (`account_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records
-- ----------------------------
|
Ok,when i insert it i get an error that says theres an error in the MYSQL syntax
|
 |
|
 |

04-13-2011, 09:11 AM
|
Fire Beetle
|
|
Join Date: Apr 2008
Location: fl
Posts: 18
|
|
if you are using the newest peq database and yer having problems getting into the game once u make a character run this querry
Code:
ALTER TABLE `account` ADD `time_creation` INT UNSIGNED DEFAULT '0' NOT NULL AFTER `suspendeduntil`;
UPDATE `account` SET `time_creation` = UNIX_TIMESTAMP() WHERE `time_creation` = 0;
i was having the same issue and that fixed it for me
|

04-12-2011, 11:21 PM
|
 |
Demi-God
|
|
Join Date: Nov 2007
Posts: 2,175
|
|
Well take what I just posted in the code block and just put it into your query window in Heidi and click the blue execute SQL button.
|
Thread Tools |
|
Display Modes |
Hybrid Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -4. The time now is 09:52 PM.
|
|
 |
|
 |
|
|
|
 |
|
 |
|
 |