• 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!

Error Console

franckle

New Member
Joined
Sep 20, 2007
Messages
43
Reaction score
1
Friends, I'm with the following problem when I loose a spell of the server drops the following error in consoleee

TFS 0.3.6

IMAGE OF ERROR CONSOLE:


Uploaded with ImageShack.us
 
In these cases there are always 2 possibilities:

1. You want the system which that script belongs to to work.
-> But because of the fact you don't even know what it is I bet you don't need it.

2. You just want to remove the error.
-> Post us creaturescripts.xml..
 
I deleted of creaturescript already, but the error continues, no error in the console, but if you use the magic, the server down
 
Code:
DROP TABLE IF EXISTS `player_advances`;

CREATE TABLE `player_advances` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `cid` int(11) DEFAULT NULL,
  `skill` int(11) DEFAULT NULL,
  `oldlevel` int(11) DEFAULT NULL,
  `newlevel` int(11) DEFAULT NULL,
  `time` int(11) DEFAULT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `cid` (`cid`),
  CONSTRAINT `player_advances_ibfk_1` FOREIGN KEY (`cid`) REFERENCES `players` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
 
Back
Top