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

handleid

  1. HerlySQR

    Lua W3 handles instantiation

    Hello, while I wanted to translate the Zwiebelchen's Threat System to Lua, during the Debug Board it checkes the handles that are existing in the map and to asign them an integer does an operation that involves creating 50 locations, get their handle ids and finally removing all of them every...
  2. HerlySQR

    [Solved] I found a bug with the item stack of the new versions

    Hello, I tried to create a Item Spawn system that detects when you picked an item and then discounting it from that ones that are in the floor, but I discovered an annoying bug. The items I spawn are stackable and when is picked the function GetManipulatingItem() instead of returning the picked...
  3. AGD

    [Solved] Handle Id Recycling

    From what I understand when I do local timer t = CreateTimer() call DestroyTimer(t) t still points to the handleid of the destroyed timer so I need to set t = null so that the handleid of the destroyed timer will be recycled. But when i do local timer t = CreateTimer() call DestroyTimer(t)...
Top