Jump to content

Light Speed Boots


ashtonr12

Recommended Posts

how would i go about making the ground beneath the player set on fire randomly when the player is wearing My LightSpeedBoots?

i tired some ideas in the servertickmethod but to no avail i also looked at living entity updates, i assume it is some sort of combination of the two.

Use examples, i have aspergers.

Examples make sense to me.

Link to comment
Share on other sites

i would prefer to do in on the servertick please and i dont know how to do that.

if(player.getCurrentItemOrArmor(1) != null){
		ItemStack boots = player.getCurrentItemOrArmor(1);
		if(boots.getItem() == ashtonsmod.LSBoots){
			player.		
}
	}

 

i think this i correct i just need to find out how to complete the player.

Use examples, i have aspergers.

Examples make sense to me.

Link to comment
Share on other sites

something like this?

    @ForgeSubscribe
                  public void onEntityDrop(LivingUpdateEvent event) {
                               rand = Math.random();
                                if (event.entityLiving instanceof EntityPlayer) {
                                     //The integer at the end relates to how many Items will be dropped(percentage). 
                                     if (rand < 0.0001d){
                                        //The integer at the end relates to how many Items will be dropped(amount). 
                                        event.entityLiving.dropItem(ashtonsmod.FireSticks.shiftedIndex, 1);

                                   }
                             }
}

 

but this drops items not sets fire to things and i havtn even tried to see if EntityPlayer is a thing

Use examples, i have aspergers.

Examples make sense to me.

Link to comment
Share on other sites

i cant seem to get the code quite right :(

ive never been able to get onArmourTick to work for some reason, i can make it have no errors but it doesnt work which is why i used servertickmethod instead

Use examples, i have aspergers.

Examples make sense to me.

Link to comment
Share on other sites

The servertick would also be "every tick". You need to have maybe a random factor or a tick counter so it only happens every so often.

Don't use a tickhandler for this.

isnt there something to schedule an event on a tick?

Also, I should have you know that you are reading my signature.

Link to comment
Share on other sites

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.