Jump to content

Recommended Posts

Posted

This will never be true...

	    for(int spawns = 0; spawns > 5; spawns++) {
	      EVOKER_FANGS.setPosition(playerIn.posX + aim.x * 1, playerIn.posY, playerIn.posZ + aim.z);
	      worldIn.addEntity(EVOKER_FANGS);
	      
	    }

 

Posted
17 minutes ago, poopoodice said:

This will never be true...


	    for(int spawns = 0; spawns > 5; spawns++) {
	      EVOKER_FANGS.setPosition(playerIn.posX + aim.x * 1, playerIn.posY, playerIn.posZ + aim.z);
	      worldIn.addEntity(EVOKER_FANGS);
	      
	    }

 

So what do I do instead?

Posted (edited)

for(int spawns = 0; spawns > 5; spawns++)

what you trying to do here is "while spawn is bigger than 5 (which is 0 at the start), this is true, and add spawn by one" <-- never going to be true, so change > to < 

 

also 

Quote

EvokerFangsEntity EVOKER_FANGS = new EvokerFangsEntity(worldIn, 1, 2, 3, 4, 5, playerIn);

what is that 1, 2, 3, 4, 5 for? you should be able to just use the first constructor.

Edited by poopoodice
Posted
4 hours ago, Babelincoln1809 said:

So what do I do instead?

learn java ?

 

4 hours ago, poopoodice said:

EvokerFangsEntity EVOKER_FANGS = new EvokerFangsEntity(worldIn, 1, 2, 3, 4, 5, playerIn);

you are spawning the same entity 5 time you need to spawn 5 times a new entity

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.