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

Money reduced when hero dies (according to level) ?

Status
Not open for further replies.
Level 5
Joined
May 8, 2020
Messages
87
1709986683278.png



I have a formula like this, but I don't know how to have my hero's money deducted when he dies
The amount is reduced by eg:
Level 25 x 5 will reduce 125 gold
 

Uncle

Warcraft Moderator
Level 73
Joined
Aug 10, 2018
Messages
7,876
Use a negative number to subtract gold. So just multiply that value by -1.
  • Set Variable GoldAmount = (Integer(((Real((Hero level of (Dying unit)))) x 5.00)))
  • Player - Add GoldAmount to (Owner of (Killing unit))
  • Player - Add (GoldAmount x -1) to (Owner of (Dying unit))
  • Floating Text - Create floating text that reads (String(GoldAmount)) above (Dying unit)...
 
Last edited:
Status
Not open for further replies.
Top