• 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.
  • Create a faction for Warcraft 3 and enter Hive's 19th Techtree Contest: Co-Op Commanders! Click here to enter!
  • Get your art tools and paintbrushes ready and enter Hive's 34th Texturing Contest: Void! Click here to enter!

Corpses

Status
Not open for further replies.

Chaosy

Tutorial Reviewer
Level 41
Joined
Jun 9, 2011
Messages
13,243
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