• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

multiboard desync

Status
Not open for further replies.
Level 28
Joined
Jan 26, 2007
Messages
4,789
DSG is indeed correct (I didn't even consider locally creating a multiboard anymore).

This is safe:
  • Actions
    • Multiboard - Create a multiboard with 1 columns and 1 rows, titled Title
    • Multiboard - Hide (Last created multiboard)
    • Custom script: if GetLocalPlayer() == Player(0) then
    • Multiboard - Show (Last created multiboard)
    • Custom script: endif
(Locally shows the multiboard)

This is not safe:
  • Actions
    • Custom script: if GetLocalPlayer() == Player(0) then
    • Multiboard - Create a multiboard with 1 columns and 1 rows, titled Title
    • Custom script: endif
(Locally creates a multiboard).
 
Status
Not open for further replies.
Top