Here is a list of all block ID locations extracted from Tile::initTiles of a copy of the libminecraftpe.so of a v0.6.1 Android Minecraft PE APK.
This should help modders port iOS mods.
What if, im making a mo items in creative mod, and i need to change iron sword to diamond sword in creative inventory,i need to know ironswords's hex id..
Can you help me to find out the block id which are bigger then 255..?
And sorry for bad english. I just came to usa last month
For example, to switch diamond blocks and dirt:
Look up the hex ID for diamond blocks, which is 39
Look up the hex ID for dirt, which is 03
Look up the hex offsets for both:
156810,3
157a9e,39
Then open up libminecraftpe.so in a hex editor, go to 156810 and change the 03 to 39, and then go to 157a9e and change the 39 to 03.
For example, to switch diamond blocks and dirt:
Look up the hex ID for diamond blocks, which is 39
Look up the hex ID for dirt, which is 03
Look up the hex offsets for both:
156810,3
157a9e,39
Then open up libminecraftpe.so in a hex editor, go to 156810 and change the 03 to 39, and then go to 157a9e and change the 39 to 03.
There are no block IDs larger than 255, but there are item IDs: subtract 256 from them to get the version from this list. E.g item 456 (camera) - 256 = 200, its internal ID.
-
View User Profile
-
View Posts
-
Send Message
Curse PremiumThere are no block IDs larger than 255, but there are item IDs: subtract 256 from them to get the version from this list. E.g item 456 (camera) - 256 = 200, its internal ID.
I am uploading textures in MCPE KOREA, I need that mod to remove errors in blocks
-
View User Profile
-
View Posts
-
Send Message
Curse PremiumYes, I will tomorrow.