Jump to content

Recommended Posts

Posted

Hello!

 

I am creating a Version Checker for my mod but I want the message to display not only in single player worlds, but when you join a server as well. 

 

    @SubscribeEvent
    public void onConnectedToServerEvent(FMLNetworkEvent.ClientConnectedToServerEvent event) {
        Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText("PlaceHolder"));
    }

 

The problem is that the game can't seem to get the player and returns a Null Pointer Exception.

 

I've tried tons of ways to get around this but I haven't figured one out.

 

Thank you for the help!

Posted

Thanks for your help, I tried PlayerLoggedInEvent but I wasn't sure how to make it show even when you join a server, it only seems to work on Single Player worlds.

Posted (edited)

Ok i think PlayerLoggedInEvent is severside, but it goes with EntityJoinWorldEvent, just check if it is the Entityplayer on the Client.

 

Also i think ClientConnectedToServerEvent is called before the EntityPlayer is constructed, so thats to early to send a message.

Edited by NextInima
Posted

That worked for me, but maybe @diesieben07 have a better solution.

Quote

 

    @SubscribeEvent
    public void onEntityJoinWorldEvent(EntityJoinWorldEvent event) {
        if (event.getEntity().world.isRemote && event.getEntity() == Minecraft.getMinecraft().player) {

            EntityPlayer player = (EntityPlayer) event.getEntity(); 
            String message = "You logged in";
            player.sendMessage(new TextComponentString(message));
            }
    }

 

 

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.