Jump to content

Using WorldSavedData?


TLHPoE

Recommended Posts

I'm using WorldSavedData to store a player's stat for a world, but I have no clue how to get/load to the world's NBTTagCompound.

 

PlayerStatsUtil:

 

 

package terramagna.utils;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.world.*;
import net.minecraftforge.event.ForgeSubscribe;
import net.minecraftforge.event.entity.EntityJoinWorldEvent;

public class PlayerStatsUtil extends WorldSavedData
{

public PlayerStatsUtil(String par1Str){super(par1Str);}

private static int gold;
private static String playerN;

@ForgeSubscribe
public void onEntityJoinWorld(EntityJoinWorldEvent event)
{

	if (!event.entity.worldObj.isRemote && event.entity instanceof EntityPlayer)
	{

		EntityPlayer player = (EntityPlayer) event.entity;
		World world = player.getEntityWorld();



	}

}

@Override
public void readFromNBT(NBTTagCompound nbttagcompound)
{



}

@Override
public void writeToNBT(NBTTagCompound nbttagcompound)
{



}

}

 

 

Kain

Link to comment
Share on other sites

Sorry to sound dumb but, I've never really touched on Entities or TileEntities.

 

I'm confused on the 2 read/write NBT methods. Do I do something like this:

 

NBTTagCompound nbt = new NBTTagCompoind();

 

readFromNBT(nbt);

 

 

I don't know how I would store any data in that.

Kain

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.