Jump to content

[1.8.9] [SOLVED] PlayerTickEvent not applying damage when it should


Daeruin

Recommended Posts

I'm working on a little feature that is supposed to apply damage to the player when they are walking or sprinting across a specific kind of block on a semi-random basis. As a test, I have created a PlayerTickEvent:

 

 

@SubscribeEvent
public void onPlayertick(PlayerTickEvent event) {

	ticksCounted += 1;

	Entity entity = event.player;
	BlockPos posBelowPlayer = new BlockPos((int) Math.floor(entity.posX), (int) Math.floor(entity.posY) - 0.2D, (int) Math.floor(entity.posZ));
	Block blockBelow = entity.worldObj.getBlockState(posBelowPlayer).getBlock();

	if (ticksCounted % 100 == 0
			&& entity instanceof EntityPlayer
			&& blockBelow == Blocks.dirt
			&& entity.onGround
			&& !entity.isSneaking()
			&& entity.worldObj.getDifficulty() != EnumDifficulty.PEACEFUL) {
		System.out.println("ALL CHECKS PASSED");
		event.player.attackEntityFrom(DamageSource.generic, 1.0F);
	}

 

 

As you can see, I'm not actually checking if the player is moving yet. I'm using dirt for now (because it's plentiful). I haven't applied any kind of randomization. I'm just trying to get it to happen every 100 ticks as a test. But it isn't happening. I'm keeping my player just standing there on dirt blocks, and can see my debug statement "ALL CHECKS PASSED" occurring every 100 ticks like clockwork, but the damage is only being applied every 20th time or so. It seems random. Any idea what is preventing the damage from being applied?

 

As a secondary question, how would you recommend checking if the player is walking or sprinting over the block? I was thinking that as long as the player is on the ground (event.entity.onGround == true) and not sneaking (event.entity.isSneaking() == true) and their X movement isn't 0 (event.entity.motionX != 0), then that's enough to apply the damage. I've implemented the first two, but not the last. Does that sound like it would work?

 

Oh, and a third, very minor, question. This is how I'm registering this event:

 

        FMLCommonHandler.instance().bus().register(new PlayerTickEventHandler());

 

But Eclipse is telling me that "bus()" is deprecated. It seems to be working as is, but I'm curious what is the correct way to do this for 1.8.9. I did some searching and couldn't find a quick answer, so I thought I'd tack it onto this post.

 

Thanks in advance!

 

Edit: Added clarification to subject title

Link to comment
Share on other sites

Further testing shows the event is only happening on the client side (event.player.worldObj.isRemote is always TRUE, and the event doesn't fire at all if I register it only in the server proxy). Does that mean I need to set up a packet handler to make sure the damage gets communicated to the server? I haven't delved into packet handling yet.

Link to comment
Share on other sites

OK, I kind of figured out what's causing this weirdness. To answer your question, I am registering the event handler in my Common Proxy during post initialization. I tried registering it in Server Proxy and Client Proxy, in pre, init, and post, just to see what would happen. It's interesting that the event doesn't fire at all when registered in Server Proxy, but I think that's a red herring.

 

I created a new event without all the extra stuff. All it does is increment the tick value and print to the console the tick value, phase, and whether the world is remote. I found that I get ticks from client and server in roughly equal numbers, but in irregular patterns—sometimes it's 2 ticks in a row from the server, then 2 from client, for 20 or 30 ticks; then I'll get 10 ticks in a row from the server and 10 from the client for a little while. So it's a toss of the dice whether any given tick is coming from the client or the server. Either way, the phase alternates every other tick regularly.

 

So next I set it up to check if the world is remote every X number of ticks. For example:

 

public class TickTest {

int tick;

@SubscribeEvent
public void onTick(PlayerTickEvent event) {
	tick += 1;
	if (tick % 50 == 0) {
		System.out.println("Tick: " + tick + " - Phase: " + (event.phase) + " - World remote? " + event.player.worldObj.isRemote);
		event.player.attackEntityFrom(DamageSource.generic, 1.0F);
	}
}
}

 

The code above has a tick firing from the server about 5 out of 15 times. I guess that's not too weird, given the uneven patterns I was seeing when checking every tick. I'm guessing it would have evened out to 50% of the time if I waited long enough. I also checked the tick phase, and it was always END, no matter what. Sample from log output:

 

 

[22:47:54] [Client thread/INFO] [sTDOUT]: [com.daeruin.primalcraft.events.TickTest:onTick:17]: Tick: 50 - Phase: END - World remote? true
[22:47:55] [Client thread/INFO] [sTDOUT]: [com.daeruin.primalcraft.events.TickTest:onTick:17]: Tick: 100 - Phase: END - World remote? true
[22:47:56] [server thread/INFO] [sTDOUT]: [com.daeruin.primalcraft.events.TickTest:onTick:17]: Tick: 150 - Phase: END - World remote? false
[22:47:56] [Client thread/INFO] [sTDOUT]: [com.daeruin.primalcraft.events.TickTest:onTick:17]: Tick: 200 - Phase: END - World remote? true
[22:47:57] [server thread/INFO] [sTDOUT]: [com.daeruin.primalcraft.events.TickTest:onTick:17]: Tick: 250 - Phase: END - World remote? false
[22:47:58] [Client thread/INFO] [sTDOUT]: [com.daeruin.primalcraft.events.TickTest:onTick:17]: Tick: 300 - Phase: END - World remote? true
[22:47:58] [server thread/INFO] [sTDOUT]: [com.daeruin.primalcraft.events.TickTest:onTick:17]: Tick: 350 - Phase: END - World remote? false
[22:47:59] [Client thread/INFO] [sTDOUT]: [com.daeruin.primalcraft.events.TickTest:onTick:17]: Tick: 400 - Phase: END - World remote? true
[22:48:00] [server thread/INFO] [sTDOUT]: [com.daeruin.primalcraft.events.TickTest:onTick:17]: Tick: 450 - Phase: END - World remote? false
[22:48:00] [Client thread/INFO] [sTDOUT]: [com.daeruin.primalcraft.events.TickTest:onTick:17]: Tick: 500 - Phase: END - World remote? true
[22:48:01] [Client thread/INFO] [sTDOUT]: [com.daeruin.primalcraft.events.TickTest:onTick:17]: Tick: 550 - Phase: END - World remote? true
[22:48:02] [Client thread/INFO] [sTDOUT]: [com.daeruin.primalcraft.events.TickTest:onTick:17]: Tick: 600 - Phase: END - World remote? true

 

 

Every time the tick comes from the server, the code to damage the player works (well, it takes a couple hundred ticks upon starting up the world before the damage starts registering). When the tick comes from the client, no damage is applied.

 

If I change the above code to check every 100 ticks, I get almost every single tick occurring on the client (in one test I got a single tick from the server after waiting 4000 ticks, in another test it took 2000 ticks). The reason my previous tests seemed to be occurring only on the client is because I was only checking every 100 ticks. If I change it to every 101 ticks, I get roughly every other one from the server.

 

So it appears if I check every X ticks, I just need to randomly pick the right value for X to get the code to execute regularly. Unless someone else can see a pattern that I can't.

Link to comment
Share on other sites

The player doesn't take any damage on the client because it's not supposed to - changes to data should only ever occur on the server, which then, if the data is important for the client to know about (e.g. for rendering GUIs), notifies the client of the current values.

 

Since you are testing on single player, the client and server are not really separated - the integrated server runs in the same program instance as the client - so your event handler only has one instance shared between the two. When you increment the tick counter on either side, the increased value is also seen on the other side, so both sides are incrementing the same counter. You would not notice this behavior when running on a dedicated server.

 

Anyway, to fix your issue, nest all of your event code in an 'if (!event.player.worldObj.isRemote)' statement - that will ensure your code only runs on the logical server side, which is what you want.

Link to comment
Share on other sites

Yes, I tried that after I posted as it seemed the next logical step. The behavior I'm seeing is that I can't predict whether any given tick is occurring on the server or the client. So if I check for whether the world is remote, THEN check whether a specific number of ticks have occurred (e.g., tickCount % 50), chances are good that specific tick was on client side (for example, see ticks 50 and 100 from the sample output in my last post), and nothing happens. In fact, when I'm checking every 100 ticks, the vast majority of those ticks are occurring on client side--embedding that kind of check inside a check for whether the world is remote will practically guarantee that the event code never occurs, especially after adding the other conditions I want to add (walking or sprinting on a specific kind of block).

 

Maybe instead of checking every 100 ticks, I need to just generate a random number that should let the code execute 1% of the time. Same net result, hopefully.

Link to comment
Share on other sites

If the tick is happening on the server side and the

Phase

is correct (it doesn't really matter whether it runs in

START

or

END

as long as you pick one), increment your tick counter and check if the appropriate amount of ticks have passed. If you don't check the side and

Phase

, the handler will be called twice per tick per side for every player.

 

You can't store the tick counter as a field of your event handler, since the same handler will be called for every player on the server. The more players there are, the more often one of them (there's no guarantee as to which one) will take damage. Event handlers are essentially singletons like

Block

s or

Item

s, so you can't store data for a specific object in their fields.

 

The

Entity#ticksExisted

field stores the number of ticks the entity has been alive for. Use this instead of maintaining your own tick counter.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

Good point. I really haven't been thinking about server use at all, but if the event gets called every time ANY player ticks . . . yeah. Not quite what I was imagining.

 

So I check if the tick is happening on server side, in the correct phase, and whether Entity#ticksExisted % 100 is zero, then apply the damage. That sounds like it would be more reliable. I'll try it when I get home tonight.

 

I just realized that I probably don't need to check if the entity is a player, because I'm using PlayerTickEvent. In my earlier code I created an Entity variable named "entity" and assigned it the value of event.player, then later on I checked to see if "entity" is an instance of EntityPlayer. Seems a little redundant, no?

Link to comment
Share on other sites

So I check if the tick is happening on server side, in the correct phase, and whether Entity#ticksExisted % 100 is zero, then apply the damage. That sounds like it would be more reliable. I'll try it when I get home tonight.

That should work, yes.

 

I just realized that I probably don't need to check if the entity is a player, because I'm using PlayerTickEvent. In my earlier code I created an Entity variable named "entity" and assigned it the value of event.player, then later on I checked to see if "entity" is an instance of EntityPlayer. Seems a little redundant, no?

That is indeed redundant. As the name suggests,

PlayerTickEvent

is only fired for players.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

Awesome, that worked perfectly!

 

However, now my check for movement is failing. It appears that whenever the world is not remote, event.player.motionX is always zero. Any other ideas how I can accomplish this? I need the event to trigger when the player is walking or sprinting across a certain type of block, and I need it to apply damage.

Link to comment
Share on other sites

Or you can compare the player's lastPos values with its pos values and see if they have changed.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Draco, thanks for the suggestion. I tried it out. Unfortunately, after making sure that the world is not remote and the phase is START (or END, doesn't make a difference), (event.player.posX == event.player.lastTickPosX) only seems to be false about one tick out of twenty, even when I'm moving constantly.

 

I'm trying to learn about packets so I can try coolAlias's suggestion. It's taking a while, but I'll try to report on that. In the meantime, any other suggestions are welcome.

Link to comment
Share on other sites

  • 2 weeks later...

So I spent a while learning about packets and set up a very basic thirst system while following some tutorials by coolAlias, diesieben, and jabelar. Cool stuff.

 

After doing all that, I changed my PlayerTickEvent to listen on the client side and created a packet (called PlayerToeStub, haha) to perform the damage on the server side. Unfortunately, it doesn't seem to work. I registered the packet as a server message and set up the handler to run on the correct thread (I think) but a check for world.isRemote inside the runnable shows that it still seems to be running on the client, and the damage doesn't get applied. I must be doing something wrong, but I don't know what it is. Any ideas or advice?

 

PlayerTickEvent (listens on client for the right conditions, then sends the packet)

 

public class PrimalPlayerTickEvent {

@SubscribeEvent
public void onTick(PlayerTickEvent event) {

	Entity entity = event.player;
	BlockPos posBelowPlayer = new BlockPos((int) Math.floor(entity.posX), (int) Math.floor(entity.posY) - 0.2D, (int) Math.floor(entity.posZ));
	Block blockBelow = entity.worldObj.getBlockState(posBelowPlayer).getBlock();

	if (entity.worldObj.isRemote) {
		if (event.phase == Phase.END) {
			if (entity.ticksExisted % 100 == 0) {
				System.out.println("Block below: " + blockBelow);
				if (blockBelow == Blocks.dirt || blockBelow == Blocks.grass || blockBelow == Blocks.stone || blockBelow == Blocks.gravel) {
					System.out.println("On ground: " + entity.onGround);
					if (entity.onGround) {
						System.out.println("Sneaking: " + entity.isSneaking());
						if (!entity.isSneaking()) {
							System.out.println("Moving: " + entity.motionX);
							if (entity.motionX != 0) {
								if (entity.worldObj.getDifficulty() != EnumDifficulty.PEACEFUL) {
									System.out.println("ALL CHECKS PASSED");
									PrimalPacketHandler.INSTANCE.sendToServer(new PrimalToeStubPacket(event.player));
	}}}}}}}}

}
}

 

 

Packet (sends damage to be applied to player on server)

 

public class PrimalToeStubPacket implements IMessage {

private int playerId;

public PrimalToeStubPacket() {}

public PrimalToeStubPacket(EntityPlayer player) {
	this.playerId = player.getEntityId();
}

@Override
public void fromBytes(ByteBuf buffer) {
	this.playerId = buffer.readInt();
}

@Override
public void toBytes(ByteBuf buffer) {
	buffer.writeInt(playerId);
}

    public static class PrimalToeStubHandler implements IMessageHandler<PrimalToeStubPacket, IMessage> {

	@Override
    public IMessage onMessage(final PrimalToeStubPacket message, final MessageContext ctx) {
        IThreadListener mainThread = (WorldServer) ctx.getServerHandler().playerEntity.worldObj;
        mainThread.addScheduledTask(new Runnable() {
            @Override
            public void run() {
                Entity entity = ctx.getServerHandler().playerEntity;
    			if (entity instanceof EntityPlayer)
    			{
    				entity.attackEntityFrom(DamageSource.generic, 1.0F);
    			}
            }
        });
        return null;
    }
    
    }

}

 

 

(Side note: I just realized that I'm creating a playerId variable but not using it anywhere—I think that's a holdover from the thirst system that I started to implement based on something I read. But I'm not using the playerId in my thirst packet, either, and everything seems to be working fine in single player mode. Maybe it will become problematic with multiple players?)

 

Packet registration in CommonProxy:

 

public class CommonProxy {

public void preInit(FMLPreInitializationEvent e) {

	PrimalPacketHandler.INSTANCE.registerMessage(PrimalThirstHandler.class, PrimalThirstPacket.class, 0, Side.CLIENT);
	PrimalPacketHandler.INSTANCE.registerMessage(PrimalToeStubHandler.class, PrimalToeStubPacket.class, 1, Side.SERVER);

}

 

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I have been trying to make a server with forge but I keep running into an issue. I have jdk 22 installed as well as Java 8. here is the debug file  
    • it crashed again     What the console says : [00:02:03] [Server thread/INFO] [Easy NPC/]: [EntityManager] Server started! [00:02:03] [Server thread/INFO] [co.gi.al.ic.IceAndFire/]: {iceandfire:fire_dragon_roost=true, iceandfire:fire_lily=true, iceandfire:spawn_dragon_skeleton_fire=true, iceandfire:lightning_dragon_roost=true, iceandfire:spawn_dragon_skeleton_lightning=true, iceandfire:ice_dragon_roost=true, iceandfire:ice_dragon_cave=true, iceandfire:lightning_dragon_cave=true, iceandfire:cyclops_cave=true, iceandfire:spawn_wandering_cyclops=true, iceandfire:spawn_sea_serpent=true, iceandfire:frost_lily=true, iceandfire:hydra_cave=true, iceandfire:lightning_lily=true, iceandfireixie_village=true, iceandfire:myrmex_hive_jungle=true, iceandfire:myrmex_hive_desert=true, iceandfire:silver_ore=true, iceandfire:siren_island=true, iceandfire:spawn_dragon_skeleton_ice=true, iceandfire:spawn_stymphalian_bird=true, iceandfire:fire_dragon_cave=true, iceandfire:sapphire_ore=true, iceandfire:spawn_hippocampus=true, iceandfire:spawn_death_worm=true} [00:02:03] [Server thread/INFO] [co.gi.al.ic.IceAndFire/]: {TROLL_S=true, HIPPOGRYPH=true, AMPHITHERE=true, COCKATRICE=true, TROLL_M=true, DREAD_LICH=true, TROLL_F=true} [00:02:03] [Server thread/INFO] [ne.be.lo.WeaponRegistry/]: Encoded Weapon Attribute registry size (with package overhead): 41976 bytes (in 5 string chunks with the size of 10000) [00:02:03] [Server thread/INFO] [patchouli/]: Sending reload packet to clients [00:02:03] [Server thread/WARN] [voicechat/]: [voicechat] Running in offline mode - Voice chat encryption is not secure! [00:02:03] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Using server-ip as bind address: 0.0.0.0 [00:02:03] [Server thread/WARN] [ModernFix/]: Dedicated server took 22.521 seconds to load [00:02:03] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Voice chat server started at 0.0.0.0:25565 [00:02:03] [Server thread/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.player.Player from class tschipp.carryon.common.carry.CarryOnDataManager [00:02:03] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@2941ffd5 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 0 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 1 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 2 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 3 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 4 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 5 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 6 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 7 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 8 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 9 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 10 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 11 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 12 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 13 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 14 [00:02:19] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@ebc7ef2 [00:02:19] [Server thread/INFO] [minecraft/PlayerList]: ZacAdos[/90.2.17.162:49242] logged in with entity id 1062 at (-1848.6727005281205, 221.0, -3054.2468255848935) [00:02:19] [Server thread/ERROR] [ModernFix/]: Skipping entity ID sync for com.talhanation.smallships.world.entity.ship.Ship: java.lang.NoClassDefFoundError: net/minecraft/client/CameraType [00:02:19] [Server thread/INFO] [minecraft/MinecraftServer]: - Gloop - ZacAdos joined the game [00:02:19] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Updating all forceload tickets for cc56befd-d376-3526-a760-340713c478bd [00:02:19] [Server thread/INFO] [se.mi.te.da.DataManager/]: Sending data to client: ZacAdos [00:02:19] [Server thread/INFO] [voicechat/]: [voicechat] Received secret request of - Gloop - ZacAdos (17) [00:02:19] [Server thread/INFO] [voicechat/]: [voicechat] Sent secret to - Gloop - ZacAdos [00:02:21] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Successfully authenticated player cc56befd-d376-3526-a760-340713c478bd [00:02:22] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Successfully validated connection of player cc56befd-d376-3526-a760-340713c478bd [00:02:22] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Player - Gloop - ZacAdos (cc56befd-d376-3526-a760-340713c478bd) successfully connected to voice chat stop [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping the server [00:02:34] [Server thread/INFO] [mo.pl.ar.ArmourersWorkshop/]: stop local service [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players [00:02:34] [Server thread/INFO] [minecraft/ServerGamePacketListenerImpl]: ZacAdos lost connection: Server closed [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: - Gloop - ZacAdos left the game [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Updating all forceload tickets for cc56befd-d376-3526-a760-340713c478bd [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_end [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_nether [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (world): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage: All dimensions are saved [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Stopping IO worker... [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Stopped IO worker! [00:02:34] [Server thread/INFO] [Calio/]: Removing Dynamic Registries for: net.minecraft.server.dedicated.DedicatedServer@7dc879e1 [MineStrator Daemon]: Checking server disk space usage, this could take a few seconds... [MineStrator Daemon]: Updating process configuration files... [MineStrator Daemon]: Ensuring file permissions are set correctly, this could take a few seconds... [MineStrator Daemon]: Pulling Docker container image, this could take a few minutes to complete... [MineStrator Daemon]: Finished pulling Docker container image container@pterodactyl~ java -version openjdk version "17.0.10" 2024-01-16 OpenJDK Runtime Environment Temurin-17.0.10+7 (build 17.0.10+7) OpenJDK 64-Bit Server VM Temurin-17.0.10+7 (build 17.0.10+7, mixed mode, sharing) container@pterodactyl~ java -Xms128M -Xmx6302M -Dterminal.jline=false -Dterminal.ansi=true -Djline.terminal=jline.UnsupportedTerminal -p libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar:libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/net/minecraftforge/JarJarFileSystems/0.3.16/JarJarFileSystems-0.3.16.jar --add-modules ALL-MODULE-PATH --add-opens java.base/java.util.jar=cpw.mods.securejarhandler --add-opens java.base/java.lang.invoke=cpw.mods.securejarhandler --add-exports java.base/sun.security.util=cpw.mods.securejarhandler --add-exports jdk.naming.dns/com.sun.jndi.dns=java.naming -Djava.net.preferIPv6Addresses=system -DignoreList=bootstraplauncher-1.1.2.jar,securejarhandler-2.1.4.jar,asm-commons-9.5.jar,asm-util-9.5.jar,asm-analysis-9.5.jar,asm-tree-9.5.jar,asm-9.5.jar,JarJarFileSystems-0.3.16.jar -DlibraryDirectory=libraries -DlegacyClassPath=libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/net/minecraftforge/accesstransformers/8.0.4/accesstransformers-8.0.4.jar:libraries/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar:libraries/net/minecraftforge/eventbus/6.0.3/eventbus-6.0.3.jar:libraries/net/minecraftforge/forgespi/6.0.0/forgespi-6.0.0.jar:libraries/net/minecraftforge/coremods/5.0.1/coremods-5.0.1.jar:libraries/cpw/mods/modlauncher/10.0.8/modlauncher-10.0.8.jar:libraries/net/minecraftforge/unsafe/0.2.0/unsafe-0.2.0.jar:libraries/com/electronwill/night-config/core/3.6.4/core-3.6.4.jar:libraries/com/electronwill/night-config/toml/3.6.4/toml-3.6.4.jar:libraries/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar:libraries/net/jodah/typetools/0.8.3/typetools-0.8.3.jar:libraries/net/minecrell/terminalconsoleappender/1.2.0/terminalconsoleappender-1.2.0.jar:libraries/org/jline/jline-reader/3.12.1/jline-reader-3.12.1.jar:libraries/org/jline/jline-terminal/3.12.1/jline-terminal-3.12.1.jar:libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar:libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar:libraries/net/minecraftforge/JarJarSelector/0.3.16/JarJarSelector-0.3.16.jar:libraries/net/minecraftforge/JarJarMetadata/0.3.16/JarJarMetadata-0.3.16.jar:libraries/net/minecraftforge/fmlloader/1.19.2-43.3.0/fmlloader-1.19.2-43.3.0.jar:libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-extra.jar:libraries/com/github/oshi/oshi-core/5.8.5/oshi-core-5.8.5.jar:libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:libraries/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar:libraries/com/mojang/authlib/3.11.49/authlib-3.11.49.jar:libraries/com/mojang/brigadier/1.0.18/brigadier-1.0.18.jar:libraries/com/mojang/datafixerupper/5.0.28/datafixerupper-5.0.28.jar:libraries/com/mojang/javabridge/1.2.24/javabridge-1.2.24.jar:libraries/com/mojang/logging/1.0.0/logging-1.0.0.jar:libraries/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar:libraries/io/netty/netty-buffer/4.1.77.Final/netty-buffer-4.1.77.Final.jar:libraries/io/netty/netty-codec/4.1.77.Final/netty-codec-4.1.77.Final.jar:libraries/io/netty/netty-common/4.1.77.Final/netty-common-4.1.77.Final.jar:libraries/io/netty/netty-handler/4.1.77.Final/netty-handler-4.1.77.Final.jar:libraries/io/netty/netty-resolver/4.1.77.Final/netty-resolver-4.1.77.Final.jar:libraries/io/netty/netty-transport/4.1.77.Final/netty-transport-4.1.77.Final.jar:libraries/io/netty/netty-transport-classes-epoll/4.1.77.Final/netty-transport-classes-epoll-4.1.77.Final.jar:libraries/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-x86_64.jar:libraries/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-aarch_64.jar:libraries/io/netty/netty-transport-native-unix-common/4.1.77.Final/netty-transport-native-unix-common-4.1.77.Final.jar:libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar:libraries/net/java/dev/jna/jna/5.10.0/jna-5.10.0.jar:libraries/net/java/dev/jna/jna-platform/5.10.0/jna-platform-5.10.0.jar:libraries/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar:libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar:libraries/org/apache/logging/log4j/log4j-api/2.17.0/log4j-api-2.17.0.jar:libraries/org/apache/logging/log4j/log4j-core/2.17.0/log4j-core-2.17.0.jar:libraries/org/apache/logging/log4j/log4j-slf4j18-impl/2.17.0/log4j-slf4j18-impl-2.17.0.jar:libraries/org/slf4j/slf4j-api/1.8.0-beta4/slf4j-api-1.8.0-beta4.jar cpw.mods.bootstraplauncher.BootstrapLauncher --launchTarget forgeserver --fml.forgeVersion 43.3.0 --fml.mcVersion 1.19.2 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20220805.130853 [00:02:42] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [00:02:42] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-12-amd64 [00:02:43] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.0/fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.0/javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.0/lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.0/mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:44] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [00:02:44] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /home/container/mods/resourcefullib-forge-1.19.2-1.1.24.jar [00:02:44] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection Latest log [29Mar2024 00:02:42.803] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [29Mar2024 00:02:42.805] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-12-amd64 [29Mar2024 00:02:43.548] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [29Mar2024 00:02:43.876] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.0/fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.877] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.0/javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.877] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.0/lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.878] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.0/mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:44.033] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [29Mar2024 00:02:44.034] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /home/container/mods/resourcefullib-forge-1.19.2-1.1.24.jar [29Mar2024 00:02:44.034] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection
    • I am unable to do that. Brigadier is a mojang library that parses commands.
    • Hi, i appreciate the answer. I would love to do that, but we have active players with all their belongings in SSN. Also this mod is really handy and they would be mad if we removed it. Are you really certain that SSN is causing this? It would require lots of work to test it and SSN was not really an issue before we removed Fast Suite. Can it be related somehow? I will provide you with log before removing FS. PasteBin: https://pastebin.com/Y5EpLpNe (crash before removing Fast Suite, which I suspected to be a problem from some crash before)
  • Topics

×
×
  • Create New...

Important Information

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