• 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!
  • Create a void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 21st Texturing Contest: Upgrade is now concluded, time to vote for your favourite set of icons! Click here to vote!

Delete all trees on map?

Status
Not open for further replies.
Level 28
Joined
Sep 24, 2006
Messages
4,981
I believe ingame, if not so.. Select them with your mouse and press delete

Yes you can by using triggers.

Look at the tag 'Destructables' or something and then you find the 'Pick all destructable and do xxxx' tag and make the xxxx into 'kill picked destructables''

Only you will have to make all other destructables invulnerable if you only want the trees destroyed (if you have any other destructable in your map)
 
Level 11
Joined
Dec 31, 2007
Messages
780
  • Destructible - Pick every destructible in (Playable map area) and do (Actions)
    • Loop - Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Destructible-type of (Picked destructible)) Equal to Summer Tree Wall
        • Then - Actions
          • Destructible - Remove (Picked destructible)
        • Else - Actions
          • Do nothing
 
If you want to delete all your trees at once, make sure you're at the Doodad Pallete. (If you aren't, you can just press D.)

Select the type of tree that you want to delete in the world editor and then press Ctrl+Shift+~.

It should select all of the type of the tress you selected. Then press Delete and all of the selected trees will be gone.
 
Status
Not open for further replies.
Top