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

Hero death notice and leaderboard

Status
Not open for further replies.
Level 10
Joined
Jun 7, 2008
Messages
420
Hi, I'm new to variables and all, so please have patience. I have tried a guide or two but can't make any sense out of it.

What I need to do is make a killboard on the top right corner of the map showing hero kills dota style.
No need for creep kills or anything like that. Just plain ol hero kills and deaths.

Also, when a hero dies, how do i make that nice global message

<killing player followed by hero name> has just inflicted <killed player followed by hero name> a mortal wound for <100+hero level X 50> gold

If not possible for the <100+hero level X 50> gold part, just set it as 350 gold will do.
I'd be so grateful if anyone can take the time to explain this.

Thanks.
 
Level 16
Joined
May 1, 2008
Messages
1,605
Seas =)

oooook with the killboard I need look up first - never created something like that befor but I give you a nice kill massage and your gold bonus:

  • Unit die
    • Events
      • Unit - A unit Dies
    • Conditions
      • ((Dying unit) is A Hero) Equal to True
    • Actions
      • Game - Display to (All players) for 10.00 seconds the text: (((((((The Hero " + (Name of (Dying unit))) + " of Player " ) + (Name of (Owner of (Dying unit)))) + " is killed by " ) + (Name of (Killing unit))) + " of Player " ) + (Name of (Owner of (Killing unit))))
      • Player - Add ((100 + (Hero level of (Dying unit))) x 50) to (Owner of (Killing unit)) Current gold
== The Massage ==
Its a lot of text - so I dont want tell you all how to do this =) [because its better if you get some own experience and find it out you own way =) ]
Tip: Use Concatenate String - Tip: You need klick "String 1" 8 times to get the full massage

== The Gold Bonus ==
Tip: "Player - Add Property" - Tip: Use 2 times Arithmetic Function
 
Status
Not open for further replies.
Top