Posted August 7, 201312 yr The title explains everything. How would I randomly chose a player? Is it possible? If you know please tell me, or guide me to a tutorial if needed. Not new to java >> New to modding.
August 7, 201312 yr get the list of player, pick one at random must be executed server side: List playerList = MinecraftServer.getServer().getConfigurationManager().playerEntityList; int selectedPlayer = (int)(Math.random()*playerList.size()); EntityPlayer theChosenOne = playerList.get(selectedPlayer); //do stuff with the chosen one how to debug 101:http://www.minecraftforge.net/wiki/Debug_101 -hydroflame, author of the forge revolution-
August 7, 201312 yr Assuming you know a little about forge/mcp, I'd say start in net.minecraft.server.MinecraftServer. Theres a function "func_82010_a" that should be able to help you get list of players. edit: dangit hydro
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.