Control Gravity at your will with the Gravity Control mod!
Craft all Gravity Controllers to control gravity as you please!
Even use the Gravity Pod to create your very own Zero-Gravity Chamber!
RECIPES
Low Gravity Controller
Gravity will be low when this is enabled!
1 Diamond
2 Iron Ingots
2 Redstone Dust
Gravity Controller
Zero Gravity will be enabled!
1 Low Gravity Controller
4 Redstone Dust
High Gravity Controller
Nothing can escape the pull of gravity when this is enabled!
1 Gravity Controller
4 Redstone Dust
Gravity Anchor
Gravity will not affect you. You will stay the same.
2 Obsidian
3 Iron Ingots
Gravity Pod
No Gravity is at the area of which this block is placed!
1 Gravity Controller
4 Iron Ingots
4 Redstone Dust
SCREENSHOTS
DOWNLOADS
Please use one of the following links below. If you are going to post this mod somewhere else please use one of the links below! Thank you for your cooperation!
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]
Dude couldn't test the mod.. The lag was REALLY BAD, I have a nexus 7 (2013) running a performance boosting ROM and its still unusable, Nexuses are pretty good, please fix looks cool...
Do you know what gravity is? Gravity is what pulls you down. If there is no gravity, you'd be floating.
Anyway, lag isn't an issue for me. I don't get any. I'll see what I can do.
Actually it would be
function modTick()
{
Entity.setVelY(getPlayerEnt(), Entity.getVelY(getPlayerEnt()));
Entity.setVelZ(getPlayerEnt(), Entity.getVelZ(getPlayerEnt()));
Entity.setVelX(getPlayerEnt(), Entity.getVelX(getPlayerEnt()));
}
Since having no gravity would make you keep moving in the direction you go in. Except you would need to make the player slow down slowly, because of air friction.
Make sure you follow me on twitter! @DarkDiaMiner IF I post a mod download it and give me a +1 if you appreciate.
Make sure you give me a suggestion at my WIP topic darkPE
Make sure you click on that +1 button if I help you! ---------------->
function modTick()
{
Entity.setVelY(getPlayerEnt(), Entity.getVelY(getPlayerEnt()));
Entity.setVelZ(getPlayerEnt(), Entity.getVelZ(getPlayerEnt()));
Entity.setVelX(getPlayerEnt(), Entity.getVelX(getPlayerEnt()));
}
Since having no gravity would make you keep moving in the direction you go in. Except you would need to make the player slow down slowly, because of air friction.
Depending on how little gravity there is:
function modTick()
{
Entity.setVelY(getPlayerEnt(), Entity.getVelY(getPlayerEnt())/5);
Entity.setVelZ(getPlayerEnt(), Entity.getVelZ(getPlayerEnt())/5);
Entity.setVelX(getPlayerEnt(), Entity.getVelX(getPlayerEnt())/5);
}
Rollback Post to RevisionRollBack
I'M BACK!
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]
Do you know what gravity is? Gravity is what pulls you down. If there is no gravity, you'd be floating.
That's the point; there is no zero-gravity.
Rollback Post to RevisionRollBack
I'M BACK!
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]
? What? Ok so are we just gonna argue about the pricipals of gravity now? xD
How did you know? I want to ask you a question? How do you even come up with these mod ideas? How did you create a custom items-opaque file?
Rollback Post to RevisionRollBack
I'M BACK!
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]
Use Mercator to make the items opaque. You can edit the item image individually and it makes things easier. I see these simple mods from PC and port them to pocket edition with little twists.
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
I guess. I've never heard of though.
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]
Do you know what gravity is? Gravity is what pulls you down. If there is no gravity, you'd be floating.
Anyway, lag isn't an issue for me. I don't get any. I'll see what I can do.
Youtube Channel: www.youtube.com/zoomturd
Mod: http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/wip-mods/2551790-mythical-minecraft-monsters-weapons-and-other-lore
Map: http://www.minecraftforum.net/forums/mapping-and-modding/maps/2578483-gladiator-arena-map
Actually it would be
function modTick() { Entity.setVelY(getPlayerEnt(), Entity.getVelY(getPlayerEnt())); Entity.setVelZ(getPlayerEnt(), Entity.getVelZ(getPlayerEnt())); Entity.setVelX(getPlayerEnt(), Entity.getVelX(getPlayerEnt())); }Since having no gravity would make you keep moving in the direction you go in. Except you would need to make the player slow down slowly, because of air friction.
IF I post a mod download it and give me a +1 if you appreciate.
Make sure you give me a suggestion at my WIP topic darkPE
Make sure you click on that +1 button if I help you! ---------------->
Depending on how little gravity there is:
function modTick() { Entity.setVelY(getPlayerEnt(), Entity.getVelY(getPlayerEnt())/5); Entity.setVelZ(getPlayerEnt(), Entity.getVelZ(getPlayerEnt())/5); Entity.setVelX(getPlayerEnt(), Entity.getVelX(getPlayerEnt())/5); }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]
That's the point; there is no zero-gravity.
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]
How did you know?
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]