Needing a multiboard code

A couple incorrect color codes in the loading screen.

Most of them are "|c<color>", but should be "|cff<color>"


> (Item-class of (Last created item)) Equal to (Item-class of (Item being manipulated))

There is no "last created item".

> Hero - Drop (Item carried by (Triggering unit) of type (Item-type of (Picked item))) from (Transporting unit)

There is no "transporting unit".

Actually, the map crashes on any item you pick up.
It doesn't anymore if you turn off that "items map" trigger.

What's it supposed to do?


Why is the start location not on the Wisp?
Or, at least, some pan camera that would bring me there at the start?


I guess the category "stuff" is for testing something?


> UT Sounds

Looks familiar...


Under "Heroes", you shouldn't use "Unit - Kill Rogue 0083 <gen>"... remove those units if needed.
Or simply hide them.
If you kill them, given they are Heroes, your team gets a free kill...


You do not need all of those "Do nothing" in multi-line "if then else"s.
They aren't doing anything anyway.


My Hero didn't revive...


Your Hero descriptions leak, and will most likely not remove the correct floating text,
change them to:
Code:
Floating Text - Create floating text that reads Cunning Hero, adept... at (Center of Kelen text <gen>) with Z offset 120.00, using font size 8.00, color (100.00%, 100.00%, 100.00%), and 0.00% transparency
Floating Text - Change the lifespan of (Last created floating text) to 20.00 seconds
Floating Text - Change (Last created floating text): Disable permanence
Yes, that is all the actions already.
No variables or destroy needed.


Multiboard:

The Template multiboard assumes players 1 and 7 are computers.
And uses their scores for the team.

Given your map looks like it would be 12 players, you need to use a different score for the team.

Instead of this:
Code:
Actions
    Set Score_Kills[(Player number of (Owner of (Killing unit)))] = (Score_Kills[(Player number of (Owner of (Killing unit)))] + 1)
    Set Score_Deaths[(Player number of (Owner of (Dying unit)))] = (Score_Deaths[(Player number of (Owner of (Dying unit)))] + 1)
    If (((Owner of (Dying unit)) is in West_Players) Equal to True) then do (Set Score_Deaths[1] = (Score_Deaths[1] + 1)) else do (Do nothing)
    If (((Owner of (Dying unit)) is in East_Players) Equal to True) then do (Set Score_Deaths[7] = (Score_Deaths[7] + 1)) else do (Do nothing)
    Set TempInteger = (((Hero level of (Dying unit)) x 5) + 100)
    Player - Add TempInteger to (Owner of (Killing unit)) Current gold
    If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        If - Conditions
            ((Owner of (Killing unit)) is in West_Players) Equal to True
        Then - Actions
            Set Score_Kills[1] = (Score_Kills[1] + 1)
        Else - Actions
    If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        If - Conditions
            ((Owner of (Killing unit)) is in East_Players) Equal to True
        Then - Actions
            Set Score_Kills[7] = (Score_Kills[7] + 1)
        Else - Actions
    Trigger - Run Sort Multiboard <gen> (checking conditions)
    Multiboard - Set the text for (Last created multiboard) item in column 3, row MultiBoard_Spots[1] to (  + (String(Score_Kills[1])))
    Multiboard - Set the text for (Last created multiboard) item in column 3, row MultiBoard_Spots[7] to (  + (String(Score_Kills[7])))
    Multiboard - Set the text for (Last created multiboard) item in column 4, row MultiBoard_Spots[1] to (   + (String(Score_Deaths[1])))
    Multiboard - Set the text for (Last created multiboard) item in column 4, row MultiBoard_Spots[7] to (  + (String(Score_Deaths[7])))

