Can you please be a bit more specific? Please update your previous comment with exact details of what you are trying to accomplish and what you have tried so far. I will update this comment with a solution.
Lets keep the replies in this thread, so others can learn as well. Cheers
I'm guessing you want to make a bot player walk, talk and attack?
Game client & server packets:
`src\com\aionemu\gameserver\network\aion`
Login client & server packets:
`src\com\aionemu\loginserver\network\aion`
More specifically, for the gameserver you want to open
`AionConnection.java` and add a print statement to the
`sendPacket()` function to see what packets are being sent to the client from the server like so:
You would do the same thing for the loginserver side but you'd edit
`LoginConnection.java` like so:
Once you know what packets are being sent, It's just a matter of creating a new class that reads and writes these packets internally to the emulator, but you also need to have a character in the database to login(maybe a clone of your character?). I think this is what you are wanting to do?