Jump to content

[SOLVED]Getting Player Statistics in my Item?


Asweez

Recommended Posts

I have an Item that I want to use how far the player has walked, but I can't figure out how to retrieve the distanceWalked value. Can anyone help?

This might be it.

player.distanceWalkedModified/0.6

The reason for the 0.6 being divided is because it says distanceWalkedModified and is modified by it being multiplied by 0.6. So I just revert it to the original thing.

I'm back from being gone for... I think its been about a year. I'm pretty sure nobody remembers me, but hello anybody who does!

Link to comment
Share on other sites

On the server:

((EntityPlayerMP) player).func_147099_x().writeStat(StatList.distanceWalkedStat)

(Yes, writeStat. The method is named stupidly, it does not write anything).

Ok so it turns out I can't cast EntityPlayerMP to EntityClientPlayerMP. Anything else?

Creator of the MyFit, MagiCraft, Tesseract gun, and Papa's Wingeria mod.

Link to comment
Share on other sites

    @Override
    public void onCreated(ItemStack itemStack, World par2World, EntityPlayer player) {
    	 itemStack.stackTagCompound = new NBTTagCompound();
         StatBase statbase = StatList.distanceWalkedStat;
    	 itemStack.stackTagCompound.setInteger("walked", ((EntityPlayerMP)player).func_147099_x().writeStat(statbase));
    }

This is the method in my Item. I'm trying to save the distanceWalked stat into NBT

Creator of the MyFit, MagiCraft, Tesseract gun, and Papa's Wingeria mod.

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.