Multiboard Doubt. help!

Nocturne

New Member
Reaction score
1
Hello
im learning how make a multiboard and i just read the tutorial "Multiboard I" , but i dont know how to add a counter of deads and kills(i dont know how make the triggers) i hope somebody can help me:)
 

Tom Jones

N/A
Reaction score
437
Just register when a units dies, set increase a varible for the trigger unit and the killing unit, update the multiboard:
Code:
Multiboard
    Events
        Unit - A unit Dies
    Conditions
    Actions
        Set Kills[(Player number of (Owner of (Killing unit)))] = (Kills[(Player number of (Owner of (Killing unit)))] + 1)
        Multiboard - Set the text for (Last created multiboard) item in column *Kills Column*, row *Player Row* to (String(Kills[(Player number of (Owner of (Killing unit)))]))
        Set Deaths[(Player number of (Owner of (Triggering unit)))] = (Deaths[(Player number of (Owner of (Triggering unit)))] + 1)
        Multiboard - Set the text for (Last created multiboard) item in column *Kills Colums*, row *Player Column* to (String(Deaths[(Player number of (Owner of (Triggering unit)))]))
 

Nocturne

New Member
Reaction score
1
what type of variables are Kills and Deaths?

and if i want to add a condition for difference between heroes and units, for example:

Code:
Deaths Count
    Events
        Unit - A unit Dies
    Conditions
        ((Dying unit) is A Hero) Equal to True
    Actions
        Set Deaths[(Player number of (Owner of (Triggering unit)))] = (Deaths[(Player number of (Owner of (Triggering unit)))] + 1)
        Multiboard - Set the text for (Last created multiboard) item in column *Kills Colums*, row *Player Column* to (String(Deaths[(Player number of (Owner of (Triggering unit)))]))

Code:
Kills Count
    Events
        Unit - A unit Dies
    Conditions
        ((Killing unit) belongs to an enemy of (Owner of (Dying unit))) Equal to True
        ((Dying unit) is A Hero) Equal to True
    Actions
        Set Kills[(Player number of (Owner of (Killing unit)))] = (Kills[(Player number of (Owner of (Killing unit)))] + 1)
        Multiboard - Set the text for (Last created multiboard) item in column *Kills Column*, row *Player Row* to (String(Kills[(Player number of (Owner of (Killing unit)))]))

It is ok?
 

cleeezzz

The Undead Ranger.
Reaction score
268
Conditions are fine.

kill and death are integer variables, make sure to check array, size = (number of players total)
 

Nocturne

New Member
Reaction score
1
i was experimenting that in the map Multiboard I.w3x of the tutorial but i make something wrong...

when i kill a another hero the count KILL increase perfectly, like this:
Kills / Deaths
6 / 0

but when i die the two counters become 1
Kills / Deaths
1 / 1
and the Kills counter doesnt work more :mad:

if i die again increases the 2 counters
Kills / Deaths
2 / 2
:nuts:

what is wrong? help please :confused:
any ideas?
 

Choppa

www.warcraft-gamers.po.gs
Reaction score
59
Uhh dude... Do you really think we can help from the information you gave?

Pretend you don't know anything about your trigger, then read what you just said...

Show your trigger...
 

Nocturne

