can someone just dump it? i lost mine....![]()
can someone just dump it? i lost mine....![]()
and i mean the one named muted at the end
Sure, I suppose I can get you one... 40101 SET NAMES utf8 */;
create table `accounts` (
`acct` double ,
`login` varchar (96),
`password` varchar (96),
`gm` varchar (96),
`banned` tinyint (3),
`lastlogin` timestamp ,
`lastip` varchar (4,
`email` varchar (192),
`flags` tinyint (3),
`forceLanguage` varchar (15)
);
No idea if that will work, gonna get a different one.
Edit - Yeah, I don't thank that's what you need. If Notepad will open this quickly I can get it to you.
Double Edit - Here it is!
CREATE TABLE `accounts` (
`acct` bigint(20) NOT NULL auto_increment,
`login` varchar(255) NOT NULL default '',
`password` varchar(2NOT NULL default '',
`gm` varchar(27) NOT NULL default '',
`banned` int(30) NOT NULL default '0',
`lastlogin` timestamp NOT NULL default '0000-00-00 00:00:00' on update CURRENT_TIMESTAMP,
`lastip` varchar(15) NOT NULL default '',
`email` varchar(50) NOT NULL default '',
`flags` int(11) NOT NULL default '0',
`forceLanguage` varchar(5) character set utf8 collate utf8_unicode_ci NOT NULL default 'enUS',
PRIMARY KEY (`acct`,`login`),
UNIQUE KEY `acct` (`acct`)
) ENGINE=MyISAM AUTO_INCREMENT=910232 DEFAULT CHARSET=latin1;
Tripile Edit - They look the same for the most part T_T.
Last edited by Ebon; 02-03-2008 at 02:16 PM. Reason: Added some text yo!