I am currently making a mod and one of the key elements in it is to be able to climb ANY block (whenever you walk into the block). I have done the rest of the mod and this is the last thing that needs to be done. If you know how to do this, please tell me, or if you know someone who does, please tell them to post how on this topic.
Thanks
Rollback Post to RevisionRollBack
Please click that little green button down there to if I helped!
function modTick(){
var block = getTile(getPlayerX(), getPlayerY(), getPlayerZ()-1);
If(getTile(getPlayerX(), getPlayerY(), getPlayerZ()-1) == block)
{
setVelY(getPlayerEnt(), 1);
}
}
This should work
Rollback Post to RevisionRollBack
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! ---------------->
I am currently making a mod and one of the key elements in it is to be able to climb ANY block (whenever you walk into the block). I have done the rest of the mod and this is the last thing that needs to be done. If you know how to do this, please tell me, or if you know someone who does, please tell them to post how on this topic.
Thanks
Please click that little green button down there to if I helped!
U can use getTile get air then setTile x+1 y z
Why we call TBPM ?-Three boys play minecraft
Awesomeeee!
function modTick(){ var block = getTile(getPlayerX(), getPlayerY(), getPlayerZ()-1); If(getTile(getPlayerX(), getPlayerY(), getPlayerZ()-1) == block) { setVelY(getPlayerEnt(), 1); } }This should work
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! ---------------->
Please click that little green button down there to if I helped!