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

Skill Reset At Logout

Infamous

www.xethera.com
Joined
Apr 7, 2009
Messages
27
Reaction score
0
Location
Netherlands
Hello, I have a huge problem.

I have just updated to 8.42, and now whenever someone who has trained logs out, his skills are automatically reseted to 10 again.

I'm using TFS - Crying Damson version 4pl2.

Hope anyone can help me, 'cause it's really annoying for everyone!

-Infamous.
 
Code:
CREATE TABLE IF NOT EXISTS `player_skills` (
  `player_id` int(11) NOT NULL default '0',
  `skillid` tinyint(2) NOT NULL default '0',
  `value` int(10) unsigned NOT NULL default '0',
  `count` int(10) unsigned NOT NULL default '0',
  UNIQUE KEY `player_id_2` (`player_id`,`skillid`),
  KEY `player_id` (`player_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
 
I tried it when everyone was offline, when server was off and so on. No succes at all.

Tried it with new characters aswell..

I really need some help here guys!

-Infamous.
 
Back
Top