New Member
Reaction score
1
Code:
Multiboard Flag
    Events
        Time - Elapsed game time is 0.00 seconds
    Conditions
    Actions
        Multiboard - Create a multiboard with 3 columns and (4 + (Number of players in players_playing)) rows, titled Information
        Set multiboard_flag = (Last created multiboard)
        -------- row 1, colum 1, 2, 3. --------
        Multiboard - Set the text for multiboard_flag item in column 1, row 1 to (cc_players[0] + ([Team] + cc_endtag))
        Multiboard - Set the text for multiboard_flag item in column 2, row 1 to (cc_players[0] + ([Score] + cc_endtag))
        Multiboard - Set the text for multiboard_flag item in column 3, row 1 to (cc_players[0] + ([Owns the flag] + cc_endtag))
        -------- row 2, colum 1, 2, 3. --------
        -------- red team --------
        Multiboard - Set the text for multiboard_flag item in column 1, row 2 to (cc_players[1] + (Red Team + cc_endtag))
        Multiboard - Set the text for multiboard_flag item in column 2, row 2 to (String(team_score[1]))
        Multiboard - Set the text for multiboard_flag item in column 3, row 2 to string_owns_flag[2]
        -------- row 3, colum 1, 2, 3. --------
        -------- blue team --------
        Multiboard - Set the text for multiboard_flag item in column 1, row 3 to (cc_players[2] + (Blue Team + cc_endtag))
        Multiboard - Set the text for multiboard_flag item in column 2, row 3 to (String(team_score[2]))
        Multiboard - Set the text for multiboard_flag item in column 3, row 3 to string_owns_flag[2]
        -------- row 4, colum 1, 2, 3. --------
        Multiboard - Set the text for multiboard_flag item in column 1, row 4 to (cc_players[0] + ([Player Name] + cc_endtag))
        Multiboard - Set the text for multiboard_flag item in column 2, row 4 to (cc_players[0] + ([Flags obtained] + cc_endtag))
        Multiboard - Set the text for multiboard_flag item in column 3, row 4 to (cc_players[0] + ([Flags lost] + cc_endtag))
        -------- loop part. --------
        For each (Integer A) from 1 to (4 + (Number of players in players_playing)), do (Actions)
            Loop - Actions
                -------- Multiboard style. All icons have been hidden. --------
                Multiboard - Set the display style for multiboard_flag item in column 1, row (Integer A) to Show text and Hide icons
                Multiboard - Set the display style for multiboard_flag item in column 2, row (Integer A) to Show text and Hide icons
                Multiboard - Set the display style for multiboard_flag item in column 3, row (Integer A) to Show text and Hide icons
                -------- Multiboard width. --------
                Multiboard - Set the width for multiboard_flag item in column 1, row (Integer A) to 9.00% of the total screen width
                Multiboard - Set the width for multiboard_flag item in column 2, row (Integer A) to 9.00% of the total screen width
                Multiboard - Set the width for multiboard_flag item in column 3, row (Integer A) to 9.00% of the total screen width
                -------- Player adding part. --------
                -------- Player name. --------
                Set player_row = (player_row + 1)
                Set player_colour = (player_colour + 1)
                Multiboard - Set the text for multiboard_flag item in column 1, row player_row to (cc_players[player_colour] + ((Name of (Player(player_colour))) + cc_endtag))
                -------- Player flags. --------
                Multiboard - Set the text for multiboard_flag item in column 2, row player_row to (String(Kills[player_colour]))
                -------- Player flags lost --------
                Multiboard - Set the text for multiboard_flag item in column 3, row player_row to (String(Deaths[player_colour]))
        Multiboard - Show multiboard_flag

Code:
Kills
    Events
        Unit - A unit Dies
    Conditions
        ((Killing unit) belongs to an enemy of (Owner of (Dying unit))) Equal to True
        ((Dying unit) is A Hero) Equal to True
    Actions
        Set Kills[(Player number of (Owner of (Killing unit)))] = (Kills[(Player number of (Owner of (Killing unit)))] + 1)
        Multiboard - Set the text for (Last created multiboard) item in column 2, row (4 + (Player number of (Owner of (Casting unit)))) to (String(Kills[(Player number of (Owner of (Killing unit)))]))

Code:
Deaths
    Events
        Unit - A unit Dies
    Conditions
        ((Dying unit) is A Hero) Equal to True
    Actions
        Set Deaths[(Player number of (Owner of (Triggering unit)))] = (Deaths[(Player number of (Owner of (Triggering unit)))] + 1)
        Multiboard - Set the text for multiboard_flag item in column 3, row (4 + (Player number of (Owner of (Triggering unit)))) to (String(Deaths[(Player number of (Triggering player))]))
 

Nocturne

New Member
Reaction score
1
the most diffucult trigger that I have modified :banghead:
ive search any error but nothing...:confused:
any help will be grateful:)
 

Almighty11

New Member
Reaction score
5
Hey I'm not very experienced either but I took a small look at your
code and didnt find anything wrong.
Maybe the fact that two identical events matching same exact condition
are running can make one of the two time; cos I've found nothing wrong
with the triggers. Are there any other things or triggers in the map involved?
 

Terrabull

