your mod causes the block closes on my android launcher pro, fix the error pleaseblock version of launcher pro 1.5, minecraft pe 0.7.6, using the texture pack, andhow to create objects of obsidian?
your mod causes the block closes on my android launcher pro, fix the error pleaseblock version of launcher pro 1.5, minecraft pe 0.7.6, using the texture pack, andhow to create objects of obsidian?
Made snowball machine gun based on treebl's unreal eased mod!! If you guys want it to be constant and the button toggles it on and off, just let me know.
var Arrow; var arrowspeed = 1; //That is the speed of the arrows var knockbackpower = 1; //Power of knockback var arrowx; var arrowy; var arrowz; var arrowdirx; var arrowdiry; var arrowdirz; //Call this in entityAddedHook () function multiarrows () { lookdir (getPitch (), getYaw ()); for (var i = 0; i < 4; i++) { Arrow = Level.spawnMob (getPlayerX () + (2 * dirx), getPlayerY() + (2 * diry), getPlayerZ () + ( 2 * dirz), 80); setVelX (Arrow, dirx * arrowspeed); setVelY (Arrow, diry * arrowspeed); setVelZ (Arrow, dirz * arrowspeed); } } //Call this in attackHook () function knockback (victim) { setVelX (victim, arrowdirx * knockbackpower); setVelY (victim, arrowdiry * knockbackpower); setVelZ (victim, arrowdirz * knockbackpower); } //Call this in entityAddedHook () function addknockbackarrow (entity) { Arrow = entity; arrowx = Entity.getX (Arrow); arrowy = Entity.getY (Arrow); arrowz = Entity.getZ (Arrow); } //Call this in modTick (), while the arrow is flying function arrowdirection () { arrowdirx = Entity.getX (Arrow) - arrowx; arrowdiry = Entity.getY (Arrow) - arrowy; arrowdirz = Entity.getZ (Arrow) - arrowz; arrowx = Entity.getX (Arrow); arrowy = Entity.getY (Arrow); arrowz = Entity.getZ (Arrow); } function lookdir (pitch, yaw) { diry = -(Math.sin (pitch / 90)); dirx = -(Math.sin (yaw / 180 * 3.141592)); dirz = (Math.cos (yaw / 180 * 3.141592)); if (diry > 0) { dirx -= (dirx / (0.9999999999999466 / diry)); dirz -= (dirz / (0.9999999999999466 / diry)); } else { dirx -= (dirx / (0.9999999999999466 / (-1 * diry))); dirz -= (dirz / (0.9999999999999466 / (-1 * diry))); } }And please put it in a link
Edit: Scratch that, it still didn't work!
Ok can you make zombie pigmans carry diamond swords
And if you can make skeletons more accurate
your mod causes the block closes on my android launcher pro, fix the error pleaseblock version of launcher pro 1.5, minecraft pe 0.7.6, using the texture pack, andhow to create objects of obsidian?
When 0.8.0 comes out this month, could you make a mod that lets you drive minecarts off the rails or even act as a boat?