"Inventory is empty" problem

International

Moderator: Moderators

Message
Author
jakae
Noob
Noob
Posts: 2
Joined: 21 Aug 2014, 08:56
Noob?: No

Re: "Inventory is empty" problem

#31 Post by jakae »

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?

omgitsabotter
Noob
Noob
Posts: 16
Joined: 31 May 2014, 12:53
Noob?: No

Re: "Inventory is empty" problem

#32 Post by omgitsabotter »

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?
Just redownload openkore if you are facing issues other than the ones mentioned here.

jakae
Noob
Noob
Posts: 2
Joined: 21 Aug 2014, 08:56
Noob?: No

Re: "Inventory is empty" problem

#33 Post by jakae »

omgitsabotter wrote:
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?
Just redownload openkore if you are facing issues other than the ones mentioned here.
I'm afraid it didn't work. I'm using openkore 2.0.7. Any way anyone can share a working servertype0.pm?

EDIT: Got it working, was doing it incorrectly.

raramos
Noob
Noob
Posts: 7
Joined: 20 Aug 2014, 17:46
Noob?: Yes

Re: "Inventory is empty" problem

#34 Post by raramos »

4epT wrote:
raramos 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?
need to further correct serveType, i need test account
Hello! any update on this problem? thanks! :)

Kafra
Human
Human
Posts: 23
Joined: 20 Aug 2014, 18:04
Noob?: No
Location: Al de Baran

Re: "Inventory is empty" problem

#35 Post by Kafra »

afgh1214 wrote:
Kafra wrote:
afgh1214 wrote::lol:

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.
so there's revision update?
yeah, r8890 to be exact. should fix all issues.

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?
Cool, I ran SVN UP and now all issues fixed.. I just didn't notice that OpenKore has new revision updated recently..

Thanks heaps for your information.
Visit our headquarters in Al de Baran.

kurd_ph
Noob
Noob
Posts: 8
Joined: 20 Aug 2014, 23:47
Noob?: Yes

Re: "Inventory is empty" problem

#36 Post by kurd_ph »

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
go to .../src/network/receive/ folder

right click servertype0.pm > tortoise svn >
"update to revision" does not appear

http://s170.photobucket.com/user/c08056 ... w.jpg.html

Any thoughts on this? Thanks in advance.

omgitsabotter
Noob
Noob
Posts: 16
Joined: 31 May 2014, 12:53
Noob?: No

Re: "Inventory is empty" problem

#37 Post by omgitsabotter »

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

afgh1214
Plain Yogurt
Plain Yogurt
Posts: 66
Joined: 07 Aug 2014, 05:46
Noob?: Yes

Re: "Inventory is empty" problem

#38 Post by afgh1214 »

:lol:
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 ><

kurd_ph
Noob
Noob
Posts: 8
Joined: 20 Aug 2014, 23:47
Noob?: Yes

Re: "Inventory is empty" problem

#39 Post by kurd_ph »

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 ><
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.

afgh1214
Plain Yogurt
Plain Yogurt
Posts: 66
Joined: 07 Aug 2014, 05:46
Noob?: Yes

Re: "Inventory is empty" problem

#40 Post by afgh1214 »

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.
Have you updated the servertype0.pm in .../src/network/Send?

cause when I updated mine dc issue was resolved.

Post Reply