• 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.

[JASS] How do you make multiborads viewed by only 1 player?

Status
Not open for further replies.
Level 7
Joined
May 6, 2005
Messages
390
Create the multiboard normally, but instead of showing it the normal way, do this:

JASS:
if GetLocalPlayer() == whichPlayer then
    call MultiboardDisplay(whichMultiboard, true)
endif

The Jass Vault
 
Level 7
Joined
May 6, 2005
Messages
390
You should of course replace whichPlayer with the player you want to show it to, and whichMultiboard with the multiboard you want to show the player.
 
Status
Not open for further replies.
Top