HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

Tree rebirth

09-02-2004, 03:30 AM#1
Psyny
Hello,

Looking around some maps to refresh my mind about what i can do in WE...
I saw a thing very interesting...

How i can do: when i destroy a tree, before some time it rebirth again ?

It can be very important in the arena map that i making...
09-02-2004, 04:11 AM#2
logik
darky28 made a tree rebirth script.... chreck the download section
09-02-2004, 12:15 PM#3
BuRnInSpartan
well... you can just make a trigger like this...

Events: A destructible dies

Conditions: Desructible equal to (the tree)

Actions: Create 1 (tree) at position of dying destructible
09-02-2004, 01:52 PM#4
SpadeZ
Quote:
Originally Posted by BuRnInSpartan
well... you can just make a trigger like this...

Events: A destructible dies

Conditions: Desructible equal to (the tree)

Actions: Create 1 (tree) at position of dying destructible

There isn't actually a generic destructible event in the normal WE, so your best bet would be to make a trigger like this:

e.g.
Code:
    Events
        Destructible - A destructible within (Playable map area) dies
    Conditions
        (Destructible-type of (Dying destructible)) Equal to Summer Tree Wall
    Actions
        Destructible - Set life of (Dying destructible) to 100.00%


gl, .