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

Recover default player skills [Gesior]

freddzor11

Member
Joined
May 25, 2009
Messages
695
Reaction score
5
When I enter a character at my website I get this error, I use Gesior

EbN2MD.png
 
Last edited:
Drop ur player table in phpadmin and add this one
CREATE TABLE IF NOT EXISTS `players` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(255) NOT NULL,
`world_id` tinyint(2) unsigned NOT NULL default '0',
`group_id` int(11) NOT NULL default '1',
`account_id` int(11) NOT NULL default '0',
`level` int(11) NOT NULL default '1',
`vocation` int(11) NOT NULL default '0',
`health` int(11) NOT NULL default '150',
`healthmax` int(11) NOT NULL default '150',
`experience` bigint(20) NOT NULL default '0',
`lookbody` int(11) NOT NULL default '0',
`lookfeet` int(11) NOT NULL default '0',
`lookhead` int(11) NOT NULL default '0',
`looklegs` int(11) NOT NULL default '0',
`looktype` int(11) NOT NULL default '136',
`lookaddons` int(11) NOT NULL default '0',
`maglevel` int(11) NOT NULL default '0',
`mana` int(11) NOT NULL default '0',
`manamax` int(11) NOT NULL default '0',
`manaspent` int(11) NOT NULL default '0',
`soul` int(10) unsigned NOT NULL default '0',
`town_id` int(11) NOT NULL default '0',
`posx` int(11) NOT NULL default '0',
`posy` int(11) NOT NULL default '0',
`posz` int(11) NOT NULL default '0',
`conditions` blob NOT NULL,
`cap` int(11) NOT NULL default '0',
`sex` int(11) NOT NULL default '0',
`lastlogin` bigint(20) unsigned NOT NULL default '0',
`lastip` int(10) unsigned NOT NULL default '0',
`save` tinyint(1) NOT NULL default '1',
`redskull` tinyint(1) NOT NULL default '0',
`redskulltime` bigint(20) NOT NULL default '0',
`rank_id` int(11) NOT NULL default '0',
`guildnick` varchar(255) NOT NULL default '',
`lastlogout` bigint(20) unsigned NOT NULL default '0',
`blessings` tinyint(2) NOT NULL default '0',
`balance` bigint(20) NOT NULL default '0',
`stamina` bigint(20) NOT NULL default '151200000' COMMENT 'stored in miliseconds',
`direction` int(11) NOT NULL default '2',
`loss_experience` int(11) NOT NULL default '100',
`loss_mana` int(11) NOT NULL default '100',
`loss_skills` int(11) NOT NULL default '100',
`loss_containers` int(11) NOT NULL default '100',
`loss_items` int(11) NOT NULL default '100',
`premend` int(11) NOT NULL default '0' COMMENT 'NOT IN USE BY THE SERVER',
`online` tinyint(1) NOT NULL default '0',
`marriage` int(10) unsigned NOT NULL default '0',
`promotion` int(11) NOT NULL default '0',
`deleted` tinyint(1) NOT NULL default '0',
`description` varchar(255) NOT NULL default '',
`created` int(11) NOT NULL default '0',
`nick_verify` int(5) NOT NULL default '0',
`hide_char` int(11) NOT NULL default '0',
`comment` text NOT NULL,
`exphist_lastexp` bigint(255) NOT NULL default '0',
`exphist1` bigint(255) NOT NULL default '0',
`exphist2` bigint(255) NOT NULL default '0',
`exphist3` bigint(255) NOT NULL default '0',
`exphist4` bigint(255) NOT NULL default '0',
`exphist5` bigint(255) NOT NULL default '0',
`exphist6` bigint(255) NOT NULL default '0',
`exphist7` bigint(255) NOT NULL default '0',
`onlinetimetoday` bigint(255) NOT NULL default '0',
`onlinetime1` bigint(255) NOT NULL default '0',
`onlinetime2` bigint(255) NOT NULL default '0',
`onlinetime3` bigint(255) NOT NULL default '0',
`onlinetime4` bigint(255) NOT NULL default '0',
`onlinetime5` bigint(255) NOT NULL default '0',
`onlinetime6` bigint(255) NOT NULL default '0',
`onlinetime7` bigint(255) NOT NULL default '0',
`onlinetimeall` bigint(255) NOT NULL default '0',
`old_name` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`,`deleted`),
KEY `account_id` (`account_id`),
KEY `group_id` (`group_id`),
KEY `online` (`online`),
KEY `deleted` (`deleted`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=137 ;/QUOTE]
 
are you serious? you got the fucking answer in the other thread. You should just install Znote ACC temporarliy and execute his script... you can still keep gesior.
 
Drop ur player table in phpadmin and add this one

Yes, best advice ever. Delete your entire player's table and wipe every character you have on your server. Then re-create the table, with different columns and pray to God that it might match the columns that your server actually needs.

Do you people even think before posting?
 
Yes, best advice ever. Delete your entire player's table and wipe every character you have on your server. Then re-create the table, with different columns and pray to God that it might match the columns that your server actually needs.

Do you people even think before posting?
haha, do you know how to fix this then?
 
Back
Top