• 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.
  • Create a faction for Warcraft 3 and enter Hive's 19th Techtree Contest: Co-Op Commanders! Click here to enter!
  • Create a void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 21st Texturing Contest: Upgrade is now concluded, time to vote for your favourite set of icons! Click here to vote!

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) :)
 
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