• 🏆 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!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

Good unit for heropicking

Status
Not open for further replies.
Level 4
Joined
Apr 18, 2009
Messages
127
would be best if he was invisible and unselectable and no hp bar..

Just make a dummy- unit for every player in the game. Add flying height so the other heroes can pass safely.

Or

You can just make a whisp or whatever and kill it when you buy a hero.
 
Level 16
Joined
Jul 21, 2008
Messages
1,121
Create a dummy unit with spells: Invulnerable (Neutral) and Ghost (Visible). Set it's selection circle and scaling value to -1 and remove it's movement.

Unit won't be visible, and won't show health bars.

To make unit unselectable use this trigger:
  • Events
    • Player - Player 1 (Red) Selects a unit
    • Player - Player 2 (Blue) Selects a unit
    • Player - Player 3 (Teal) Selects a unit
    • Player - Player 4 (Purple) Selects a unit
    • Player - And so on...
  • Conditions
    • (Unit-type of (Triggering unit)) Equal to Footman
  • Actions
    • Selection - Remove (Triggering unit) from selection for (Triggering player)
 
Level 4
Joined
Apr 18, 2009
Messages
127
Create a dummy unit with spells: Invulnerable (Neutral) and Ghost (Visible). Set it's selection circle and scaling value to -1 and remove it's movement.

Unit won't be visible, and won't show health bars.

To make unit unselectable use this trigger:
  • Events
    • Player - Player 1 (Red) Selects a unit
    • Player - Player 2 (Blue) Selects a unit
    • Player - Player 3 (Teal) Selects a unit
    • Player - Player 4 (Purple) Selects a unit
    • Player - And so on...
  • Conditions
    • (Unit-type of (Triggering unit)) Equal to Footman
  • Actions
    • Selection - Remove (Triggering unit) from selection for (Triggering player)

Or just set "Targeted as:" in the object editor = nothing
 
Status
Not open for further replies.
Top