• Check out the results of the Techtree Contest #19!
  • 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 void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 22nd Icon Contest: Creep Abilities is now concluded, time to vote for your favourite set of icons! Click here to vote!

Multiboard help.

Status
Not open for further replies.
Level 3
Joined
Apr 27, 2005
Messages
45
First of all i have never made multiboards.
are there any maps with multiboard tutorials :D
or any websites...

and 1 thing more...

Multiboard - Set the width for (Last created multiboard) item in column 1, row 1 to 7.00% of the total screen width

must i do this for every column and row ? or is there easyer way :)
 
Darklord- said:
Multiboard - Set the width for (Last created multiboard) item in column 1, row 1 to 7.00% of the total screen width

must i do this for every column and row ? or is there easyer way :)

There is an easier way :P. Set the column to 0 and row to 0. Then it applies to all columns and rows even if there's 5299620 of them.
 
if you want specific column to have certain width, do the "for interger A".

sorta like this.

Code:
For each (Integer A) from 1 to 15, do (Actions)
    Loop - Actions
        Multiboard - Set the width for (Last created multiboard) item in column 1, row (Integer A) to 13.00% of the total screen width
        Multiboard - Set the width for (Last created multiboard) item in column 2, row (Integer A) to 2.50% of the total screen width
        Multiboard - Set the width for (Last created multiboard) item in column 3, row (Integer A) to 0.90% of the total screen width
        Multiboard - Set the width for (Last created multiboard) item in column 4, row (Integer A) to 2.50% of the total screen width
 
lol u guys are the best :d
well here is what i have made :d

Code:
Multiboard
    Events
        Time - Elapsed game time is 0.10 seconds
    Conditions
    Actions
        Multiboard - Create a multiboard with 3 columns and 9 rows, titled Golem Revolution v1...
        Multiboard - Set the text for (Last created multiboard) item in column 1, row 1 to Players
        Multiboard - Set the icon for (Last created multiboard) item in column 1, row 1 to ReplaceableTextures\WorldEditUI\Editor-MultipleUnits.blp
        Multiboard - Set the text for (Last created multiboard) item in column 2, row 1 to Golems
        Multiboard - Set the icon for (Last created multiboard) item in column 2, row 1 to ReplaceableTextures\CommandButtons\BTNArmorGolem.blp
        Multiboard - Set the text for (Last created multiboard) item in column 3, row 1 to Kills
        Multiboard - Set the icon for (Last created multiboard) item in column 3, row 1 to ReplaceableTextures\CommandButtons\BTNAnimalWarTraining.blp
        Multiboard - Set the width for (Last created multiboard) item in column 1, row (Integer A) to 7.00% of the total screen width
        Multiboard - Set the width for (Last created multiboard) item in column 2, row (Integer A) to 6.00% of the total screen width
        Multiboard - Set the width for (Last created multiboard) item in column 3, row (Integer A) to 5.00% of the total screen width
        Multiboard - Set the text for (Last created multiboard) item in column 1, row 2 to (Name of Player 1 (Red))
        Multiboard - Set the text for (Last created multiboard) item in column 1, row 3 to (Name of Player 2 (Blue))
        Multiboard - Set the text for (Last created multiboard) item in column 1, row 4 to (Name of Player 3 (Teal))
        Multiboard - Set the text for (Last created multiboard) item in column 1, row 5 to (Name of Player 4 (Purple))
        Multiboard - Set the text for (Last created multiboard) item in column 1, row 6 to (Name of Player 5 (Yellow))
        Multiboard - Set the text for (Last created multiboard) item in column 1, row 7 to (Name of Player 6 (Orange))
        Multiboard - Set the text for (Last created multiboard) item in column 1, row 8 to (Name of Player 7 (Green))
        Multiboard - Set the text for (Last created multiboard) item in column 1, row 9 to (Name of Player 8 (Pink))
        Multiboard - Minimize (Last created multiboard)

can some tweak this please :)
i want the names to be each player colors. and how do i remove the icon from the front of the name :d
 
------------------------
Set colorstring[1] = |cffFF0000
Set colorstring[2] = |cff0000FF
Set colorstring[3] = |cff8080FF
Set colorstring[4] = |cff004080
Set colorstring[5] = |cffFFFF00
Set colorstring[5] = |cffFFFF00
Set colorstring[6] = |cffFF8000
Set colorstring[7] = |cff808040
Set colorstring[8] = |cffFF80C0
Set colorstring[9] = |cff808080
Set colorstring[10] = |cff00FFFF
Set colorstring[11] = |cff008080
Set colorstring[12] = |cff804000
------------------------
Playergroup - Pick every player in (All players matching ((((Matching player) controller) Gleich User) and (((Matching player) slot status) equal plays))) and do (Actions)
Schleifen - Aktionen
Multiboard - Set the text for Multiboard item in column 1, row playerrow[(Player number of (Picked player))] to ((colorstring[(Player number of (Picked player))] + (Name of (Picked player))) + |r)
--------------------------
Multiboard - Set the display style for Multiboard item in column 0, row 0 to show text and hide icons
--------------------------

excerpts of my multiboard. Should help you i think ;)
 
Status
Not open for further replies.
Back
Top