use this:
Code:
Actions
    Set Score_Kills[(Player number of (Owner of (Killing unit)))] = (Score_Kills[(Player number of (Owner of (Killing unit)))] + 1)
    Set Score_Deaths[(Player number of (Owner of (Dying unit)))] = (Score_Deaths[(Player number of (Owner of (Dying unit)))] + 1)
    If (((Owner of (Dying unit)) is in West_Players) Equal to True) then do (Set Score_Deaths[0] = (Score_Deaths[0] + 1)) else do (Do nothing)
    If (((Owner of (Dying unit)) is in East_Players) Equal to True) then do (Set Score_Deaths[13] = (Score_Deaths[13] + 1)) else do (Do nothing)
    Set TempInteger = (((Hero level of (Dying unit)) x 5) + 100)
    Player - Add TempInteger to (Owner of (Killing unit)) Current gold
    If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        If - Conditions
            ((Owner of (Killing unit)) is in West_Players) Equal to True
        Then - Actions
            Set Score_Kills[0] = (Score_Kills[0] + 1)
        Else - Actions
    If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        If - Conditions
            ((Owner of (Killing unit)) is in East_Players) Equal to True
        Then - Actions
            Set Score_Kills[13] = (Score_Kills[13] + 1)
        Else - Actions
    Trigger - Run Sort Multiboard <gen> (checking conditions)
    Multiboard - Set the text for (Last created multiboard) item in column 3, row MultiBoard_Spots[0] to (  + (String(Score_Kills[0])))
    Multiboard - Set the text for (Last created multiboard) item in column 3, row MultiBoard_Spots[13] to (  + (String(Score_Kills[13])))
    Multiboard - Set the text for (Last created multiboard) item in column 4, row MultiBoard_Spots[0] to (   + (String(Score_Deaths[0])))
    Multiboard - Set the text for (Last created multiboard) item in column 4, row MultiBoard_Spots[13] to (  + (String(Score_Deaths[13])))

I changed all the references to "1" to "0", and all "7"s to "13".

This also needs a change in the "create multiboard" trigger:

Replace
Set MultiBoard_Spots[1] = TempInteger
with
Set MultiBoard_Spots[0] = TempInteger

and
Set MultiBoard_Spots[7] = TempInteger
with
Set MultiBoard_Spots[13] = TempInteger

After that, it should work.

Btw, there's no trigger yet to show the game time...



Anything I missed? :p


Good luck.
 
Wow, thanks for the help.


>once in a life time
So you must of been curious about the multiboard. What was on your mind, that made you want to see it so much?

>What's it supposed to do?

Its a trigger to make items that are already in inventory drop from hero? Unless you know a better way? And i also wanted to give a level requirement for each item.
 
Curiosity killed the cat. Dogs resist.


Hm, there's some post in the Free Trigger Code forum titled "This item only once" or so.
You may want to have a look.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • The Helper The Helper:
    News portal has been retired. Main page of site goes to Headline News forum now
  • The Helper The Helper:
    I am working on getting access to the old news portal under a different URL for those that would rather use that for news before we get a different news view.
  • Ghan Ghan:
    Easily done
    +1
  • The Helper The Helper:
    https://www.thehelper.net/pages/news/ is a link to the old news portal - i will integrate it into the interface somewhere when i figure it out
  • Ghan Ghan:
    Need to try something
  • Ghan Ghan:
    Hopefully this won't cause problems.
  • Ghan Ghan:
    Hmm
  • Ghan Ghan:
    I have converted the Headline News forum to an Article type forum. It will now show the top 20 threads with more detail of each thread.
  • Ghan Ghan:
    See how we like that.
  • The Helper The Helper:
    I do not see a way to go past the 1st page of posts on the forum though
  • The Helper The Helper:
    It is OK though for the main page to open up on the forum in the view it was before. As long as the portal has its own URL so it can be viewed that way I do want to try it as a regular forum view for a while
  • Ghan Ghan:
    Yeah I'm not sure what the deal is with the pagination.
  • Ghan Ghan:
    It SHOULD be there so I think it might just be an artifact of having an older style.
  • Ghan Ghan:
    I switched it to a "Standard" article forum. This will show the thread list like normal, but the threads themselves will have the first post set up above the rest of the "comments"
  • The Helper The Helper:
    I don't really get that article forum but I think it is because I have never really seen it used on a multi post thread
  • Ghan Ghan:
    RpNation makes more use of it right now as an example: https://www.rpnation.com/news/
  • The Helper The Helper:
  • The Helper The Helper:
    What do you think Tom?
  • tom_mai78101 tom_mai78101:
    I will have to get used to this.
  • tom_mai78101 tom_mai78101:
    The latest news feed looks good
  • The Helper The Helper:
    I would like to see it again like Ghan had it the first time with pagination though - without the pagination that view will not work but with pagination it just might...
  • The Helper The Helper:
    This drink recipe I have had more than a few times back in the day! Mind Eraser https://www.thehelper.net/threads/cocktail-mind-eraser.194720/

      The Helper Discord

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top