Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

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.

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!

  • Author

Ok, I'll try that. Thanks!

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

  • 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.

  • 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.

  • 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.

  • Author

Ok I'll try that

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

  • 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.

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.