• 🏆 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!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

2 Multiboard questions

Status
Not open for further replies.
Level 6
Joined
Feb 10, 2011
Messages
188
1.Can I have 2 multiboard on the screen at once?

2.If the answer to #1 is yes, Can I make one of those multiboards show to all, and the other just show to one player (using get local player)
 
Level 16
Joined
Jul 31, 2012
Messages
2,217
A walk through for what you want:
Create the Multiboard that goes for the other players (not the one that should show up 2 for him) show it for them, but not for that player, then merge the 2 multiboards that should appear into one multiboard that will only show to that player... that can do what you may need ;)
 
Level 6
Joined
Jan 29, 2010
Messages
213
A walk through for what you want:
Create the Multiboard that goes for the other players (not the one that should show up 2 for him) show it for them, but not for that player, then merge the 2 multiboards that should appear into one multiboard that will only show to that player... that can do what you may need ;)

Sorry for writing here but may u let us see an example how to do that? :eekani:
 
Level 16
Joined
Jul 31, 2012
Messages
2,217
sorry i haven't much time, so it will basically look like this:
  • Events -
    • Time - Elapsed Game Time equal to 0.00 s
  • Conditions -
  • Actions -
    • Multiboard - Create Multiboard ... the global one
    • Multiboard - Show (Last created Multiboard)
    • Custom script: if GetLocalPlayer == Player(0) then
    • Multiboard - Hide (Last created Multiboard)
    • Custom script: endif
    • Multiboard - Create Multiboard ... the one player one
    • Multiboard - Hide (Last created Multiboard)
    • Custom script: if GetLocalPlayer == Player(0) then
    • Multiboard - Show (Last created Multiboard)
    • Custom script: endif
 
Level 6
Joined
Jan 29, 2010
Messages
213
sorry i haven't much time, so it will basically look like this:
  • Events -
    • Time - Elapsed Game Time equal to 0.00 s
  • Conditions -
  • Actions -
    • Multiboard - Create Multiboard ... the global one
    • Multiboard - Show (Last created Multiboard)
    • Custom script: if GetLocalPlayer == Player(0) then
    • Multiboard - Hide (Last created Multiboard)
    • Custom script: endif
    • Multiboard - Create Multiboard ... the one player one
    • Multiboard - Hide (Last created Multiboard)
    • Custom script: if GetLocalPlayer == Player(0) then
    • Multiboard - Show (Last created Multiboard)
    • Custom script: endif

Sorry I did nor understood some of the places:
1.

  • Multiboard - Create Multiboard ... the global one
  • Multiboard - Create Multiboard ... the one player one
There's an action like
  • Multiboard - Create a multiboard with 1 columns and 1 rows, titled asd
but I can't find a way to may it global and for 1player...


2. I'm kind of bad with custom scripts. So Its better to make it for me with simple actions/conditions.
I wasn't able to make sure what exactly condition this is.

  • Custom script: if ( GetLocalPlayer() == Player(0) ) then
It's more like:
  • (Number of players in (All players controlled by a User player)) Equal to 0
,
  • (Player 1 (Red) controller) Equal to User
or it just works like setting player on condition?
 
Last edited:
Level 6
Joined
Feb 10, 2011
Messages
188
A walk through for what you want:
Create the Multiboard that goes for the other players (not the one that should show up 2 for him) show it for them, but not for that player, then merge the 2 multiboards that should appear into one multiboard that will only show to that player... that can do what you may need ;)

Ill be honest, I don't get what you mean at all. Each player will have their own private board and each player will see a global score board.

Could I make it so they are both up at the same time and you could just switch between them? (I was thinking about making it so its some hotkey switch)
 
Level 22
Joined
Aug 27, 2013
Messages
3,973
Sorry I did nor understood some of the places:
1.

  • Multiboard - Create Multiboard ... the global one
  • Multiboard - Create Multiboard ... the one player one
There's an action like
  • Multiboard - Create a multiboard with 1 columns and 1 rows, titled asd
but I can't find a way to may it global and for 1player...


2. I'm kind of bad with custom scripts. So Its better to make it for me with simple actions/conditions.
I wasn't able to make sure what exactly condition this is.

  • Custom script: if ( GetLocalPlayer() == Player(0) ) then
It's more like:
  • (Number of players in (All players controlled by a User player)) Equal to 0
,
  • (Player 1 (Red) controller) Equal to User
or it just works like setting player on condition?

  • Multiboard - Create Multiboard ... the global one
  • Multiboard - Create Multiboard ... the one player one
the global one and the one player one is just a comment, ignore it
what does he mean is just create the multiboard whatever you like
then use that custom script
i'm bad with scripts as well but just copying it won't be a problem, right?
 
Status
Not open for further replies.
Top