HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

Showing Multiboards..I need help

09-23-2003, 02:25 AM#1
NoWorries
these are my triggers for my multiboard..


d
Events
Map initialization
Conditions
Actions
Leaderboard - Show all multiboards
Wait 0.00 seconds
Trigger - Run Untitled Trigger 001 <gen> (ignoring conditions)




Untitled Trigger 001
Events
Conditions
Actions
Custom script: local multiboard udg_NW
Custom script: call MultiboardDisplay(udg_NW,true)
Custom script: set udg_NW = CreateMultiboard()
-------- This should be where I name it.. --------
Custom script: call MultiboardSetTitleText(udg_NW,"Menu(|cffffcc00ESC|r)")
Custom script: call MultiboardSetTitleTextColor(udg_NW,255,255,255,25)
-------- This is Where I insert the specifics of the Multiboard --------
Custom script: call MultiboardSetColumnCount(udg_NW,1)
Custom script: call MultiboardSetRowCount(udg_NW,5)
Custom script: call MultiboardSetItemsWidth(udg_NW,3)
Custom script: call MultiboardSetItemsStyle(udg_NW,true,true)
Custom script: call MultiboardSetItemsValue(udg_NW,"-")
Custom script: call MultiboardSetItemsValueColor(udg_NW,128,128,196,25)
-------- Selection 1 --------
Custom script: call MultiboardSetItemValue(MultiboardGetItem(udg_NW,1,0)," Attack")
Custom script: call MultiboardSetItemIcon(MultiboardGetItem(udg_NW,1,0),"ReplaceableTextures\\CommandButtons\\BTNUnsummo nBuilding.blp")
-------- Selection 2 --------
Custom script: call MultiboardSetItemValue(MultiboardGetItem(udg_NW,2,0)," Magic")
Custom script: call MultiboardSetItemIcon(MultiboardGetItem(udg_NW,2,0),"ReplaceableTextures\\CommandButtons\\BTNUnsummo nBuilding.blp")
-------- Selection 3 --------
Custom script: call MultiboardSetItemValue(MultiboardGetItem(udg_NW,3,0)," Items")
Custom script: call MultiboardSetItemIcon(MultiboardGetItem(udg_NW,3,0),"ReplaceableTextures\\CommandButtons\\BTNHealing Salve.tga")
-------- Selection 4 --------
Custom script: call MultiboardSetItemValue(MultiboardGetItem(udg_NW,4,0)," Guardians")
Custom script: call MultiboardSetItemIcon(MultiboardGetItem(udg_NW,4,0),"ReplaceableTextures\\CommandButtons\\BTNRedDrag onDevour.blp")
-------- Other Junk --------
Custom script: call MultiboardDisplay(udg_NW,true)
Custom script: call MultiboardMinimize(udg_NW,true)


but I can't get the multiboard to show up in game..i really need help..i've been working on this forever..
09-23-2003, 02:19 PM#2
Vexorian
Change the wait to 0.01 seconds, not 0.00
And put the Show all multiboards action after the other trigger
09-23-2003, 04:11 PM#3
Draco
Actually, have it wait 8+ seconds and then try. I use a boolean in JASS to show my board, but I can't give you the exact trigger since I'm at school.