• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Different multiboards for each player

Status
Not open for further replies.
Level 2
Joined
Jan 6, 2008
Messages
25
Hey, I'm working on a map currently, and my issue at the moment is that I can't find any way of making a multiboard show up for certain player(s) only.

Anyone got any ideas?
 
Level 2
Joined
Jan 6, 2008
Messages
25
Could you please better explain to me what you are saying? I don't use Jass, is there any GUI way to do that? I am planning on using Jass instead of GUI though so if not it isn't a huge deal.
 
Level 10
Joined
Jun 16, 2007
Messages
415
There is literally NOOOO way of using this function without Jass.
All you need to do anyways is only use 2 lines of jass.

Example of how to create a multiboard for Player 1 (Red):
  • Untitled Trigger 001
    • Events
      • Time - Elapsed game time is 1.00 seconds
    • Conditions
    • Actions
      • -------- Player(0) = Red, Player(1) = Blue, Player(11) = Darkgreen, you get the idea. --------
      • Custom script: if GetLocalPlayer() == Player(0) then
      • -------- This multiboard will only be created for Player Red, because it is between the two lines of JASS. --------
      • Multiboard - Create a multiboard with 1 columns and 1 rows, titled Your Personal Multi...
      • Custom script: endif
 
Level 2
Joined
Jan 6, 2008
Messages
25
Thank you very much. My previous post was actually made before I saw your post before this one, which was also informative.

Thanks people!
 
Status
Not open for further replies.
Top