Hi everyone.
I'm new to the forum so hope you bear with me.
I tried to update the servertype0.pm, but it gave me an error message. I used the latest Tortoise SVN version 1.8.8.
Any thoughts?
"Inventory is empty" problem
Moderator: Moderators
-
- Noob
- Posts: 16
- Joined: 31 May 2014, 12:53
- Noob?: No
Re: "Inventory is empty" problem
Just redownload openkore if you are facing issues other than the ones mentioned here.jakae wrote:Hi everyone.
I'm new to the forum so hope you bear with me.
I tried to update the servertype0.pm, but it gave me an error message. I used the latest Tortoise SVN version 1.8.8.
Any thoughts?
-
- Noob
- Posts: 2
- Joined: 21 Aug 2014, 08:56
- Noob?: No
Re: "Inventory is empty" problem
I'm afraid it didn't work. I'm using openkore 2.0.7. Any way anyone can share a working servertype0.pm?omgitsabotter wrote:Just redownload openkore if you are facing issues other than the ones mentioned here.jakae wrote:Hi everyone.
I'm new to the forum so hope you bear with me.
I tried to update the servertype0.pm, but it gave me an error message. I used the latest Tortoise SVN version 1.8.8.
Any thoughts?
EDIT: Got it working, was doing it incorrectly.
-
- Noob
- Posts: 7
- Joined: 20 Aug 2014, 17:46
- Noob?: Yes
Re: "Inventory is empty" problem
Hello! any update on this problem? thanks!4epT wrote:need to further correct serveType, i need test accountraramos wrote:Updated ServerType0.pm and inventory issue is fixed. Thank you!
However, I observed when i do 'respawn'/'tele 2' in console command bot gets disconnected. Any thoughts?

-
- Human
- Posts: 23
- Joined: 20 Aug 2014, 18:04
- Noob?: No
- Location: Al de Baran
Re: "Inventory is empty" problem
Cool, I ran SVN UP and now all issues fixed.. I just didn't notice that OpenKore has new revision updated recently..afgh1214 wrote:yeah, r8890 to be exact. should fix all issues.Kafra wrote:so there's revision update?afgh1214 wrote:![]()
well, it seems that there wasn't any problems with recvpackets.
to those that are still getting "inventory is empty" and Unknown packet errors, just update your servertype0.pm in .../src/network/receive/ to latest revision.
that should fix all your problems.
also, extract the new items.txt and itemsdescriptions.txt so you wont get unknown items.
just to be clear, it wasnt me who fixed it. thank the devs/mods for that. i just saw that there was an update to kore and thankfully it fixed all our problems.
i dunno about the other files but the only file i updated is the servertype0.pm then i just manually extracted items.txt and itemsdescriptions.txt using grf tool cause i got unknown gears in inventory.
unrelated, where the fuck did my bot get the shadow gears?
Thanks heaps for your information.
Visit our headquarters in Al de Baran.
-
- Noob
- Posts: 8
- Joined: 20 Aug 2014, 23:47
- Noob?: Yes
Re: "Inventory is empty" problem
Hi, I'm new in the botting community
I downloaded the latest Openkore for the 'Empty Inventory' issue and used the GRF tool for the items and itemsdesc
Now my problem is, when I equip my Eden Mace II, my character disconnects for 30 seconds...
Do I have to update the svn, if so I have another problem, when I do the
http://s170.photobucket.com/user/c08056 ... w.jpg.html
Any thoughts on this? Thanks in advance.
I downloaded the latest Openkore for the 'Empty Inventory' issue and used the GRF tool for the items and itemsdesc
Now my problem is, when I equip my Eden Mace II, my character disconnects for 30 seconds...
Do I have to update the svn, if so I have another problem, when I do the
"update to revision" does not appeargo to .../src/network/receive/ folder
right click servertype0.pm > tortoise svn >
http://s170.photobucket.com/user/c08056 ... w.jpg.html
Any thoughts on this? Thanks in advance.
-
- Noob
- Posts: 16
- Joined: 31 May 2014, 12:53
- Noob?: No
Re: "Inventory is empty" problem
I tried redownloading the whole openkore file to test instead of just replacing the server file as mentioned earlier.
I don't get disconnected when trying to equip/unequip gears now, however it doesn't work as well.
When trying to unequip: Packet Parser: Unknown switch: 099A
When trying to equip: Packet Parser: Unknown switch: 0999
I don't get disconnected when trying to equip/unequip gears now, however it doesn't work as well.
When trying to unequip: Packet Parser: Unknown switch: 099A
When trying to equip: Packet Parser: Unknown switch: 0999
-
- Plain Yogurt
- Posts: 66
- Joined: 07 Aug 2014, 05:46
- Noob?: Yes
Re: "Inventory is empty" problem

