Jump to content

Recommended Posts

Posted

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.

Posted

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-

Posted

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.

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.