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

Leaderboard

Status
Not open for further replies.
Level 6
Joined
May 1, 2009
Messages
156
How can i have it so my leaderboard that shows
-Recouces-
Wood Stock: X
so that it unhides for a certain player wen the triggering player's unit enters region.

Bob enters region A so he sees the leaderboard, he leaves, leaderboard goes away. Jim enters region A so he sees the leaderboard, Bob enters region A, they both see it :xxd:.
 
Level 28
Joined
Jan 26, 2007
Messages
4,789
  • Hide Leaderboard
    • Events
      • Unit - A unit leaves Region
    • Conditions
    • Actions
      • Custom script: if GetLocalPlayer() == GetOwningPlayer(GetTriggerUnit()) then
      • Leaderboard - Hide (Last created leaderboard)
      • Custom script: endif
  • Show Leaderboard
    • Events
      • Unit - A unit enters Region
    • Conditions
    • Actions
      • Custom script: if GetLocalPlayer() == GetOwningPlayer(GetTriggerUnit()) then
      • Leaderboard - Show (Last created leaderboard)
      • Custom script: endif
Something like this?

Edit: wait... you want a multiboard or a leaderboard?
Make up your mind already D:
(I prefer multiboards, you can make them look a lot better...).
 
Level 28
Joined
Jan 26, 2007
Messages
4,789
Yeah, there's quite a huge difference...
Multiboard is the most common nowadays, you can minimize/maximize it yourself and you can insert any value in it (like lumber, kills, hero, item, ...).
It also supports icons and you can create it's own structure.

A leaderboard only features players + 1 value.
You cannot change it's structure, it doesn't support icons and you can't minimize/maximize it.
 
Level 6
Joined
May 1, 2009
Messages
156
Cool thats awsome, i'll try that but could you tell me if i can show a leaderboard for player 1 to player 2.
 
Level 6
Joined
May 1, 2009
Messages
156
Sorry i keep dragging this thread on but I mean in the action when you create a leaderboard, you create it or you add something to the leaderboard for a certain player. EX) Add player 1 to last created leaderboard, then when you should last created leaderboard im wondering if player 2 can see player ones info set on the leaderboard, or if its only for player 1.
 
Status
Not open for further replies.
Top