You dont need a script or mod for that.all you got to do if you have android get the app called pocketinveditior. In there is were can learn how to change your spawn.
Rollback Post to RevisionRollBack
I am a MCPE Modder and a Android/Game Developer and you can check out my work soon on the google playstore
You dont need a script or mod for that.all you got to do if you have android get the app called pocketinveditior. In there is were can learn how to change your spawn.
I don't think you read it all. The spawn needs to change when the player steps on a certain block. Meaning the spawn will change whenever the player steps on that block
I don't think you read it all. The spawn needs to change when the player steps on a certain block. Meaning the spawn will change whenever the player steps on that block
-
View User Profile
-
View Posts
-
Send Message
Curse PremiumI believe there's a Level.setSpawn(x, y, z) method.
Not sure how to use it. Could you explain?
This is what I thought would work
var test = 0; chkx = 0; chky = 0; chkz = 0; function modTick() { if(Level.getTile(Player.getX(), Player.getY()-2, Player.getZ()) == 16) // coal ore { Level.setSpawn(chkx, chky, chkz) } if(Level.getTile(Player.getX(), Player.getY()-1, Player.getZ()) == 8) //water { setPosition(getPlayerEnt(),chkx,chky+3,chkz) } if(Level.getTile(Player.getX(), Player.getY()-1, Player.getZ()) == 9) //water { setPosition(getPlayerEnt(),chkx,chky+3,chkz) } }