• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

Random player pick system

Status
Not open for further replies.
Level 5
Joined
Jan 5, 2012
Messages
116
Hello everyone! When my map starts you are asked whether you want to be the Bad Wolf or not and you click Yes or No. Then, I need to pick a random player from those that clicked Yes and make him the Wolf (Something like the Troll pick in Troll & Elves). How can I do that?
 
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