HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

multiboard show action problem

02-10-2006, 02:08 AM#1
Linera
Why won't this work?

Trigger:
Player Group - Pick every player in PartyGroups[(Integer A)] and do (Actions)
Collapse Loop - Actions
Collapse If (All Conditions are True) then do (Then Actions) else do (Else Actions)
Collapse If - Conditions
(Picked player) Equal to (Local player)
Collapse Then - Actions
Multiboard - Show PartyList[(Integer A)]
Collapse Else - Actions
Multiboard - Hide PartyList[(Integer A)]
Its suppose to show the board to each player in the group.
but instead the mutliboard doesn't show up at all.
The (Local player) is part of WE Unlimited.
02-10-2006, 03:50 AM#2
Hemlock
I am not certain, but I guess you show Partylist, while you pick the Partygroups.

I guess you need to change Partylist[(integer A)] to PartyGroups[(integer A)] in your actions.
02-10-2006, 06:16 AM#3
qwertyui
I remember that i used Jass for show multiboard functions :/
Will check when get back home.
02-10-2006, 07:10 AM#4
Linera
I can't use Jass. I hate Jass because its confusing.
02-10-2006, 07:19 AM#5
qwertyui
Well if you can't even bear inserting two strings of custom text in your map, then your wc3 modding future is very bleak indeed :P
02-10-2006, 07:20 AM#6
Linera
also I'm using gui so there is no way to use jass.
02-10-2006, 09:59 AM#7
PhoenixFeather
I think that you need to wait at least 0.01 seconds before you can show it. Is it supposed to be shown at map initialization?
02-10-2006, 10:59 AM#8
Anitarf
Don't hide the multiboard under else-actions! You loop through a player group and for each player, you show the board for him and hide it for everybody else, which includes players you have picked before this player. Just hide the board for all players first and then loop through your group and show it to players from the group.
02-10-2006, 08:12 PM#9
Linera
Working now