• 🏆 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!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

Dialog Button

Status
Not open for further replies.
Level 13
Joined
Feb 18, 2009
Messages
1,381
Integer variable.
At intialization, set Integer[1] = Hero 1 and Integer[2] = Hero 2.

Then when button is click, make a random, and IF/THEN/ELSE if i remember right.
 
Level 13
Joined
Sep 14, 2008
Messages
1,407
First of all you create a unit array and put in ALL units you want to include in the random.

Like:

RandomUnits[1]=UnitX
RandomUnits[2]=UnitY
RandomUnits[3]=UnitZ
...

Then you add this lines to the trigger which referres to the random button:

Create unit of type RandomUnits[Integer - random int between 1 and ArrayLength(you must put in the value here)] for triggering player
 
Level 8
Joined
Apr 30, 2009
Messages
338
go to file-preferences and uncheck "use fixed random seed" in the tab called Test Map
 
Status
Not open for further replies.
Top