• 🏆 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!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

Need help with quests

Status
Not open for further replies.
Level 2
Joined
Jul 18, 2006
Messages
18
Use shadow1500's quest system it does what you said and is really easy to use
Warcraft III Spells - Quest System

Or you could use this
Bear is a integer
and Specialeffect is Special Effect
In the trigger that starts the quest set the exclamation to Specialeffect
Code:
Bear Quest
    Events
        Unit - A unit Dies
    Conditions
        (Unit-type of (Triggering unit)) Equal to Footman
    Actions
        Set bear = (bear + 1)
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                bear Equal to 10
            Then - Actions
                Destroy Specialeffect
            Else - Actions
                Do nothing
 
Level 35
Joined
Oct 9, 2006
Messages
6,392
Thanks! Do you know any way to make an update every kill? ( 2 / 10 bears killed) style

PS. + rep

Inded.. and it is easy to do...

Just update the quest

  • Update Quest
    • Events
      • Unit - A unit dies
    • Conditions
      • And - All conditions are true
        • (Killing unit) Equal to (your hero)
        • Bear Equal to 2
    • Actions
      • Quest - Change the description of (your quest (copy and add the killed amount at bottom))
      • Quest - Display to (Owner of (your hero)) the Quest Update message: You killed 2 Bears
      • Quest - Flash the quest dialog button
I added two options to do it... the quest update message only shows up for some time, the change in description is permanent. You cna also use both. Your choice.
 
Status
Not open for further replies.
Top