Quick Multiboard Help

Taishaku

New Member
Reaction score
9
So it's my first try at it. Tell me if this is good:

Code:
Multiboard
    Events
        Time - Elapsed game time is 0.00 seconds
    Conditions
    Actions
        Set PlayerColors[1] = |CFFFF0303
        Set PlayerColors[2] = |CFF0042FF
        Set PlayerColors[3] = |CFF1CE6B9
        Set PlayerColors[4] = |CFF540081
        Set PlayerColors[5] = |CFFFFFF01
        Set PlayerColors[6] = |CFFFE8A0E
        Set PlayerColors[7] = |CFF20C000
        Set PlayerColors[8] = |CFFE55BB0
        Set PlayerColors[9] = |CFF959697
        Set PlayerColors[10] = |CFF7EBFF1
        Set PlayerColors[11] = |CFF106246
        Set PlayerColors[12] = |CFF4E2A04
        Multiboard - Create a multiboard with 2 columns and ((Number of players in (All players matching (((Matching player) slot status) Equal to Is playing))) + 1) rows, titled Isles of Crucis v2
        Multiboard - Set the width for (Last created multiboard) item in column 0, row 0 to 8.00% of the total screen width
        Multiboard - Set the display style for (Last created multiboard) item in column 0, row 0 to Show text and Hide icons
        Set Position = 2
        -------- Header --------
        Multiboard - Set the text for (Last created multiboard) item in column 2, row 1 to Kills
        Multiboard - Set the width for (Last created multiboard) item in column 2, row 1 to 3.00% of the total screen width
        -------- Players --------
        For each (Integer A) from 1 to 12, do (Actions)
            Loop - Actions
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        ((Player((Integer A))) slot status) Equal to Is playing
                    Then - Actions
                        Set Rows[(Integer A)] = Position
                        Set Position = (Position + 1)
                        Multiboard - Set the text for (Last created multiboard) item in column 1, row Rows[(Player number of (Player((Integer A))))] to (PlayerColors[(Integer A)] + ((Name of (Player((Integer A)))) + |r))
                    Else - Actions
                        Do nothing
        Multiboard - Show (Last created multiboard)
        Multiboard - Minimize (Last created multiboard)

This one sets up the Multiboard at the start of the game for every player that is playing. It lists their BNet name in its color.



Code:
Multiboard Kills
    Events
        Unit - A unit Dies
    Conditions
        ((Owner of (Killing unit)) controller) Equal to User
    Actions
        Set KillCount[(Player number of (Owner of (Killing unit)))] = (KillCount[(Player number of (Owner of (Killing unit)))] + 1)
        Multiboard - Set the text for (Last created multiboard) item in column 2, row Rows[(Player number of (Owner of (Killing unit)))] to (String(KillCount[(Player number of (Owner of (Killing unit)))]))

This one adds 1 whenever that player's unit scores a kill.



Code:
Multiboard Leaver
    Events
        Player - Player 1 (Red) leaves the game
        Player - Player 2 (Blue) leaves the game
        Player - Player 3 (Teal) leaves the game
        Player - Player 4 (Purple) leaves the game
        Player - Player 5 (Yellow) leaves the game
        Player - Player 6 (Orange) leaves the game
        Player - Player 7 (Green) leaves the game
        Player - Player 8 (Pink) leaves the game
        Player - Player 9 (Gray) leaves the game
        Player - Player 10 (Light Blue) leaves the game
        Player - Player 11 (Dark Green) leaves the game
        Player - Player 12 (Brown) leaves the game
    Conditions
    Actions
        Multiboard - Set the text for (Last created multiboard) item in column 1, row Rows[(Player number of (Triggering player))] to |FF000000---LEAVER---|r...

This one labels leavers in black. This works, right? I haven't really tested this... since I need a warm body to do it.

Is black a good color? Anyone have a better color? I personally was thinking some faded gray color, but I don't know the hex for it.
 

Choppa

www.warcraft-gamers.po.gs
Reaction score
59
Store your (Last Created Multiboard) as a variable, always.

It's easier to look for a problem when you know there is one, so I suggest you test it and if it isn't working then come back and ask, although apart from the thing I mentioned before it looks good, but don't take my word for it i'm tired as f*ck.
 

Taishaku

New Member
Reaction score
9
Store your (Last Created Multiboard) as a variable, always.

It's easier to look for a problem when you know there is one, so I suggest you test it and if it isn't working then come back and ask, although apart from the thing I mentioned before it looks good, but don't take my word for it i'm tired as f*ck.

But I only have one multiboard. =\

Alright though.
 

Romek

Super Moderator
Reaction score
964
What exactly do you need help in?

Also:
Is black a good color? Anyone have a better color? I personally was thinking some faded gray color, but I don't know the hex for it.

|cFF###### TEXT |r
As long as all the #s are the same (0-9, A-F) then you'll have a grey colour.
For example:
|cFF555555 TEXT |r
|cFFAAAAAA TEXT |r
 

Taishaku

New Member
Reaction score
9
What exactly do you need help in?

Well, specifically, I want to know if this bit works:

Code:
Multiboard Leaver
    Events
        Player - Player 1 (Red) leaves the game
        Player - Player 2 (Blue) leaves the game
        Player - Player 3 (Teal) leaves the game
        Player - Player 4 (Purple) leaves the game
        Player - Player 5 (Yellow) leaves the game
        Player - Player 6 (Orange) leaves the game
        Player - Player 7 (Green) leaves the game
        Player - Player 8 (Pink) leaves the game
        Player - Player 9 (Gray) leaves the game
        Player - Player 10 (Light Blue) leaves the game
        Player - Player 11 (Dark Green) leaves the game
        Player - Player 12 (Brown) leaves the game
    Conditions
    Actions
        Set PlayerColors[1] = |CFFFF0303
        Set PlayerColors[2] = |CFF0042FF
        Set PlayerColors[3] = |CFF1CE6B9
        Set PlayerColors[4] = |CFF540081
        Set PlayerColors[5] = |CFFFFFF01
        Set PlayerColors[6] = |CFFFE8A0E
        Set PlayerColors[7] = |CFF20C000
        Set PlayerColors[8] = |CFFE55BB0
        Set PlayerColors[9] = |CFF959697
        Set PlayerColors[10] = |CFF7EBFF1
        Set PlayerColors[11] = |CFF106246
        Set PlayerColors[12] = |CFF4E2A04
        Multiboard - Set the text for Multiboard item in column 1, row Rows[(Player number of (Triggering player))] to (PlayerColors[(Player number of (Triggering player))] + (QUITTED + |r))

Looking at the above multiboard set-up trigger, does this change the name of the player who left to QUITTED in that player's color?

Also, I named the multiboard Multiboard. Creative, I know.
 

Romek

Super Moderator
Reaction score
964
Yes, it works.
Also, "Quitted" isn't a word.

Quit stays the same in all tenses.

Although, you could set those variables at map initialization. There's no need for them to be set everytime a player leaves.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though
  • Ghan Ghan:
    Heard Houston got hit pretty bad by storms last night. Hope all is well with TH.
  • The Helper The Helper:
    Power back on finally - all is good here no damage
    +2
  • V-SNES V-SNES:
    Happy Friday!
    +1
  • The Helper The Helper:
    New recipe is another summer dessert Berry and Peach Cheesecake - https://www.thehelper.net/threads/recipe-berry-and-peach-cheesecake.194169/

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top