
Hanashi
Members-
Content Count
7 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout Hanashi
-
Rank
Tree Puncher
-
[1.12] How to get Player entity on multiplayer client-side?
Hanashi replied to Hanashi's topic in Modder Support
Thank you that's the solution now it works (I tested with a little timer). -
[1.12] How to get Player entity on multiplayer client-side?
Hanashi replied to Hanashi's topic in Modder Support
For testing. I will use it in another event later, but currently I need this event for debugging. -
[1.12] How to get Player entity on multiplayer client-side?
Hanashi replied to Hanashi's topic in Modder Support
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. -
[1.12] How to get Player entity on multiplayer client-side?
Hanashi replied to Hanashi's topic in Modder Support
I would only get the position/coordinates of the local player and print it in the console. -
[1.12] How to get Player entity on multiplayer client-side?
Hanashi replied to Hanashi's topic in Modder Support
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"? -
[1.12] How to get Player entity on multiplayer client-side?
Hanashi replied to Hanashi's topic in Modder Support
Thank you, but the result is every time "null". -
Hanashi started following [1.12] How to get Player entity on multiplayer client-side?
-
[1.12] How to get Player entity on multiplayer client-side?
Hanashi posted a topic in Modder Support
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