• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Random player pick system

Status
Not open for further replies.
Level 28
Joined
Jan 26, 2007
Messages
4,789
The easiest would be:

If they clicked "Yes", set them in a player group (Variable you created).
  • Player Group - Add (Triggering player) to playerGroup
Then use the function "Pick Random Player from Player Group".
  • Set badWolf = (Random player from playerGroup)
Edit: if nobody clicked "yes" (player group is empty), then pick a random player from (All Players) :)
 
Level 7
Joined
Jan 30, 2011
Messages
267
you save all players, that do yes, in an array (beginning at [0] )
dont forget to have an integer i that stores the total amount of players that did yes
when all players have decided, do GetRandomInt(0, i-1) and take the player at that array position as wolf

EDIT: apocalypse way is easier^^
 
Status
Not open for further replies.
Top