• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

How do you make sheep not explode from clicking them too many times?

Status
Not open for further replies.
Level 2
Joined
Jun 28, 2009
Messages
22
create a new unit (preferably not from a critter), change its model to sheep, then change "Stats - Race" to anything but Critter...that should work fine...

give rep...:D
 
Level 2
Joined
Jun 25, 2009
Messages
19
Just make another unit with the sheep model, and give it the wander (neutral) ability.
 
Level 13
Joined
Mar 4, 2009
Messages
1,156
maybe you could do this

EVENT-unit dies
CONDITION-(dying unit) equal to unit of type (unit type-(sheep))
ACTIONS
-set POINT = position of (dying unit)
-create 1 unit of type (sheep) at POINT
Custom script:call RemoveLocation(udg_POINT)
-remove (dying unit)
 
Last edited:
Status
Not open for further replies.
Top