Veteran Member (Done that)
Reaction score
38
Add the condition "Killing Unit is not equal to No Unit" to both triggers. Looks like some bad data gets mixed in when you die which screws everything up.
Also, which player owns the units that kill your guy?
 

Choppa

www.warcraft-gamers.po.gs
Reaction score
59
Code:
Deaths
    Events
        Unit - A unit Dies
    Conditions
        ((Dying unit) is A Hero) Equal to True
    Actions
        Set Deaths[(Player number of (Owner of [B](Triggering unit)[/B]))] = (Deaths[(Player number of (Owner of [B](Triggering unit)[/B]))] + 1)
        Multiboard - Set the text for multiboard_flag item in column 3, row (4 + (Player number of (Owner of [B](Triggering unit)[/B]))) to (String(Deaths[(Player number of [B](Triggering player)[/B])]))

There are more specific things then Trigger unit/player.
 

Almighty11

New Member
Reaction score
5
Well if the problem is about running the two triggers with these exact same events and conditions fullfilled, then using more specific things then triggering unit/player should really work, because it wouldnt matter the run order; correct me if im wrong. You should just test it.
 

Nocturne

New Member
Reaction score
1
the main trigger is fine... i think....

Code:
Deaths
    Events
        Unit - A unit Dies
    Conditions
        ((Dying unit) is A Hero) Equal to True
    Actions
        Set Deaths[(Player number of ([COLOR="Red"]Owner of (Triggering unit)[/COLOR]))] = (Deaths[(Player number of ([COLOR="Red"]Owner of (Triggering unit[/COLOR])))] + 1)
        Multiboard - Set the text for multiboard_flag item in column 3, row (4 + (Player number of [COLOR="Red"](Owner of (Triggering unit))[/COLOR])) to (String(Deaths[([COLOR="Red"]Player number of (Triggering player[/COLOR]))]))

Code:
Kills
    Events
        Unit - A unit Dies
    Conditions
        ((Killing unit) belongs to an enemy of (Owner of (Dying unit))) Equal to True
        ((Dying unit) is A Hero) Equal to True
    Actions
        Set Kills[(Player number of (Owner of (Killing unit)))] = (Kills[(Player number of (Owner of (Killing unit)))] + 1)
        Multiboard - Set the text for (Last created multiboard) item in column 2, row (4 + (Player number of ([COLOR="Red"]Owner of (Casting unit)[/COLOR]))) to (String(Kills[(Player number of [COLOR="Red"](Owner of (Killing unit)))]))[/COLOR]

im not sure, but the red parts maybe are wrong...:confused:
 

Quauhtli

I have the right to remain silent.
Reaction score
62
Multiboard - Set the text for multiboard_flag item in column 3, row (4 + (Player number of (Owner of (Triggering unit)))) to (String(Deaths[(Player number of (Triggering player))]))

Are the blacked ones supposed to be different?
 

Nocturne

New Member
Reaction score
1
>Are the blacked ones supposed to be different?
Today 02:57 PM

i think that red parts are wrong
but i dont sure
 

Quauhtli

I have the right to remain silent.
Reaction score
62
I was pointing out that you should change them.
And what exactly happened at 2:57 PM? There is a great time difference so I have no idea which post you are talking about.
 

Nocturne

New Member
Reaction score
1
when i copy and paste your message also paste the date... forget that:)

if someone want, i can upload the map for anyone can see whats happend
 
M

Mr.Banankaka

Guest
Just combine the two triggers and change a few things to make it look like this:

Code:
Multiboard Trigger
    Events
        Unit - A unit Dies
    Conditions
        ((Dying unit) is A Hero) Equal to True
    Actions
        Set Deaths[(Player number of (Owner of (Dying unit)))] = ((Player number of (Owner of (Dying unit))) + 1)
        Set Kills[(Player number of (Owner of (Killing unit)))] = ((Player number of (Owner of (Killing unit))) + 1)
        Multiboard - Set the text for (Last created multiboard) item in column 1, row 1 to (String(Deaths[(Player number of (Owner of (Dying unit)))]))
        Multiboard - Set the text for (Last created multiboard) item in column 1, row 1 to (String(Kills[(Player number of (Owner of (Killing unit)))]))

You´ll have to change the column and row numbers in the trigger but you´ll probably make that of you own.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Ghan Ghan:
    Still lurking
    +3
  • 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

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top