Random player pick system

Status
Not open for further replies.
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) :)
 
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.
Back
Top