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

Making items bounded to certain characters?

Status
Not open for further replies.
Level 4
Joined
Jan 1, 2008
Messages
99
Is it possible to make items bounded to certain characters? Like only certain heroes can pick up the item (and have it in their inventory).

If so, how?:con:
 
Level 2
Joined
Jan 13, 2008
Messages
13
Yes

this is a pretty simple trigger set up to drop the item if it is manipulated by someone other than the mountain king

  • Untitled Trigger 002
    • Events
      • Unit - A unit Acquires an item
    • Conditions
      • (Item being manipulated) Equal to Item_Corpse
      • (Unit-type of (Hero manipulating item)) Not equal to Mountain King
    • Actions
      • Hero - Drop Item_Corpse from (Hero manipulating item)
Item_Corpse is just an example item
 
Status
Not open for further replies.
Top