I finally got mine to work!
Basically after updating .../src/network/send/ServerType0.pm to latest revision (r8892), I no longer get disconnected but equip/unequip is still not functioning just like what the other poster said.
I also got Packet parser:unknown switch 0999 and 099A whenever I try to equip an item, so just like what the other guy said, they were probably about the unequip/equip item messages but it seems kore is not reading them properly, so I tried copying the existing code for equip/unequip and just replacing the packets to 0999 and 099A, added that to the code, and it worked!
.../src/Network/Receive/ServerType0.pm
'09A0' => ['sync_received_characters', 'V', [qw(sync_Count)]],
'099B' => ['map_property3', 'v a4', [qw(type info_table)]],
'099D' => ['received_characters', 'v a*', [qw(len charInfo)]],
'099F' => ['area_spell_multiple2', 'v a*', [qw(len spellInfo)]], # -1
'09CF' => ['gameguard_request'],
'0999' => ($rpackets{'0999'}{length} == 7) # or 9
? ['equip_item', 'v2 C', [qw(index type success)]]
: ['equip_item', 'v3 C', [qw(index type viewid success)]],
'099A' => ['unequip_item', 'v2 C', [qw(index type success)]]
};
Just copy and paste the text in red (make sure to include the comma after ['gameguard_request']) to servertype0.pm and that should fix it!
Disclaimer: I dont have a background in programming and still very new at this so I'm not sure how this would affect the rest of the program but so far I have not had any errors. Use at your own risk! This should do the trick though until the devs/mods make a better/permanent fix.
Also, cant seem to make equipping shadow gears work ><
-
- Noob
- Posts: 8
- Joined: 20 Aug 2014, 23:47
- Noob?: Yes
Re: "Inventory is empty" problem
copied the lines, I'm still disconnecting everytime I equip items. I just do it manually then log out, and let the bot do its thing for now.I finally got mine to work!
Basically after updating .../src/network/send/ServerType0.pm to latest revision (r8892), I no longer get disconnected but equip/unequip is still not functioning just like what the other poster said.
I also got Packet parser:unknown switch 0999 and 099A whenever I try to equip an item, so just like what the other guy said, they were probably about the unequip/equip item messages but it seems kore is not reading them properly, so I tried copying the existing code for equip/unequip and just replacing the packets to 0999 and 099A, added that to the code, and it worked!
.../src/Network/Receive/ServerType0.pm
'09A0' => ['sync_received_characters', 'V', [qw(sync_Count)]],
'099B' => ['map_property3', 'v a4', [qw(type info_table)]],
'099D' => ['received_characters', 'v a*', [qw(len charInfo)]],
'099F' => ['area_spell_multiple2', 'v a*', [qw(len spellInfo)]], # -1
'09CF' => ['gameguard_request'],
'0999' => ($rpackets{'0999'}{length} == 7) # or 9
? ['equip_item', 'v2 C', [qw(index type success)]]
: ['equip_item', 'v3 C', [qw(index type viewid success)]],
'099A' => ['unequip_item', 'v2 C', [qw(index type success)]]
};
Just copy and paste the text in red (make sure to include the comma after ['gameguard_request']) to servertype0.pm and that should fix it!
Disclaimer: I dont have a background in programming and still very new at this so I'm not sure how this would affect the rest of the program but so far I have not had any errors. Use at your own risk! This should do the trick though until the devs/mods make a better/permanent fix.
Also, cant seem to make equipping shadow gears work ><
-
- Plain Yogurt
- Posts: 66
- Joined: 07 Aug 2014, 05:46
- Noob?: Yes
Re: "Inventory is empty" problem
Have you updated the servertype0.pm in .../src/network/Send?copied the lines, I'm still disconnecting everytime I equip items. I just do it manually then log out, and let the bot do its thing for now.
cause when I updated mine dc issue was resolved.