doadoan Posted May 31, 2014 Share Posted May 31, 2014 Hey yo, weiß vllt. jemand wie man ein Item einfach an einer bestimmten Position spawnen lassen kann? Also zB. wenn man einen bestimmten Block rechtsklickt, auf dem Block eine Kartoffel spawnt? Link to comment Share on other sites More sharing options...
LordRazen Posted May 31, 2014 Share Posted May 31, 2014 Geht mit commandblocks und dem befehl summon item. Gesendet von meinem GT-I8160 mit Tapatalk 2 Link to comment Share on other sites More sharing options...
doadoan Posted June 1, 2014 Author Share Posted June 1, 2014 Meinte eigendlich programmiertechnisch, habs aber schon selber gefunden public void updateTick(World world, int par1, int par2, int par3, Random par4){ super.updateTick(world, par1, par2, par3, par4); ItemStack itemstack = new ItemStack(Items.apple); EntityItem entity = new EntityItem(world, par1, par2, par3, new ItemStack(itemstack.getItem(), 1)); world.spawnEntityInWorld(entity); } Link to comment Share on other sites More sharing options...
LordRazen Posted June 2, 2014 Share Posted June 2, 2014 (edited) sorry, ist mit in Tapatalk entgangen... Aber gut dass es gelöst ist. Edited June 2, 2014 by LordRazen Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now