View Single Post
  #10  
Old 10-25-2004, 07:28 AM
Marratook
Fire Beetle
 
Join Date: Dec 2003
Posts: 19
Default

Quote:
Originally Posted by sgaske24
Okey Dokey guys, had the same problem, figures now everyone is having it too.

Try this -

Quote:
DROP TABLE IF EXISTS `player_corpses`;
CREATE TABLE `player_corpses` (
`id` int(11) unsigned NOT NULL auto_increment,
`charid` int(11) unsigned NOT NULL default '0',
`charname` varchar(64) NOT NULL default '',
`zoneid` smallint(5) NOT NULL default '0',
`x` float NOT NULL default '0',
`y` float NOT NULL default '0',
`z` float NOT NULL default '0',
`heading` float NOT NULL default '0',
`data` blob NOT NULL,
`timeofdeath` datetime NOT NULL default '0000-00-00 00:00:00',
`rezzed` tinyint(3) unsigned default '0',
PRIMARY KEY (`id`),
KEY `zoneid` (`zoneid`)
) TYPE=MyISAM;
Then source that into your DB. Good luck.

-GM Thrax
This Fix worked for me thx Thrax, just did what u said sourced it into the database.

Cant use GM commands atm, but its just prolly me that entering it wrong or something.

Btw the Glooming deep just shows for a small sec or so, then it changes to race starting zone.

/cheers
Reply With Quote