• 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.
  • Create a faction for Warcraft 3 and enter Hive's 19th Techtree Contest: Co-Op Commanders! Click here to enter!
  • Create a void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 21st Texturing Contest: Upgrade is now concluded, time to vote for your favourite set of icons! Click here to vote!

Gathering Quest

Status
Not open for further replies.
Level 13
Joined
Jun 3, 2011
Messages
1,058
Hi guys i wan't to know how to make a gather an item quest

Can you help me this is my Base

206543-albums5871-picture62509.png
 
Level 11
Joined
Oct 31, 2010
Messages
1,057
hmm

Event =
unit acquires a item

Condition =

item being maniluplated equals to (item)
quest is turned on

Action =

if (taskmasterkills) not equals to three
then do set taskmaster kills equal to taskmaster kills + 1
else
if taskmaster kills equals to three
then do display update message and do finish quest
else do nothing
 
Level 12
Joined
Sep 11, 2011
Messages
1,176
hmm

Event =
unit acquires a item

Condition =

item being maniluplated equals to (item)
quest is turned on

Action =

if (taskmasterkills) not equals to three
then do set taskmaster kills equal to taskmaster kills + 1
else
if taskmaster kills equals to three
then do display update message and do finish quest
else do nothing

*maniluplated = manipulated.

Trigger mode of what darkzxx said

  • Gathering Item
    • Events
      • Unit - A unit Acquires an item
    • Conditions
      • (Item-type of (Item being manipulated)) Equal to Tome of Experience
      • QuestIsOn Equal to True
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • TaskMasterKills Less than 3
        • Then - Actions
          • Set TaskMasterKills = (TaskMasterKills + 1)
        • Else - Actions
          • Set TaskMasterKills = 0
          • Quest - Mark GatheringItemQuest as Completed
          • Quest - Display to (All players) the Quest Update message: Quest Completed!
 
Last edited:
Status
Not open for further replies.
Top