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

Corpses

Status
Not open for further replies.

Chaosy

Tutorial Reviewer
Level 40
Joined
Jun 9, 2011
Messages
13,219
No need for a indexer. I would use a hashtable.

Create corpse like
JASS:
//create corpse here
call SaveUnitHandle(hash, GetHandleId(owner), 1, corpse)
//create new corpse here
call SaveUnitHandle(hash, GetHandleId(owner), 2, corpse)
//and so on


And to resume decay
JASS:
local unit u = LoadUnitHandle(hash, GetHandleId(owner), 1)
//set animation speed to 100 + kill unit
 
Status
Not open for further replies.
Top