Sallycantdance Posted October 2, 2024 Group: Members Topic Count: 225 Topics Per Day: 0.14 Content Count: 798 Reputation: 12 Joined: 12/04/20 Last Seen: Yesterday at 09:00 AM Share Posted October 2, 2024 (edited) hello i got this error anyone know how to fix this? Edited October 2, 2024 by GM Winter Quote Link to comment Share on other sites More sharing options...
0 Mice Posted October 2, 2024 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 78 Reputation: 19 Joined: 12/24/18 Last Seen: 4 hours ago Share Posted October 2, 2024 6 minutes ago, GM Winter said: hello i got this error anyone know how to fix this? This error is due to a missing max_ap. If you have a custom modification on your character, you need to execute the corresponding field in the character table. Quote Link to comment Share on other sites More sharing options...
0 Sallycantdance Posted October 2, 2024 Group: Members Topic Count: 225 Topics Per Day: 0.14 Content Count: 798 Reputation: 12 Joined: 12/04/20 Last Seen: Yesterday at 09:00 AM Author Share Posted October 2, 2024 1 minute ago, Mice said: This error is due to a missing max_ap. If you have a custom modification on your character, you need to execute the corresponding field in the character table. i dont have any custom modification in the character i just recently download it and trying to make a new updated server side and client side Quote Link to comment Share on other sites More sharing options...
0 Chaos92 Posted October 2, 2024 Group: Members Topic Count: 49 Topics Per Day: 0.01 Content Count: 1826 Reputation: 288 Joined: 08/03/12 Last Seen: 2 hours ago Share Posted October 2, 2024 56 minutes ago, GM Winter said: i dont have any custom modification in the character i just recently download it and trying to make a new updated server side and client side then run the sql upgrades if u know which is needed after your last time update. or else just run the main.sql as what provided from rathena. Quote Link to comment Share on other sites More sharing options...
0 Mice Posted October 2, 2024 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 78 Reputation: 19 Joined: 12/24/18 Last Seen: 4 hours ago Share Posted October 2, 2024 2 hours ago, Chaos92 said: then run the sql upgrades if u know which is needed after your last time update. or else just run the main.sql as what provided from rathena. If you are using test server try to re-execute your char table CREATE TABLE IF NOT EXISTS `char` ( `char_id` int(11) unsigned NOT NULL auto_increment, `account_id` int(11) unsigned NOT NULL default '0', `char_num` tinyint(1) NOT NULL default '0', `name` varchar(30) NOT NULL DEFAULT '', `class` smallint(6) unsigned NOT NULL default '0', `base_level` smallint(6) unsigned NOT NULL default '1', `job_level` smallint(6) unsigned NOT NULL default '1', `base_exp` bigint(20) unsigned NOT NULL default '0', `job_exp` bigint(20) unsigned NOT NULL default '0', `zeny` int(11) unsigned NOT NULL default '0', `str` smallint(4) unsigned NOT NULL default '0', `agi` smallint(4) unsigned NOT NULL default '0', `vit` smallint(4) unsigned NOT NULL default '0', `int` smallint(4) unsigned NOT NULL default '0', `dex` smallint(4) unsigned NOT NULL default '0', `luk` smallint(4) unsigned NOT NULL default '0', `pow` smallint(4) unsigned NOT NULL default '0', `sta` smallint(4) unsigned NOT NULL default '0', `wis` smallint(4) unsigned NOT NULL default '0', `spl` smallint(4) unsigned NOT NULL default '0', `con` smallint(4) unsigned NOT NULL default '0', `crt` smallint(4) unsigned NOT NULL default '0', `max_hp` int(11) unsigned NOT NULL default '0', `hp` int(11) unsigned NOT NULL default '0', `max_sp` int(11) unsigned NOT NULL default '0', `sp` int(11) unsigned NOT NULL default '0', `max_ap` int(11) unsigned NOT NULL default '0', `ap` int(11) unsigned NOT NULL default '0', `status_point` int(11) unsigned NOT NULL default '0', `skill_point` int(11) unsigned NOT NULL default '0', `trait_point` int(11) unsigned NOT NULL default '0', `option` int(11) NOT NULL default '0', `karma` tinyint(3) NOT NULL default '0', `manner` smallint(6) NOT NULL default '0', `party_id` int(11) unsigned NOT NULL default '0', `guild_id` int(11) unsigned NOT NULL default '0', `pet_id` int(11) unsigned NOT NULL default '0', `homun_id` int(11) unsigned NOT NULL default '0', `elemental_id` int(11) unsigned NOT NULL default '0', `hair` tinyint(4) unsigned NOT NULL default '0', `hair_color` smallint(5) unsigned NOT NULL default '0', `clothes_color` smallint(5) unsigned NOT NULL default '0', `body` smallint(5) unsigned NOT NULL default '0', `weapon` smallint(6) unsigned NOT NULL default '0', `shield` smallint(6) unsigned NOT NULL default '0', `head_top` smallint(6) unsigned NOT NULL default '0', `head_mid` smallint(6) unsigned NOT NULL default '0', `head_bottom` smallint(6) unsigned NOT NULL default '0', `robe` SMALLINT(6) UNSIGNED NOT NULL DEFAULT '0', `last_map` varchar(11) NOT NULL default '', `last_x` smallint(4) unsigned NOT NULL default '53', `last_y` smallint(4) unsigned NOT NULL default '111', `last_instanceid` int(11) unsigned NOT NULL default '0', `save_map` varchar(11) NOT NULL default '', `save_x` smallint(4) unsigned NOT NULL default '53', `save_y` smallint(4) unsigned NOT NULL default '111', `partner_id` int(11) unsigned NOT NULL default '0', `online` tinyint(2) NOT NULL default '0', `father` int(11) unsigned NOT NULL default '0', `mother` int(11) unsigned NOT NULL default '0', `child` int(11) unsigned NOT NULL default '0', `fame` int(11) unsigned NOT NULL default '0', `rename` SMALLINT(3) unsigned NOT NULL default '0', `delete_date` INT(11) UNSIGNED NOT NULL DEFAULT '0', `moves` int(11) unsigned NOT NULL DEFAULT '0', `unban_time` int(11) unsigned NOT NULL default '0', `font` tinyint(3) unsigned NOT NULL default '0', `uniqueitem_counter` int(11) unsigned NOT NULL default '0', `sex` ENUM('M','F') NOT NULL, `hotkey_rowshift` tinyint(3) unsigned NOT NULL default '0', `hotkey_rowshift2` tinyint(3) unsigned NOT NULL default '0', `clan_id` int(11) unsigned NOT NULL default '0', `last_login` datetime DEFAULT NULL, `title_id` INT(11) unsigned NOT NULL default '0', `show_equip` tinyint(3) unsigned NOT NULL default '0', `inventory_slots` smallint(6) NOT NULL default '100', `body_direction` tinyint(1) unsigned NOT NULL default '0', `disable_call` tinyint(3) unsigned NOT NULL default '0', PRIMARY KEY (`char_id`), UNIQUE KEY `name_key` (`name`), KEY `account_id` (`account_id`), KEY `party_id` (`party_id`), KEY `guild_id` (`guild_id`), KEY `online` (`online`) ) ENGINE=MyISAM AUTO_INCREMENT=150000; or ALTER TABLE `char` ADD `max_ap` int(11) unsigned NOT NULL default '0' AFTER `sp`; Quote Link to comment Share on other sites More sharing options...
Question
Sallycantdance
hello i got this error anyone know how to fix this?

Edited by GM WinterLink to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.