I finally make Soartex 64x run! and it's great 'cause now the item opaque file is used for the menu items, the problem is that the items are too big to be displayed in the hand of the player, and of course the animations bug do you think that the in-hand items problem could be fixed with a mod?
I finally make Soartex 64x run! and it's great 'cause now the item opaque file is used for the menu items, the problem is that the items are too big to be displayed in the hand of the player, and of course the animations bug do you think that the in-hand items problem could be fixed with a mod?
I meant, how can I read the file beacuse it just throws out a bunch of symbols
The link by 500 ISE (open the microsoft word file) teaches you to disassemble the SO file to something (barely) human-readable.
If you open the SO file by NotePad++ directly, as I remember for alpha 0.7.3, (I had not done that kind of thing afterwards due to the great release of ModPE) at the middle of the file, there are some strings like "All players must be near to the nether reactor core" and some splash things.
You are advised to use a hex editor to open the SO file.
Is there where the source code is? If so, I tried opening that file with Notepad++ but it just shown a bunch of symbols, how can I read the code?
You can't find the source code. Let's say, you made this code:
var a=10;
var b=22;
echo a+b;
The code is compiled to something like this:
STORE TO A: 10
STORE TO B: 22
LOAD A
LOAD B
ADD A AND B
OUTPUT
IDK if this is the exact explaining, but anyway, this is very human-reading-unfriendly. But this is how a binary-based machine works, right?
Rollback Post to RevisionRollBack
I can be found on Freenode IRC channels #pocketmine, #ModPEScripts, #LegendOfMCPE, #pmplugins or #BeaconMine.
I am a PocketMine-MP plugin developer. I hate it when people think that I love stupid admin positions. Being an admin is nothing compared to being a plugin developer.
I am also a main developer of BlockServer, a work-in-progress MCPE server software. You are welcome to download it, but it so far onlly spawns you in the upther (above the world). You can chat, though.
I do not own this server but I just love to put this banner here:
The fire and water textures are in alot of Hd packs.
Shouldn't the admins pin this topic? It is one of the most useful Modding tools other than Treebl's topic (but treebl quit) so i would thing they should pin this. Don't you think reader?
BlockLauncher IS the best modding tool for Android MCPE. I would say that it is better than TreeBL's ModPE topic, because BlockLauncher includes ModPE.
Lunears said that iOS modding is still alive and that he has a trick up his sleeve... For as much as I think this thread should be pinned, so should TreeBL's dead thread. Just to make things fair.
Lunears said that iOS modding is still alive and that he has a trick up his sleeve... For as much as I think this thread should be pinned, so should TreeBL's dead thread. Just to make things fair.
Not the problem of whether it is fair. The problem is ModPE iOS by Treebl is already ended, so the it is useless to pin it except to honour Treebl who is no longer active.
Rollback Post to RevisionRollBack
I can be found on Freenode IRC channels #pocketmine, #ModPEScripts, #LegendOfMCPE, #pmplugins or #BeaconMine.
I am a PocketMine-MP plugin developer. I hate it when people think that I love stupid admin positions. Being an admin is nothing compared to being a plugin developer.
I am also a main developer of BlockServer, a work-in-progress MCPE server software. You are welcome to download it, but it so far onlly spawns you in the upther (above the world). You can chat, though.
I do not own this server but I just love to put this banner here:
Umm, Hey 500ISE!!
the new update of MCPE and/or the new update for Block Launcher broke my mod ( it wont work! )
Every time i try to run a command, it crashes!!!
Rollback Post to RevisionRollBack
Click Banner to SUBSCRIBE!!! I'm in the Team Flame Clan!!! Click that little green arrow!! -------------->
The update did however fix the problem with the Amazon version of minecraft, also was gonna ask if that minecraft I sent u had no vibration function for u too? And if so y would they change the game like that?
Umm, Hey 500ISE!!
the new update of MCPE and/or the new update for Block Launcher broke my mod ( it wont work! )
Every time i try to run a command, it crashes!!!
I just ran heal and give commands with ur updated version of ur mod with the new blocklauncher update and it worked fine for me, did u have something else on that might conflict with ur mod?
I just ran heal and give commands with ur updated version of ur mod with the new blocklauncher update and it worked fine for me, did u have something else on that might conflict with ur mod?
Hmm, and u have the new version of MCPE and the new version of BlockLauncher?
Rollback Post to RevisionRollBack
Click Banner to SUBSCRIBE!!! I'm in the Team Flame Clan!!! Click that little green arrow!! -------------->
Umm, Hey 500ISE!!
the new update of MCPE and/or the new update for Block Launcher broke my mod ( it wont work! )
Every time i try to run a command, it crashes!!!
The update did however fix the problem with the Amazon version of minecraft, also was gonna ask if that minecraft I sent u had no vibration function for u too? And if so y would they change the game like that?
I just ran heal and give commands with ur updated version of ur mod with the new blocklauncher update and it worked fine for me, did u have something else on that might conflict with ur mod?
None expected 0.8.1 so fast I updated BLP to 1.6.1 and a few minutes later PE to 0.8.1
When will 0.8.1 b coming out? I can get blocklauncher pro 1.6.2 but wanna wait til mcpe 0.8.1 is out, I don't c an update for my mcpe in Google play store or Amazon app store.
When will 0.8.1 b coming out? I can get blocklauncher pro 1.6.2 but wanna wait til mcpe 0.8.1 is out, I don't c an update for my mcpe in Google play store or Amazon app store.
That's weird, on my iPhone I was able to update to 0.8.1 but my Android still hasn't popped up an update or even when I go into both stores it doesn't have an update.
Edit. Nvm, had to reboot my device then showed the update
-
View User Profile
-
View Posts
-
Send Message
Curse Premium:facepalm:
The libminecraftpe.so contains machine code: basically, numbers that the processor in your phone can interpret.
If you want to look at those numbers in a readable form, use a hex editor. A text editor would try to interpret the numbers as text instead.
Finally, if you want to translate the numbers into assembly language so that you know what the numbers mean, see the thread I linked.
-
View User Profile
-
View Posts
-
Send Message
Curse PremiumScreenshot please? That sounds great!
If you open the SO file by NotePad++ directly, as I remember for alpha 0.7.3, (I had not done that kind of thing afterwards due to the great release of ModPE) at the middle of the file, there are some strings like "All players must be near to the nether reactor core" and some splash things.
You are advised to use a hex editor to open the SO file.You can't find the source code. Let's say, you made this code:
The code is compiled to something like this:
IDK if this is the exact explaining, but anyway, this is very human-reading-unfriendly. But this is how a binary-based machine works, right?
The clock
The compass it works fine in the menu
The sword
The bow and the fire texture, it doesn't use only the strip but some textures from the tga file
Water and lava flowing are now in the gold ore
and fire in the coal ore...
and you can download Soartex here and find what else is wrong:
http://www.minecraftforum.net/topic/1842225-jacques-remys-best-13-hd-texture-packs-soartex-fanver-available-now-080/
BlockLauncher IS the best modding tool for Android MCPE. I would say that it is better than TreeBL's ModPE topic, because BlockLauncher includes ModPE.
Want GUI Templates? Done!
https://github.com/BeATz-UnKNoWN/ModPE_Scripts/wiki/ModPE-Script-Templates
P.S. Feel free to follow me so you know when I post "awesome" content and make the MCForums a brighter place (totally).
If you need to contact me you can either shoot a Kik message to beatz_unknown or send an email to [email protected]
Want GUI Templates? Done!
https://github.com/BeATz-UnKNoWN/ModPE_Scripts/wiki/ModPE-Script-Templates
P.S. Feel free to follow me so you know when I post "awesome" content and make the MCForums a brighter place (totally).
If you need to contact me you can either shoot a Kik message to beatz_unknown or send an email to [email protected]
the new update of MCPE and/or the new update for Block Launcher broke my mod ( it wont work! )
Every time i try to run a command, it crashes!!!
Click Banner to SUBSCRIBE!!! I'm in the Team Flame Clan!!! Click that little green arrow!! -------------->
I just ran heal and give commands with ur updated version of ur mod with the new blocklauncher update and it worked fine for me, did u have something else on that might conflict with ur mod?
Click Banner to SUBSCRIBE!!! I'm in the Team Flame Clan!!! Click that little green arrow!! -------------->
-
View User Profile
-
View Posts
-
Send Message
Curse Premium1.6.2 will be the 0.8.1 compatible version. It was a coincidence that we both updated - 1.6.1 supports 0.8.0] only.
Re. Mojang on vibration: It's a bit silly, I agree - The Kindle Fire series never had vibration motors, so maybe they wanted to save about 18 bytes?
Yup, well bl pro 1.6.1 mcpe 0.8.0
Hmm interesting point about the vibration, even the iOS mcpe now has vibration feature but doesn't actually vibrate.
-
View User Profile
-
View Posts
-
Send Message
Curse PremiumGet 1.6.2.
When will 0.8.1 b coming out? I can get blocklauncher pro 1.6.2 but wanna wait til mcpe 0.8.1 is out, I don't c an update for my mcpe in Google play store or Amazon app store.
-
View User Profile
-
View Posts
-
Send Message
Curse Premium0.8.1 was pushed out by Mojang yesterday.
Edit. Nvm, had to reboot my device then showed the update