is it just me or what?

JM08

New Member
Reaction score
2
i dont know if it's just my game but i made a multiboard which tracks total gold and lumber gathered.
now when either hits 8192, it reverts back to 0 on the board
would anyone be able to tell me how to fix this problem, if it's even possible?
 

Squishy

You can change this now in User CP.
Reaction score
127
I don't think you can get it to go higher than that. For future refrence, you right click the name of your trigger and select Copy as Text, then put it in code tags to post a trigger.
 

JM08

New Member
Reaction score
2
Multiboard
Events
Time - Elapsed game time is 1.00 seconds
Conditions
Actions
Multiboard - Create a multiboard with 3 columns and 5 rows, titled Total Gathered Re...
Multiboard - Set the text for (Last created multiboard) item in column 1, row 2 to |cffFF0000Player 1|r
Multiboard - Set the text for (Last created multiboard) item in column 1, row 3 to |cff0000FFPlayer 2|r
Multiboard - Set the text for (Last created multiboard) item in column 1, row 4 to |cff00FFFFPlayer 3|r
Multiboard - Set the text for (Last created multiboard) item in column 1, row 5 to |cff330066Player 4|r
Multiboard - Set the width for (Last created multiboard) item in column 1, row 1 to 6.50% of the total screen width
Multiboard - Set the width for (Last created multiboard) item in column 1, row 2 to 6.50% of the total screen width
Multiboard - Set the width for (Last created multiboard) item in column 1, row 3 to 6.50% of the total screen width
Multiboard - Set the width for (Last created multiboard) item in column 1, row 4 to 6.50% of the total screen width
Multiboard - Set the width for (Last created multiboard) item in column 1, row 5 to 6.50% of the total screen width
Multiboard - Set the width for (Last created multiboard) item in column 2, row 1 to 6.00% of the total screen width
Multiboard - Set the width for (Last created multiboard) item in column 2, row 2 to 6.00% of the total screen width
Multiboard - Set the width for (Last created multiboard) item in column 2, row 3 to 6.00% of the total screen width
Multiboard - Set the width for (Last created multiboard) item in column 2, row 4 to 6.00% of the total screen width
Multiboard - Set the width for (Last created multiboard) item in column 2, row 5 to 6.00% of the total screen width
Multiboard - Set the width for (Last created multiboard) item in column 3, row 1 to 6.00% of the total screen width
Multiboard - Set the width for (Last created multiboard) item in column 3, row 2 to 6.00% of the total screen width
Multiboard - Set the width for (Last created multiboard) item in column 3, row 3 to 6.00% of the total screen width
Multiboard - Set the width for (Last created multiboard) item in column 3, row 4 to 6.00% of the total screen width
Multiboard - Set the width for (Last created multiboard) item in column 3, row 5 to 6.00% of the total screen width
Multiboard - Set the display style for (Last created multiboard) item in column 1, row 1 to Hide text and Hide icons
Multiboard - Set the display style for (Last created multiboard) item in column 1, row 2 to Show text and Hide icons
Multiboard - Set the display style for (Last created multiboard) item in column 1, row 3 to Show text and Hide icons
Multiboard - Set the display style for (Last created multiboard) item in column 1, row 4 to Show text and Hide icons
Multiboard - Set the display style for (Last created multiboard) item in column 1, row 5 to Show text and Hide icons
Multiboard - Set the display style for (Last created multiboard) item in column 2, row 2 to Show text and Hide icons
Multiboard - Set the display style for (Last created multiboard) item in column 2, row 3 to Show text and Hide icons
Multiboard - Set the display style for (Last created multiboard) item in column 2, row 4 to Show text and Hide icons
Multiboard - Set the display style for (Last created multiboard) item in column 2, row 5 to Show text and Hide icons
Multiboard - Set the display style for (Last created multiboard) item in column 3, row 2 to Show text and Hide icons
Multiboard - Set the display style for (Last created multiboard) item in column 3, row 3 to Show text and Hide icons
Multiboard - Set the display style for (Last created multiboard) item in column 3, row 4 to Show text and Hide icons
Multiboard - Set the display style for (Last created multiboard) item in column 3, row 5 to Show text and Hide icons
Multiboard - Set the display style for (Last created multiboard) item in column 2, row 1 to Hide text and Show icons
Multiboard - Set the display style for (Last created multiboard) item in column 3, row 1 to Hide text and Show icons
Multiboard - Set the icon for (Last created multiboard) item in column 2, row 1 to UI\Feedback\Resources\ResourceGold.blp
Multiboard - Set the icon for (Last created multiboard) item in column 3, row 1 to UI\Feedback\Resources\ResourceLumber.blp
Multiboard - Set the text for (Last created multiboard) item in column 2, row 2 to (String(p1goldtotal[(Player 1 (Red) Total gold gathered)]))
Multiboard - Set the text for (Last created multiboard) item in column 2, row 3 to (String(p2goldtotal[(Player 2 (Blue) Total gold gathered)]))
Multiboard - Set the text for (Last created multiboard) item in column 2, row 4 to (String(p3goldtotal[(Player 3 (Teal) Total gold gathered)]))
Multiboard - Set the text for (Last created multiboard) item in column 2, row 5 to (String(p4goldtotal[(Player 4 (Purple) Total gold gathered)]))
Multiboard - Set the text for (Last created multiboard) item in column 3, row 2 to (String(p1totallumber[(Player 1 (Red) Total lumber gathered)]))
Multiboard - Set the text for (Last created multiboard) item in column 3, row 3 to (String(p2totallumber[(Player 2 (Blue) Total lumber gathered)]))
Multiboard - Set the text for (Last created multiboard) item in column 3, row 4 to (String(p3totallumber[(Player 3 (Teal) Total lumber gathered)]))
Multiboard - Set the text for (Last created multiboard) item in column 3, row 5 to (String(p4totallumber[(Player 4 (Purple) Total lumber gathered)]))


