Posted October 7, 201312 yr Hello I wounder if anybody know how to get the players username during the preinit and/or init stage. The Minecraft.getMinecraft().thePlayer.username doesn't work until you load the world. Thank you for taking the time
October 7, 201312 yr The Minecraft.getMinecraft().thePlayer.username doesn't work until you load the world. No shit, there isn't a player entity until they log into a world. You're going to need to backtrack the EntityPlayer creation to figure out where the username comes from. 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.
October 7, 201312 yr Author Yes, i know there isn't. That's what i meant. I have tried to backlog but can't find anything so thats why I am asking. The only place I have seen any traces is in the FMLTweaker but there is no instance to that...
October 8, 201312 yr I am pretty sure that the username is stored in the current session. I believe a new session is created when you log in. I am Mew. The Legendary Psychic. I behave oddly and am always playing practical jokes. I have also found that I really love making extremely long and extremely but sometimes not so descriptive variables. Sort of like what I just did there
October 8, 201312 yr Author Yes, acctually just before i checked this post i found it. I use reflection to get access to the session in minecraft. Then i call the func. func_111285_a() to return the username. Thanks for the post anyway
October 21, 201312 yr No need for fancy reflection. Stick this in your init section, and it prints the username to the log at startup: System.out.println("The username is...." + Minecraft.getMinecraft().getSession().getUsername() + "!"); http://s13.postimg.org/z9mlly2av/siglogo.png[/img] My mods (Links coming soon) Cities | Roads | Remula | SilvaniaMod | MoreStats
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.