• 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.

Quests Text

Status
Not open for further replies.
Level 13
Joined
Jun 3, 2011
Messages
1,058
Hi guys im making a quest that you must find a hammer in the town so after i created it i wan't to make it like if you get that item there is a message that says Hammers Found: 1/1
 
Level 12
Joined
Sep 11, 2011
Messages
1,176
  • Acquiring
    • Events
      • Unit - A unit Acquires an item
    • Conditions
      • (Item-type of (Item being manipulated)) Equal to Ring of Protection +5
    • Actions
      • Set PickedHammer = (PickedHammer + 1)
      • Game - Display to (All players) the text: (Hammer found : + ((String(PickedHammer)) + / 1))
  • Losing
    • Events
      • Unit - A unit Loses an item
    • Conditions
      • (Item-type of (Item being manipulated)) Equal to Ring of Protection +5
    • Actions
      • Set PickedHammer = (PickedHammer - 1)
      • Game - Display to (All players) the text: (Hammer found : + ((String(PickedHammer)) + / 1))
 
Level 13
Joined
Jun 3, 2011
Messages
1,058
  • Acquiring
    • Events
      • Unit - A unit Acquires an item
    • Conditions
      • (Item-type of (Item being manipulated)) Equal to Ring of Protection +5
    • Actions
      • Set PickedHammer = (PickedHammer + 1)
      • Game - Display to (All players) the text: (Hammer found : + ((String(PickedHammer)) + / 1))
  • Losing
    • Events
      • Unit - A unit Loses an item
    • Conditions
      • (Item-type of (Item being manipulated)) Equal to Ring of Protection +5
    • Actions
      • Set PickedHammer = (PickedHammer - 1)
      • Game - Display to (All players) the text: (Hammer found : + ((String(PickedHammer)) + / 1))

The PickedHammer is a Integer or a Item?
 
Status
Not open for further replies.
Top