• 🏆 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!

How do you make hero icon disappear?

Status
Not open for further replies.
Level 4
Joined
Jul 15, 2011
Messages
51
I'm working on Helm's Deep Full v8.5, and near the end I have the hero enter a region. When the hero does, I hide -that- hero and unhide the hero on the horse. That way, it looks like the hero gets on the horse.
However, both hero icons are still there, and it annoys some people. Anybody got some good ideas? :goblin_jawdrop:
 
Level 4
Joined
Jul 15, 2011
Messages
51
Hmm.. Not the exact answer, but tweaking around with some actions gave me the idea to just create the unit instead of unhiding it. However, now I can only find the option to drop the items in the old hero's inventory instead of moving them over to the new one.
 
Level 4
Joined
Jul 15, 2011
Messages
51
I decided to make a trigger where:
Event: Unit enters region
Condition: Unit is Theoden and 1550 seconds have passed
Actions: Create Horse Theoden at region
Give Item carried by triggering unit (slots 1-6) to last created unit
wait 0.1 seconds
Remove triggering unit
Remove horse
 
Level 26
Joined
Mar 19, 2008
Messages
3,140
This can be much simpler if you read the tutorial I've posted already above.

  • Events
    • Unit - Unit enters region
  • Conditions
    • (Triggering unit) Equal to Theoden
    • <other stuff if needed>
  • Actions
    • Unit - Add MountTransformation to (Triggering unit)
    • Unit - Remove MountTransformation from (Triggering unit)
Where MountTransformation is ability based on one of morph abilities (eg. druids).

Add other actions if you need to.
 
Status
Not open for further replies.
Top