Recurring
Events
Time - Every 0.50 seconds of game time
Conditions
Actions
Set p1goldtotal[(Player 1 (Red) Total gold gathered)] = (Player 1 (Red) Total gold gathered)
Multiboard - Set the text for (Last created multiboard) item in column 2, row 2 to (String(p1goldtotal[(Player 1 (Red) Total gold gathered)]))
Set p2goldtotal[(Player 2 (Blue) Total gold gathered)] = (Player 2 (Blue) Total gold gathered)
Multiboard - Set the text for (Last created multiboard) item in column 2, row 3 to (String(p2goldtotal[(Player 2 (Blue) Total gold gathered)]))
Set p3goldtotal[(Player 3 (Teal) Total gold gathered)] = (Player 3 (Teal) Total gold gathered)
Multiboard - Set the text for (Last created multiboard) item in column 2, row 4 to (String(p3goldtotal[(Player 3 (Teal) Total gold gathered)]))
Set p4goldtotal[(Player 4 (Purple) Total gold gathered)] = (Player 4 (Purple) Total gold gathered)
Multiboard - Set the text for (Last created multiboard) item in column 2, row 5 to (String(p4goldtotal[(Player 4 (Purple) Total gold gathered)]))
Set p1totallumber[(Player 1 (Red) Total lumber gathered)] = (Player 1 (Red) Total lumber gathered)
Multiboard - Set the text for (Last created multiboard) item in column 3, row 2 to (String(p1totallumber[(Player 1 (Red) Total lumber gathered)]))
Set p2totallumber[(Player 2 (Blue) Total lumber gathered)] = (Player 2 (Blue) Total lumber gathered)
Multiboard - Set the text for (Last created multiboard) item in column 3, row 3 to (String(p2totallumber[(Player 2 (Blue) Total lumber gathered)]))
Set p3totallumber[(Player 3 (Teal) Total lumber gathered)] = (Player 3 (Teal) Total lumber gathered)
Multiboard - Set the text for (Last created multiboard) item in column 3, row 4 to (String(p3totallumber[(Player 3 (Teal) Total lumber gathered)]))
Set p4totallumber[(Player 4 (Purple) Total lumber gathered)] = (Player 4 (Purple) Total lumber gathered)
Multiboard - Set the text for (Last created multiboard) item in column 3, row 5 to (String(p4totallumber[(Player 4 (Purple) Total lumber gathered)]))
 

martix

There is no spoon
Reaction score
49
The problem here is somewhere else. You are hitting a limit here...
8192 is kinda a magical number in Warcraft Mapmaking. You see - arrays are limited to 8192 members. Which is what you are doing!
And quite frankly I don't know what you were thinking... I can't even begin to guess what your logic was.
Anyway. Should be like:
Code:
Multiboard - Set the text for (Last created multiboard) item in column 1, row 1 to (String((Player 1 (Red) Total gold gathered)))
/off
FireBladesX - you just gotta know where to look. The number from the first post was quite indicative. :p
 

JM08

New Member
Reaction score
2
lol, i kinda got used to making variables for everything and this doesnt even require them

so much time wasted on something so simple..:banghead:
 
General chit-chat
Help Users
  • No one is chatting at the moment.

      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