Posted December 9, 201410 yr 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? Creator of the MyFit, MagiCraft, Tesseract gun, and Papa's Wingeria mod.
December 9, 201410 yr 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!
December 9, 201410 yr Author Ok, I'll try that. Thanks! Creator of the MyFit, MagiCraft, Tesseract gun, and Papa's Wingeria mod.
December 9, 201410 yr Author 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.
December 9, 201410 yr Author You can't get the statistics on the client, only the server (includes the integrated server). How would I do that, then? Creator of the MyFit, MagiCraft, Tesseract gun, and Papa's Wingeria mod.
December 9, 201410 yr Author @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.
December 10, 201410 yr Author Ok I'll try that Creator of the MyFit, MagiCraft, Tesseract gun, and Papa's Wingeria mod.
December 10, 201410 yr Author Awesome, it works! Thanks diesieben! Creator of the MyFit, MagiCraft, Tesseract gun, and Papa's Wingeria mod.
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.