Hanashi Posted September 6, 2017 Posted September 6, 2017 (edited) Hi, I need the player object client-side on multiplayer. I found "Minecraft.getMinecraft().thePlayer" in the WWW, but "thePlayer" is not a property of class "Minecraft". How can I get the local player? kind regards Hanashi Edited September 6, 2017 by Hanashi Quote
That_Martin_Guy Posted September 6, 2017 Posted September 6, 2017 Minecraft.getMinecraft().player, although keep in mind that this will crash if you run it in common code. Quote
Hanashi Posted September 6, 2017 Author Posted September 6, 2017 3 minutes ago, That_Martin_Guy said: Minecraft.getMinecraft().player, although keep in mind that this will crash if you run it in common code. Thank you, but the result is every time "null". Quote
That_Martin_Guy Posted September 6, 2017 Posted September 6, 2017 Did you run it in common code? Preferably you should get the object in the ClientProxy. Can't really say much more than that since I'm pretty terrible at explaining things, honestly. Quote
Hanashi Posted September 6, 2017 Author Posted September 6, 2017 2 minutes ago, diesieben07 said: Post more of your code. What are you trying to achieve? Currently I tested this: @SubscribeEvent public void onClientConnect(FMLNetworkEvent.ClientConnectedToServerEvent e) { EntityPlayerSP player = Minecraft.getMinecraft().player; System.out.println(player); } I would get the player name and later in another event the position, but I need the player entity for this. @That_Martin_Guy what did you mean with "common code"? Quote
Hanashi Posted September 6, 2017 Author Posted September 6, 2017 4 minutes ago, diesieben07 said: At that point the player is not set up yet. Once again: What are you trying to achieve (not: How are you trying to program it)? I would only get the position/coordinates of the local player and print it in the console. Quote
Hanashi Posted September 6, 2017 Author Posted September 6, 2017 2 minutes ago, diesieben07 said: What for? Why on the client? I would create a client side wrapper for a teamspeak 3 client. For this I need the position of the local player and all other player on the server. Quote
Hanashi Posted September 6, 2017 Author Posted September 6, 2017 Just now, diesieben07 said: Ok. And you need that in that specific event, because...? For testing. I will use it in another event later, but currently I need this event for debugging. Quote
Hanashi Posted September 6, 2017 Author Posted September 6, 2017 4 minutes ago, diesieben07 said: Well, that event is before there is a player, that is why you are getting null. Thank you that's the solution now it works (I tested with a little timer). Quote
Recommended Posts
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.