dmarkwick 261 Posted July 4, 2007 Does anyone know ANYTHING about capturing events for island buildings? "killed" is apparently not working, at least in the simple way I tried it (which is for units ingame, probably handled differently from map objects). It certainly must be possible, because, well, BIS do it I want to add my own animated smoke/dust effects to collapsing buildings, which I can only think is capturable by the "killed" event. Share this post Link to post Share on other sites
smoke52 0 Posted July 4, 2007 not sure about event handlers myself but you could try this. make a trigger overtop of the building, name it something like build1 in the condition put this: damage ((position build1) nearestObject XXXXXX) > 0.9 XXXXXX = the building ID number. to find out the ID number click SHOW IDs and zoom in close to the building. activation: none repeating: once type: none now in the ON ACTIVATION you can execute your smoke script and whenever the building is destroyed your smoke will appear. Share this post Link to post Share on other sites
dmarkwick 261 Posted July 4, 2007 not sure about event handlers myself but you could try this.make a trigger overtop of the building, name it something like build1 in the condition put this: damage ((position build1) nearestObject XXXXXX) > 0.9 XXXXXX = the building ID number. to find out the ID number click SHOW IDs and zoom in close to the building. activation: none repeating: once type: none now in the ON ACTIVATION you can execute your smoke script and whenever the building is destroyed your smoke will appear. Thanks for the reply smoke52, I'm sure it'd work but I need it to work on every building on the map. My other smoke stuff currently works on every unit on the map, I just need a way to capture building collapses now. Share this post Link to post Share on other sites
Nutty_101 0 Posted July 5, 2007 I think you have to change the object config or something to change the smoke. Share this post Link to post Share on other sites
dmarkwick 261 Posted July 5, 2007 I think you have to change the object config or something to change the smoke. No, I'm not after changing smoke, just adding some. Share this post Link to post Share on other sites