Jump to content

Recommended Posts

Posted

Alright, so I am trying to keep track of the amount of days each player has been alive, so I set up a TickHandler and registered an ExtendedPlayer class implementing IExtendedEntityProperties. I'm not too familiar with how NBTData works so I pretty much followed a tutorial to set up the ExtendedPlayer class. When testing my code, it successfully kept track of the amount of days a player was alive and reset when the player died (I simply took advantage of NBTData clearing upon death). However, when relogging with that player, the counter would remain frozen at its current number and no longer increment each day. My code is as follows:

 

My TickHandler code:

public class PlayerTickHandler {
private Minecraft mc;
public World world;
public EntityPlayer player;
public ChatStyle style = new ChatStyle();
public WorldInfo worldInfo;
public boolean night;
public ExtendedPlayer props;
public int counter;

public PlayerTickHandler(Minecraft mc)
{
	this.mc = mc;
}	
@SubscribeEvent
public void onPlayerTick(PlayerTickEvent event)
{
	if (this.player == null)
	{
		this.player = event.player;
		this.world = player.worldObj;
		this.worldInfo = world.getWorldInfo();
		this.props = ExtendedPlayer.get((EntityPlayer) event.player);
	}
	if (counter < 500)
	{
		counter++;
	}
	else
	{
		counter=0;
		System.out.println("(Counter)Days alive from NBT: " + props.getDaysAlive());
	}
	if(worldInfo.getWorldTime() >= 13000 )
	{
		if(!props.getNight())
		{
			props.makeNight();
			props.addDay();
			System.out.println("(Night)Days alive from NBT: " + props.getDaysAlive());
		}
	}
	else
	{
		if(props.getNight())
		{
			props.makeDay();
			System.out.println("(Day)Days alive from NBT: " + props.getDaysAlive());
		}
	}	
}

}

 

My ExtendedPlayer code:

public class ExtendedPlayer implements IExtendedEntityProperties{

public final static String PROP_NAME = "ExtendedPlayer";

private final EntityPlayer player;

private int daysAlive;
private boolean isNight;

public ExtendedPlayer(EntityPlayer player)
{
	this.player = player;
	this.daysAlive=0;
}

public static final void register(EntityPlayer player)
{
	player.registerExtendedProperties(ExtendedPlayer.PROP_NAME, new ExtendedPlayer(player));
}

public static final ExtendedPlayer get(EntityPlayer player)
{
return (ExtendedPlayer) player.getExtendedProperties(PROP_NAME);
}

public void saveNBTData(NBTTagCompound compound)
{
	NBTTagCompound properties = new NBTTagCompound();
	properties.setInteger("DaysAlive", this.daysAlive);
	properties.setBoolean("IsNight", this.isNight);
	compound.setTag(PROP_NAME, properties);
}

public void loadNBTData(NBTTagCompound compound)
{
	NBTTagCompound properties = (NBTTagCompound) compound.getTag(PROP_NAME);
	this.daysAlive = properties.getInteger("DaysAlive");
	this.isNight = properties.getBoolean("IsNight");
	System.out.println("Days alive from NBT: " + this.daysAlive);
}

public void init(Entity entity, World world)
{
}

public void addDay()
{
	this.daysAlive++;
}
//Not exactly necessary since NBTData is cleared upon death
public void resetDays()
{
	this.daysAlive=0;
}

public int getDaysAlive()
{
	return this.daysAlive;
}

public void makeDay()
{
	this.isNight=false;
}

public void makeNight()
{
	this.isNight=true;
}

public boolean getNight()
{
	return this.isNight;
}

}

 

I used the print statements for debugging, printing out the number of saved days. They would increment properly each day and reset to 0 upon dying. Upon relogging, they would continuously print out the same number they were at when I logged out.

Posted

I'm almost afraid to post this because I know I've screwed up even worse now. So I made some changes to my TickHandler and IEEP, and I seem to be on the right track, because I can get the counter to continue to properly increment upon relogging. What's weird now is that my print statements print out twice and the second one resets when I relog while the first one remains correct. (So for example, it prints out "Days alive from NBT: 3" twice, then I relog and increment one more day, so it then prints out "Days alive from NBT: 4" and then prints out "Days alive from NBT: 1").

My new code is as follows:

TickHandler:

