• Guest, HEROCRAFT PUBLIC RELEASE IS HAPPENING AN HOUR EARLIER! TONIGHT @ 7PM CST GET READY FOR IT! play.hc.to
    Read up on the guides and new systems! Here.
    View the LIVE Map here @ hc.to/map
    Stuck or have a problem? use "/pe create" to to open a ticket with staff (There are some known issues and other hotfixes we will be pushing asap)
  • Guest, Make sure to use our LAUNCHER! Read more here!

Help us create Quests!

Kainzo

The Disposable Hero
Staff member
Founder
Adventure Team
Joined
Jan 7, 2011
Location
The 7th Circle of Heaven
So, I wanted to bring out to survival basic quests through the Quests plugin
Found here > https://www.spigotmc.org/resources/quests.3711/

Here's a very basic script that I wrote that requires paladin and to kill Redhand guards.
Can you do better? :D

The rewards can be custom, coin, etc almost anything and the steps can be very long that require you to complete previous steps. Such as... Kill Common Redhands > Elite Redhands > Redhand Bosses, if you so desired.

Code:
  custom2:
    name: Kill Redhand Guards
    redo-delay: 600000
    ask-message: Go kill the Redhand Guards!
    finish-message: You killed Redhand Guards! Here's some coin and exp!
    requirements:
      heroes-primary-class: Paladin
      fail-requirement-message: You are not the proper class!
    stages:
      ordered:
        '1':
          custom-objectives:
            custom1:
              name: Kill MythicMobs
              count: 10
              data:
                Killable Types: T6_CRU_WARRIOR,T6_CRU_CASTER,T6_CRU_ROGUE,T6_CRU_HEALER
                Objective Name: Protectors of the Redhand
    rewards:
      heroes-exp-classes:
      - Paladin
      heroes-exp-amounts:
      - 5000.0
 

J2BH

Legacy Supporter 7
Joined
May 15, 2014
Location
New York City
Will there be a quest master npc? In that case you could have some nice pve quests like deliver 20 oak logs or something to the quest master (Or some other npc) for profession exp. I'm gonna see if i can put together a nice quest script sounds fun
 

J2BH

Legacy Supporter 7
Joined
May 15, 2014
Location
New York City
Code:
name: Assassinate Kato Danzo!
redo-delay: 700000
ask-message: You must assassinate the evil Kato Danzo!
finish message: Excellent work! Take these rewards for your efforts
requirements:
   heroes-primary-class: Ninja
   fail-requirement-message: You must be a ninja for this task!

(too lazy to do this part)

rewards:
   heroes-exp-classes:
-     Ninja
   heroes-exp-amounts:
-     5500.0
 

Lordofon

Glowing Redstone
Joined
Dec 29, 2015
defeat this banana
hqdefault.jpg
 
Joined
Jul 6, 2013
Location
Somewhere
Let's give this a crack. I haven't really attempted to code anything since I was in the 8th grade, but let's see. This is just a basic quest to kill some stuff. Doing this from my phone, so however this displays just role with it (phone lacks TAB button). Also not entirely sure how to make everything work with mythic mobs, so I am just copying you a bit for that part, Kain.

Basically, you find a dying soldier/ man in the woods near a couple other dead bodies, and he tells you to go kill the bandits/people that killed him.

Code:
name: Avenge the Soldiers!
ask-message: Please... kill the bastards that did this to us!
finish-message: The soldiers can now rest peacefully.
requirements:
    hero-primary-class: Warrior
    fail-requirement-message: You are not the proper class!
stages:
    ordered:
        '1':
            custom-objectives:
                custom1:
                    name: Kill MythicMobs
                    count: 15
                    data:
                        Killable Types: T6_CRU_WARRIOR,T6_CRU_CASTER,T6_CRU_ROGUE,T6_CRU_HEALER
                        Objective Name: Bandits
        '2':
            custom-objectives:
                custom1:
                    name: Kill MythicMobs
                    count: 1
                    data:
                        Killable Types: T6_CRU_WARRIOR,T6_CRU_CASTER,T6_CRU_ROGUE,T6_CRU_HEALER
                        Objective Name: Bandit Leader
rewards:
    heroes-exp-classes:
    - Warrior
    heroes-exp-amounts:
    - 6000.00
    items:
    - name-diamond_sword:amount-1
 

Kainzo

The Disposable Hero
Staff member
Founder
Adventure Team
Joined
Jan 7, 2011
Location
The 7th Circle of Heaven
Will there be a quest master npc? In that case you could have some nice pve quests like deliver 20 oak logs or something to the quest master (Or some other npc) for profession exp. I'm gonna see if i can put together a nice quest script sounds fun
yeah NPC quest master is possible - but we're really wanting to get the crashes handled first.
 
Top