Click the version of your choice to view method dumps from libminecraftpe.so.
Version |
---|
v1.1.0.9 |
v1.1.0.8 |
v1.1.0.0 |
v0.8.0 alpha |
v0.7.4 alpha |
v0.2.0 alpha |
v0.1.3 alpha |
v0.1.2 alpha |
v0.1.1 alpha |
Version |
---|
Realms alpha build 4 |
Version |
---|
v0.2.1 alpha build 2 |
I simply went in my Android Linux terminal and typed the following.
nm -DC libminecraftpe.so > fulldump.txt
To dump blocks and items i just changed ‘Packet’ to ‘Tile’ or ‘Item’.
nm -DC libminecraftpe.so | grep "Packet::" > packetdump.txt
You can also generate a pack dump with only the packet names by using
nm -DC libminecraftpe.so | grep "~*Packet()" > packetdump.txt
To get packet id’s (but takes a long time). You will have to do some digging to find the packet id’s from the dump, though.
objdump -b elf32-littlearm -Cd libminecraftpe.so | grep -A 5 '<*Packet::getId()' > fullpacketdump.txt