• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

players dont die and Lots Of errors in consol

kimokimo

Kimo
Joined
Jan 25, 2011
Messages
821
Solutions
6
Reaction score
156
GitHub
karimadnan
in my server players dont die and lots of errors appear in consol it say something in MYSQL lastkill id:30 something like that can anyone help? +rep :(
 
Last edited:
here is the screen :( but errors gone just players dont die



Uploaded with ImageShack.us

after i added this table
PHP:
CREATE TABLE IF NOT EXISTS `killers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `death_id` int(11) NOT NULL,
  `final_hit` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `unjustified` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `war` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `death_id` (`death_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=0;
 
Last edited:
just for testing, try to remove every onDeath and onPrepareDeath script you have

if it works, you know its one of them and you can start removing one at a time until u find out which one it really is

if it doesnt work, I'm out of ideas :/
 
Back
Top