public class PlayerTickHandler {


public PlayerTickHandler()
{

}


@SubscribeEvent
public void onPlayerTick(PlayerTickEvent event)
{
	ExtendedPlayer dayInfo = ExtendedPlayer.get((EntityPlayer) event.player);
	if(dayInfo.getWorldInfo().getWorldTime() >= 13000 )
	{
		if(!dayInfo.getNight())
		{
			dayInfo.makeNight();
			dayInfo.addDay();
			System.out.println("(Night)Days alive from NBT: " + dayInfo.getDaysAlive());
		}
	}
	else
	{
		if(dayInfo.getNight())
		{
			dayInfo.makeDay();
			System.out.println("(Day)Days alive from NBT: " + dayInfo.getDaysAlive());
		}
	}	
}
}

ExtendedPlayer

public class ExtendedPlayer implements IExtendedEntityProperties{

public final static String DAY_INFO = "ExtendedPlayer";

private final EntityPlayer player;
private World world;
private WorldInfo worldInfo;
private int daysAlive;
private boolean isNight;

public ExtendedPlayer(EntityPlayer player)
{
	this.player = player;
	this.daysAlive=0;
	this.world = player.worldObj;
	this.worldInfo = world.getWorldInfo();
}

public static final void register(EntityPlayer player)
{
	player.registerExtendedProperties(ExtendedPlayer.DAY_INFO, new ExtendedPlayer(player));
}

public static final ExtendedPlayer get(EntityPlayer player)
{
return (ExtendedPlayer) player.getExtendedProperties(DAY_INFO);
}

public void saveNBTData(NBTTagCompound compound)
{
	NBTTagCompound properties = new NBTTagCompound();
	properties.setInteger("DaysAlive", this.daysAlive);
	properties.setBoolean("IsNight", this.isNight);
	compound.setTag(DAY_INFO, properties);
}

public void loadNBTData(NBTTagCompound compound)
{
	NBTTagCompound properties = (NBTTagCompound) compound.getTag(DAY_INFO);
	this.daysAlive = properties.getInteger("DaysAlive");
	this.isNight = properties.getBoolean("IsNight");
	System.out.println("Days alive from NBT: " + this.daysAlive);
}

public void init(Entity entity, World world)
{
}

public void addDay()
{
	this.daysAlive++;
}
//Not exactly necessary since NBTData is cleared upon death
public void resetDays()
{
	this.daysAlive=0;
}

public int getDaysAlive()
{
	return this.daysAlive;
}

public void makeDay()
{
	this.isNight=false;
}

public void makeNight()
{
	this.isNight=true;
}

public boolean getNight()
{
	return this.isNight;
}

public World getWorld()
{
	return this.world;
}	

public WorldInfo getWorldInfo()
{
	return this.worldInfo;
}
}

 

 

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • When I first heard about Bitcoin back in 2018, I was skeptical. The idea of a decentralized, digital currency seemed too good to be true. But I was intrigued as I learned more about the technology behind it and its potential. I started small, investing just a few hundred dollars, dipping my toes into the cryptocurrency waters. At first, it was exhilarating to watch the value of my investment grow exponentially. I felt like I was part of the future, an early adopter of this revolutionary new asset. But that euphoria was short-lived. One day, I logged into my digital wallet only to find it empty - my Bitcoin had vanished without a trace. It turned out that the online exchange I had trusted had been hacked, and my funds were stolen. I was devastated, both financially and emotionally. All the potential I had seen in Bitcoin was tainted by the harsh reality that with decentralization came a lack of regulation and oversight. My hard-earned money was gone, lost to the ether of the digital world. This experience taught me a painful lesson about the price of trust in the uncharted territory of cryptocurrency. While the technology holds incredible promise, the risks can be catastrophic if you don't approach it with extreme caution. My Bitcoin investment gamble had failed, and I was left to pick up the pieces, wiser but poorer for having placed my faith in the wrong hands. My sincere appreciation goes to MUYERN TRUST HACKER. You are my hero in recovering my lost funds. Send a direct m a i l ( muyerntrusted ( @ ) mail-me ( . )c o m ) or message on whats app : + 1 ( 4-4-0 ) ( 3 -3 -5 ) ( 0-2-0-5 )
    • You could try posting a log (if there is no log at all, it may be the launcher you are using, the FAQ may have info on how to enable the log) as described in the FAQ, however this will probably need to be reported to/remedied by the mod author.
    • So me and a couple of friends are playing with a shitpost mod pack and one of the mods in the pack is corail tombstone and for some reason there is a problem with it, where on death to fire the player will get kicked out of the server and the tombstone will not spawn basically deleting an entire inventory, it doesn't matter what type of fire it is, whether it's from vanilla fire/lava, or from modded fire like ice&fire/lycanites and it's common enough to where everyone on the server has experienced at least once or twice and it doesn't give any crash log. a solution to this would be much appreciated thank you!
    • It is 1.12.2 - I have no idea if there is a 1.12 pack
  • Topics

×
×
  • Create New...

Important Information

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