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
 
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
 
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.
Back
Top