I just began to bot again 3 days ago after 2 years of break in ro, and i just realize that the bot doesn't see anything (sometime player and monster as npc, and never see npc).
I'm playing on a Kro server type, and after 8h of work i just fix the issue, at least in my case.
Scrypt in src\Network\Receive\kRO\RagexeRE_2010_11_24a.pm was wrong
Here was the mistake :
Quote:
'0856' => ['actor_exists', 'v C a4 v3 V v5 a4 v6 a4 a2 v V C2 a6 C2 v2 Z*', .........
'0857' => ['actor_connected', 'v C a4 v3 V v11 a4 a2 v V C2 a3 C3 v2 Z*', ........
'0858' => ['actor_moved', 'v C a4 v3 V v11 a4 a2 v V C2 a3 C2 v2 Z*', .........
I found out after making my bot moving around cities and fields that for me
0858 is actor_exists
0856 is actor_moved
0857 is actor connected
So i switched the values to this:
Quote:
'0858' => ['actor_exists', 'v C a4 v3 V v5 a4 v6 a4 a2 v V C2 a6 C2 v2 Z*', .........
'0857' => ['actor_connected', 'v C a4 v3 V v11 a4 a2 v V C2 a3 C3 v2 Z*', ........
'0856' => ['actor_moved', 'v C a4 v3 V v11 a4 a2 v V C2 a3 C2 v2 Z*', .........
And my bot now sees everything and seems to work all fine.
In the first place i thought that maybe i would just let all of you unable to bot for some more time
But well... in fact, i don't really care, and it may not solve everyone 's problem... who knows ?
I just hope that what i write here can help
EDIT:
After an update of my server, the originals values work fine.