• 🏆 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!

Value for Lumber/Gold of unit

Status
Not open for further replies.
Level 13
Joined
Mar 4, 2009
Messages
1,156
i need to return lumber and gold of dying unit if he is killed by an ally

EVENT-unit dies
CONDITION-(dying unit) belongs to an ally of (owner of unit(killing unit))
ACTION
-add to (owner of unit(dying unit)) <gold cost of (dying unit)> correct gold
-add to (owner of unit(dying unit)) <lumber cost of (dying unit)> correct lumber



how can i do this?
 

Dr Super Good

Spell Reviewer
Level 64
Joined
Jan 18, 2005
Messages
27,212
1 - Use captaingriffens instant build / sell system and disable the build part of it as it automatically logs the gold of untis once they are built.
2 - Set up a hashtable table whereby you attach the cost of every unit to their type so that from the unit type later in the game you can recall the cost (can not link directly to object editor).
3 - You import an enhanced native list containing the AI natives which return the cost of units/buildings adding an extrat 100+ KB onto your map size and rendering your map less future proof for future patches.

The choice is yours, all I advise JASS for.
 
Status
Not open for further replies.
Top