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

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!

Quote

I think its better you use PlayerLoggedInEvent but i do not know if you can use it on the client side... i will test it... see you again in a few min.

see last post.

Edited by NextInima

  • Author

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.

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

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

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.