Eross Posted May 10, 2021 Group: Members Topic Count: 166 Topics Per Day: 0.09 Content Count: 377 Reputation: 12 Joined: 04/05/20 Last Seen: Yesterday at 08:11 AM Share Posted May 10, 2021 Good day ! Im using latest Rathena and Im having this kind of error everytime I login .. Can you help me fix this and can you tell me the reason why this has to come up .. Thanks Quote Link to comment Share on other sites More sharing options...
0 Mastagoon Posted May 10, 2021 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 63 Reputation: 38 Joined: 07/04/19 Last Seen: December 14, 2024 Share Posted May 10, 2021 What client version are you using? and is it hexed ? if so please share your NEMO hex profile. Seems like a client-side problem. Basically your server is not receiving the correct packets from the client. I don't have alot of expertise in this area, but first you should make sure the client version you're using matches the PACKETVER constant on your server side. Quote Link to comment Share on other sites More sharing options...
0 Tokei Posted May 10, 2021 Group: Members Topic Count: 16 Topics Per Day: 0.00 Content Count: 696 Reputation: 723 Joined: 11/12/12 Last Seen: 14 hours ago Share Posted May 10, 2021 Heya, The issue is from your char-server. "intif" is for "interserver" and "interface", intif_parse_StorageReceived (which is for all storages, including inventory, etc) is a packet the char-server sends to the map-server, type 3 is TABLE_STORAGE. Long story short, it means it failed to load the storage data for your character. The char-server logs should give you more information about the issue, though. The... fact that you aren't seeing more information is strange. It's not an invalid storage index as you'd get an error such as "Invalid storage with id #". So this only leaves an invalid SQL query. Your storage table doesn't seem to match what the char-server is expecting. Make sure your storage table matches with what rAthena is using. You should have received an SQL error, though. 1 Quote Link to comment Share on other sites More sharing options...
0 Eross Posted May 10, 2021 Group: Members Topic Count: 166 Topics Per Day: 0.09 Content Count: 377 Reputation: 12 Joined: 04/05/20 Last Seen: Yesterday at 08:11 AM Author Share Posted May 10, 2021 On 5/11/2021 at 2:36 AM, Mastagoon said: What client version are you using? and is it hexed ? if so please share your NEMO hex profile. Seems like a client-side problem. Basically your server is not receiving the correct packets from the client. I don't have alot of expertise in this area, but first you should make sure the client version you're using matches the PACKETVER constant on your server side. Hi ! thankyou for your answer .. here's my diff list Quote 1 Use Tilde for Matk 3 Chat Flood Remove Limit 8 Custom Window Title 9 Disable 1rag1 type parameters (Recommended) 13 Disable Ragexe Filename Check (Recommended) 15 Disable HShield (Recommended) 16 Disable Swear Filter 17 Enable Official Custom Fonts 19 Enable Title Bar Menu 20 Extend Chat Box 21 Extend Chat Room Box 22 Extend PM Box 23 Enable /who command (Recommended) 24 Fix Camera Angles (Recommended) 28 Increase Headgear ViewID 30 Increase Zoom Out 50% 33 Always Call SelectKoreaClientInfo() (Recommended) 291 Hide packets from peek (Recommended) 35 Read Data Folder First 36 Read msgstringtable.txt (Recommended) 37 Read questid2display.txt (Recommended) 38 Remove Gravity Ads (Recommended) 39 Remove Gravity Logo (Recommended) 40 Restore Login Window (Recommended) 41 Disable Nagle Algorithm (Recommended) 43 Always Use Email for Char Deletion 44 Translate Client (Recommended) 46 Use Normal Guild Brackets (Recommended) 48 Use Plain Text Descriptions (Recommended) 53 Use Ascii on All LangTypes (Recommended) 64 @ Bug Fix (Recommended) 67 Disable Quake skill effect 68 Enable 64k Hairstyle 69 Extend Npc Dialog Box 73 Remove Hourly Announce (Recommended) 75 Enable Flag Emoticons 84 Remove Serial Display (Recommended) 88 Allow space in guild name 90 Enable DNS Support (Recommended) 97 Cancel to Login Window (Recommended) 200 Enable Multiple GRFs - Embedded 207 Resize Font 209 Enable Mail Box for All LangTypes 213 Disable Help Message on Login (Recommended) 216 Hide Cash Shop 225 Show Register Button On 5/11/2021 at 4:45 AM, Tokei said: Heya, The issue is from your char-server. "intif" is for "interserver" and "interface", intif_parse_StorageReceived (which is for all storages, including inventory, etc) is a packet the char-server sends to the map-server, type 3 is TABLE_STORAGE. Long story short, it means it failed to load the storage data for your character. The char-server logs should give you more information about the issue, though. The... fact that you aren't seeing more information is strange. It's not an invalid storage index as you'd get an error such as "Invalid storage with id #". So this only leaves an invalid SQL query. Your storage table doesn't seem to match what the char-server is expecting. Make sure your storage table matches with what rAthena is using. You should have received an SQL error, though. Hi sir ! actually after my first run using this fresh rathena I got multiple SQL error related on storages that asking for ENCHANTGRADE and on my `login` table that is asking for WEB_AUTH_TOKEN .. so I deleted all the tables and replace them from my main.sql ... Do I need to change anything ?? since there are no error visible on my map, char and logserv unless I login which is ntif_parse_StorageReceived .. I dont know how to fix this ,, please help Thankyou so much AFTER CHECKING I NOTICED THAT MY `STORAGE` TABLE IS NOT ACTUALLY MATCHED AND I MANAGED TO CHANGE IT WITH THIS After checking my `storage` table I noticed that it is not actually matched ! ... I replaced it with this Quote CREATE TABLE IF NOT EXISTS `storage` ( `id` int(11) unsigned NOT NULL auto_increment, `account_id` int(11) unsigned NOT NULL default '0', `nameid` int(10) unsigned NOT NULL default '0', `amount` smallint(11) unsigned NOT NULL default '0', `equip` int(11) unsigned NOT NULL default '0', `identify` smallint(6) unsigned NOT NULL default '0', `refine` tinyint(3) unsigned NOT NULL default '0', `attribute` tinyint(4) unsigned NOT NULL default '0', `card0` int(10) unsigned NOT NULL default '0', `card1` int(10) unsigned NOT NULL default '0', `card2` int(10) unsigned NOT NULL default '0', `card3` int(10) unsigned NOT NULL default '0', `option_id0` smallint(5) NOT NULL default '0', `option_val0` smallint(5) NOT NULL default '0', `option_parm0` tinyint(3) NOT NULL default '0', `option_id1` smallint(5) NOT NULL default '0', `option_val1` smallint(5) NOT NULL default '0', `option_parm1` tinyint(3) NOT NULL default '0', `option_id2` smallint(5) NOT NULL default '0', `option_val2` smallint(5) NOT NULL default '0', `option_parm2` tinyint(3) NOT NULL default '0', `option_id3` smallint(5) NOT NULL default '0', `option_val3` smallint(5) NOT NULL default '0', `option_parm3` tinyint(3) NOT NULL default '0', `option_id4` smallint(5) NOT NULL default '0', `option_val4` smallint(5) NOT NULL default '0', `option_parm4` tinyint(3) NOT NULL default '0', `expire_time` int(11) unsigned NOT NULL default '0', `bound` tinyint(3) unsigned NOT NULL default '0', `unique_id` bigint(20) unsigned NOT NULL default '0', `enchantgrade` tinyint unsigned NOT NULL default '0', PRIMARY KEY (`id`), KEY `account_id` (`account_id`) ) ENGINE=MyISAM; Quote Link to comment Share on other sites More sharing options...
Question
Eross
Good day ! Im using latest Rathena and Im having this kind of error everytime I login .. Can you help me fix this and can you tell me the reason why this has to come up .. Thanks
Link to comment
Share on other sites
3 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.