[RPG/FUN] qQuests - The simplest questing plugin since uQuest! [CB 1.6.2-R0.1]

Discussion in 'Archived: Plugin Releases' started by quaz3l, Jan 7, 2012.

  1. Offline

    Sydael

    Okay no more error but when i do /q info it still shows that i get 0 money.
     
  2. Offline

    quaz3l

    Sydael
    Can you send me your quests.yml?
    Upload it to mediafire or something
     
  3. Offline

    meowkittie

    Heres what I am getting now. I can change certain parts of the default quest, but when I make changes to some parts, it all resets to its defaults and this is the error message I get.

    15:07:11 [SEVERE] Config file plugins\qQuests\quests.yml isn't valid! mapping va
    lues are not allowed here
    in "<string>", line 14, column 28:
    id: 260 name: Apples
    ^

    (the ^ is supposed to be pointing up at the colon between apples and names, indicating that it is saying that is the invalid value i think)

    The only thing I did in this case was change the item name and ID to apples. In this one it is pointing to the : after name as the problem it looks like? It happened once with the colon in the "Amount: 5" indicating the number that you have to collect as well, it was saying that the : was the error there at one point. I don't know what is causing it to look at this as an error, because while trying to figure out the cause of the error, putting in "name: Apples" in this exact same way didn't generate any errors, both times having the name and id the only variable I changed.

    And this is with the 1.1 fix you just put up, I made sure that all my other qquest files were gone as well.
     
  4. Offline

    Sydael

    [quote uid=90609524 name="quaz3l" post=923638]Sydael
    Can you send me your quests.yml?
    Upload it to mediafire or something[/quote]
    <Edit by Moderator: Redacted mediafire url>
     
    Last edited by a moderator: Nov 11, 2016
  5. Offline

    quaz3l

    Sydael
    You need to add the "market:" node so:
    Instead of this:
    Code:
    0:
      info:
        name: Diamonds!
        messageStart: Hey! Can you go get my 5 diamonds! I'll pay you $500
        messageEnd: Thanks! Now I can feed my lava dragon! ;)
      tasks:
        0:
          type: collect
          object:
            id: 264
            name: Diamonds
          amount: 5
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 500
          health: 0
          hunger: 0
    
    Do This:
    Code:
    0:
      info:
        name: Diamonds!
        messageStart: Hey! Can you go get my 5 diamonds! I'll pay you $500
        messageEnd: Thanks! Now I can feed my lava dragon! ;)
      tasks:
        0:
          type: collect
          object:
            id: 264
            name: Diamonds
          amount: 5
      market:
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 500
          health: 0
          hunger: 0
    
    EDIT:
    Heres your file reformatted
    <Edit by Moderator: Redacted mediafire url>

    meowkittie
    Your error is caused by a malformed quests.yml file too.
    make sure you use no tabs, look at the spacing in the post above.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Nov 11, 2016
  6. Offline

    Zepunk

    Then the citizens ? ( Sorry i'm frensh )
     
  7. Offline

    quaz3l

    Zepunk
    Not right now, the temp fix is just released to fix the existing features in 1.1
     
  8. Offline

    EmanuxJade

    sorry what is the correct configuration of quests.yml file for add more quest? The players can chose a quest or is random? ill try to configure my yml with '0' '1' '2' but in game i have ever same quest....

    c
     
  9. Offline

    Dylanrock99

    Hay, is thier a dev version of this plugin that enables you to choose what quest you want to do? if So can i try it out. Thanks!
     
  10. Offline

    Zepunk

    New for the add of citizens ?
     
  11. Offline

    Superzilla

    Possibility of being open source?

    nm, just saw the link, missed it the 1st time.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 23, 2016
  12. Offline

    takomari

    Is this compatible with the most recent build of Bukkit for 1.1?
     
  13. Offline

    quaz3l

    OK I haven't been on for a while because of finals... Sorry.

    EmanuxJade
    Is this fix? If not, make sure you use no tabs and format your quests.yml correctly.

    Dylanrock99
    /q give #
    It lets you choose your quest number, sorry no permissions yet.

    Zepunk
    Sorry Citizens is not added yet because of finals but it will be shortly (3 weeks at most)

    Superzilla
    Good.

    takomari
    Yes.

    All the updates I have promised will be up within the next month or so.
     
  14. Offline

    mmob18

    Hi there! Would it be possible to make quests to do multiple things? Example: Go collect 10 diamonds, kill 25 Zombies and 10 Endermen, and then return to this spot!
    Thanks, and I look forward to your answer,
    mmob18
     
  15. Offline

    r3v_sisco

    Whats the proper scripting for a kill quest? what about the rest of them?
     
  16. Offline

    kahlilnc

    Um why does this need npc support? Doesn't citizens already have quest?
     
  17. Offline

    quaz3l

    mmob18
    Yes I am slowly but surely working on this, I need to totally rewrite the plugin for this to work though, because the code is so disorganized in the current version.

    kahlilnc
    Why is there multiple browsers?
    Because each one is specialized for a specific task and has its own pluses, It gives you more options.
    For example, my plugin is specialized in quests so naturally you can expect more options in the quests department, as opposed to Citizens, it specializes in NPCs therefore you will find it more NPC focused.

    r3v_sisco
    Take a look at this yaml:
    Code:
    0:
      info:
        name: Zombiezzzzz!
        messageStart: Kill them all! (5)
        messageEnd: Thanks!
      tasks:
        0:
          type: kill
          object:
            name: Zombie
          amount: 5
      market:
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 500
          health: 0
          hunger: 0
     
  18. Offline

    r3v_sisco

    Im getting an error when a player turns in a quest,
    Code:
    2012-02-11 12:57:52 [SEVERE] null
    org.bukkit.command.CommandException: Unhandled exception executing command 'q' in plugin qQuests v0.1.0
        at org.bukkit.command.PluginCommand.execute(PluginCommand.java:42)
        at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168)
        at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:386)
        at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:777)
        at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:737)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:725)
        at lishid.orebfuscator.hook.NetServerHandlerProxy.a(NetServerHandlerProxy.java:101)
        at net.minecraft.server.Packet3Chat.handle(Packet3Chat.java:33)
        at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:100)
        at lishid.orebfuscator.hook.NetServerHandlerProxy.a(NetServerHandlerProxy.java:44)
        at net.minecraft.server.NetworkListenThread.a(NetworkListenThread.java:78)
        at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:537)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:435)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:465)
    Caused by: java.lang.NullPointerException
        at me.quaz3l.qQuests.Commands.cmd_qQuests.onCommand(cmd_qQuests.java:68)
        at org.bukkit.command.PluginCommand.execute(PluginCommand.java:40)
        ... 14 more
    here is my YML:
    Code:
    # To create your own quests either follow the steps on:
    # http://dev.bukkit.org/server-mods/quests/pages/quests-yml/
    # or just copy a current quest and use the vars and common sense to
    # decrypt the YAML.
    '0':
      info:
        name: Diamonds!
        messageStart: Hey! Can you go get my 5 diamonds! I'll pay you 5000
        messageEnd: Thanks! Now I can feed my lava dragon! ;)
      tasks:
        '0':
          type: collect
          object:
            id: 264
            name: Diamonds
          amount: 5
      market:
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: 0
            health: 0
            hunger: 0
        reward:
          money: 5000
          health: 0
          hunger: 0
    '1':
      info:
        name: Food
        messageStart: Will you get me 5 bread for my dinner, I will share!
        messageEnd: Thanks! I fed you too!
      tasks:
        '1':
          type: collect
          object:
            id: 297
            name: Bread
          amount: 5
      market:
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: 0
            health: 0
            hunger: 0
        reward:
          money: 0
          health: 2
          hunger: 10
    '3':
      info:
        name: Zombies
        messageStart: Tell ya what, you kill some zombies for me, And I will pay you 10 gold per zombie!
        messageEnd: That should put a damper on there population!
      tasks:
        '3':
          type: Kill
          object:
            name: Zombie
          amount: 5
      market:
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: 0
            health: 0
            hunger: 0
        reward:
          money: 50
          health: 0
          hunger: 0
     
  19. Offline

    quaz3l

    r3v_sisco
    Try changing the '3': nodes to '2': for the root node, and '0': for the tasks like this:
    Code:
    # To create your own quests either follow the steps on:
    # http://dev.bukkit.org/server-mods/quests/pages/quests-yml/
    # or just copy a current quest and use the vars and common sense to
    # decrypt the YAML.
    '0':
      info:
        name: Diamonds!
        messageStart: Hey! Can you go get my 5 diamonds! I'll pay you 5000
        messageEnd: Thanks! Now I can feed my lava dragon! ;)
      tasks:
        '0':
          type: collect
          object:
            id: 264
            name: Diamonds
          amount: 5
      market:
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: 0
            health: 0
            hunger: 0
        reward:
          money: 5000
          health: 0
          hunger: 0
    '1':
      info:
        name: Food
        messageStart: Will you get me 5 bread for my dinner, I will share!
        messageEnd: Thanks! I fed you too!
      tasks:
        '0':
          type: collect
          object:
            id: 297
            name: Bread
          amount: 5
      market:
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: 0
            health: 0
            hunger: 0
        reward:
          money: 0
          health: 2
          hunger: 10
    '2':
      info:
        name: Zombies
        messageStart: Tell ya what, you kill some zombies for me, And I will pay you 10 gold per zombie!
        messageEnd: That should put a damper on there population!
      tasks:
        '0':
          type: kill
          object:
            name: Zombie
          amount: 5
      market:
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: 0
            health: 0
            hunger: 0
        reward:
          money: 50
          health: 0
          hunger: 0
    Also, 'Kill' needs to be lower case so 'kill' its in the yaml above.
     
  20. Offline

    dRyk

    Not working with iConomy 6 with Vault, Quests work! (Except it doesn't allow me to reconfig the config? idk.. Rewards don't work.. any Fix?
     
  21. Offline

    quaz3l

  22. Offline

    dRyk

    That Fix still didn't work, and rewards are not working.. Here is my Quest file


    Code:
    # To create your own quests either follow the steps on:
    # http://dev.bukkit.org/server-mods/quests/pages/quests-yml/
    # or just copy a current quest and use the vars and common sense to
    # decrypt the YAML.
    '0':
      info:
        name: First things first.
        messageStart: Help me get started! Make me the beginners essentials.
        messageEnd: Thank you very much!
      tasks:
        '0':
          type: damage
          object:
            id: 17
            name: Log
          amount: 10
        '1':
          type: collect
          object:
            id: 58
            name: Crafting Table
          amount: 1
        '2':
          type: collect
          object:
            id: 270
            name: Wooden Pickaxe
          amount: 1
        '3':
          type: collect
          object:
            id: 272
            name: Stone Sword
          amount: 1
      market:
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 20
          health: 0
          hunger: 0
    '1':
      info:
        name: Rocky
        messageStart: Go gather me alot of cobblestone (1000)!
        messageEnd: You Rock!
      tasks:
        '0':
          type: collect
          object:
            id: 4
            name: Cobblestone
          amount: 1000
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 50
          health: 0
          hunger: 0
    '2':
      info:
        name: Redstone freak!
        messageStart: Please gather me a bunch of redstone (64)!
        messageEnd: Awesomeness!
      tasks:
        '0':
          type: collect
          object:
            id: 331
            name: Redstone
          amount: 64
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 60
          health: 0
          hunger: 0
    '3':
      info:
        name: Break-in
        messageStart: Someone broke my doors. Craft me replacement!
        messageEnd: Thanks. They look more solid that old ones.
      tasks:
        '0':
          type: collect
          object:
            id: 324
            name: Wooden Door
          amount: 2
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 10
          health: 0
          hunger: 0
    '4':
      info:
        name: Wealthy Man
        messageStart: Get me some diamonds, peasant (5)!
        messageEnd: 5 more, now i got 100 diamonds.
      tasks:
        '0':
          type: collect
          object:
            id: 264
            name: Diamond
          amount: 5
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 125
          health: 0
          hunger: 0
    '5':
      info:
        name: Explosive
        messageStart: I need gunpowder. For what? Secret (50)!
        messageEnd: I'll make your mind blown!
      tasks:
        '0':
          type: collect
          object:
            id: 289
            name: Gunpowder
          amount: 50
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 40
          health: 0
          hunger: 0
    '6':
      info:
        name: Cactus juice for Sanchez
        messageStart: Oi gringo! Gather me some cacti (50)!
        messageEnd: Gracias!
      tasks:
        '0':
          type: collect
          object:
            id: 81
            name: Cactus
          amount: 50
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 10
          health: 0
          hunger: 0
    '7':
      info:
        name: Smith
        messageStart: I broke my arm and can't get this done. Can you do it for me (Sword)?
        messageEnd: Not bad for a rookie.
      tasks:
        '0':
          type: collect
          object:
            id: 267
            name: Iron Sword
          amount: 1
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 10
          health: 0
          hunger: 0
    '8':
      info:
        name: Sandman
        messageStart: I hate the beach! Remove it, and bring me its sandy carcass (150)!
        messageEnd: Sandy!
      tasks:
        '0':
          type: collect
          object:
            id: 12
            name: Sand
          amount: 150
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 50
          health: 0
          hunger: 0
    '9':
      info:
        name: Flowers
        messageStart: Its far too ugly around here. Bring me a bouquet of yellow flowers (64)!
        messageEnd: Aww, for me? -blushes-
      tasks:
        '0':
          type: collect
          object:
            id: 37
            name: Yellow Flower
          amount: 64
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 10
          health: 0
          hunger: 0
    '10':
      info:
        name: Obsidian for Portal
        messageStart: I never been in nether. Can you bring me some obsidian so i can make a portal (10)?
        messageEnd: Adventure, here i come!
      tasks:
        '0':
          type: collect
          object:
            id: 49
            name: Obsidian
          amount: 10
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 50
          health: 0
          hunger: 0
    '11':
      info:
        name: Banker
        messageStart: I have no space for my items! Make me lots of chests (10)!
        messageEnd: That's better.
      tasks:
        '0':
          type: collect
          object:
            id: 54
            name: Chests
          amount: 10
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 30
          health: 0
          hunger: 0
    '12':
      info:
        name: Musician
        messageStart: I need a Jukebox (4)!
        messageEnd: Don't you love music?
      tasks:
        '0':
          type: collect
          object:
            id: 84
            name: Jukebox
          amount: 4
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 100
          health: 0
          hunger: 0
    '13':
      info:
        name: Cold!
        messageStart: It's so cold here. Can you give me some coal and some wood (64)?
        messageEnd: Aaah, much better.
      tasks:
        '0':
          type: collect
          object:
            id: 263
            name: Coal
          amount: 64
        '1':
          type: collect
          object:
            id: 5
            name: Wood
          amount: 64
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 70
          health: 0
          hunger: 0
    '14':
      info:
        name: Laundry
        messageStart: I got nothing to hang my laundry on. Get me some string (32).
        messageEnd: You took so long that it's dry already!
      tasks:
        '0':
          type: collect
          object:
            id: 287
            name: String
          amount: 32
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 30
          health: 0
          hunger: 0
    '15':
      info:
        name: Journey to the Center of the Earth
        messageStart: We need an expensive tool for our journey!
      tasks:
        '0':
          type: collect
          object:
            id: 278
            name: Diamond Pickaxe
          amount: 1
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 60
          health: 0
          hunger: 0
    '16':
      info:
        name: Bank Robber
        messageStart: We'll share 50-50 if you make me some TnT (10)
        messageEnd: Here's your share. We never met, ok?
      tasks:
        '0':
          type: collect
          object:
            id: 46
            name: TnT
          amount: 10
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 100
          health: 0
          hunger: 0
    '17':
      info:
        name: Nice and Smooth
        messageStart: I need some smoothstone (rock). Gather me a mountainside (100)!
        messageEnd: It looks so smooth.
      tasks:
        '0':
          type: collect
          object:
            id: 1
            name: Rock
          amount: 100
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 50
          health: 0
          hunger: 0
    '18':
      info:
        name: Arrow to the knee
        messageStart: I gotta take that adventurer down! Get me arrows (64)!
      tasks:
        '0':
          type: collect
          object:
            id: 262
            name: Arrows
          amount: 64
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 20
          health: 0
          hunger: 0
    '19':
      info:
        name: I need flint to light the candles on my son's bday cake.
        messageStart:I need flint to light the candles on my son's bday cake.  It's his 16th bday (10).
      tasks:
        '0':
          type: collect
          object:
            id: 318
            name: Flint
          amount: 10
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 56
          health: 0
          hunger: 0
    '20':
      info:
        name: Ecologist
        messageStart: Let's save a forest. Bring me some saplings (25).
        messageEnd: Earth is safe now. Thank you.
      tasks:
        '0':
          type: collect
          object:
            id: 6
            name: Sapling
          amount: 25
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 15
          health: 0
          hunger: 0
    '21':
      info:
        name: Bricky
        messageStart: I need bricks. We're building something awesome (100).
        messageEnd: I just love 1x1 towers. Isn't it beautifu
      tasks:
        '0':
          type: collect
          object:
            id: 45
            name: Brick
          amount: 100
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 50
          health: 0
          hunger: 0
    '22':
      info:
        name: Ferdinand Magellan
        messageStart: I bet earth isn't flat. I need boats (5).
        messageEnd: Now i can sail around the world!
      tasks:
        '0':
          type: collect
          object:
            id: 333
            name: Boat
          amount: 5
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 40
          health: 0
          hunger: 0
    '23':
      info:
        name: Poet
        messageStart: I need more paper for my poems (64).
        messageEnd: Now where is my pen?
      tasks:
        '0':
          type: collect
          object:
            id: 339
            name: Paper
          amount: 64
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 50
          health: 0
          hunger: 0
    '24':
      info:
        name: Royal Kitten
        messageStart: Mister Baron is hungry! Cook him some fish (50)!
        messageEnd: Good Kitty.
      tasks:
        '0':
          type: collect
          object:
            id: 350
            name: Cooked Fish
          amount: 50
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 50
          health: 0
          hunger: 0
    '25':
      info:
        name: Dirty mind
        messageStart: I like to get dirty ;) bring me some dirt (1000).
        messageEnd: Now that's dirty!
      tasks:
        '0':
          type: collect
          object:
            id: 3
            name: Dirt
          amount: 1000
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 100
          health: 0
          hunger: 0
    '26':
      info:
        name: Darkness
        messageStart: It's too dark in the castle! Make me some torches (32).
        messageEnd: No more creepers spawning inside!
      tasks:
        '0':
          type: collect
          object:
            id: 50
            name: Torch
          amount: 32
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 30
          health: 0
          hunger: 0
    '27':
      info:
        name: Hoes
        messageStart: Yo man! Bring me some fine hoes!
        messageEnd: Stone hard hoe!
      tasks:
        '0':
          type: collect
          object:
            id: 291
            name: Stone Hoe
          amount: 2
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 10
          health: 0
          hunger: 0
    '28':
      info:
        name: Seeds
        messageStart: I need some seeds for my crops.
        messageEnd: Time for wheat!
      tasks:
        '0':
          type: collect
          object:
            id: 295
            name: Seeds
          amount: 10
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 10
          health: 0
          hunger: 0
    '29':
      info:
        name: Naked
        messageStart: I seem to have misplaced... my pants, fetch me some leather pants.
        messageEnd: Much warmer now.
      tasks:
        '0':
          type: collect
          object:
            id: 300
            name: Leather Pants
          amount: 1
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 40
          health: 0
          hunger: 0
    '30':
      info:
        name: Smelter
        messageStart: I need Lava Buckets for smelting! (3)
        messageEnd: Thanks! Lava is awesome for smelting.
      tasks:
        '0':
          type: collect
          object:
            id: 327
            name: Lava Bucket
          amount: 3
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 30
          health: 0
          hunger: 0
    '31':
      info:
        name: Shaolin training
        messageStart: Want to get stronger? Punch wood (5000)!
        messageEnd: Fists of steel!
      tasks:
        '0':
          type: damage
          object:
            id: 17
            name: Wood Punches
          amount: 1000
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 50
          health: 0
          hunger: 0
    '32':
      info:
        name: Replant
        messageStart: Help the world! Plant saplings (30)!
        messageEnd: You earned it.
      tasks:
        '0':
          type: place
          object:
            id: 6
            name: Saplings
          amount: 30
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 10
          health: 0
          hunger: 0
    '33':
      info:
        name: Monster problem
        messageStart: They spawn everywhere! Place some torches (1000)!
        messageEnd: I can build in peace now <3
      tasks:
        '0':
          type: place
          object:
            id: 50
            name: Torches
          amount: 1000
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 75
          health: 0
          hunger: 0
    '34':
      info:
        name: Death to leaves!
        messageStart: I cant see the sun! Cleare some leaves for me (100)!
        messageEnd: I'm getting a nice tan now :)
      tasks:
        '0':
          type: destroy
          object:
            id: 18
            name: Leaves
          amount: 100
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 30
          health: 0
          hunger: 0
    '35':
      info:
        name: Punch levers
        messageStart: Switches are fun! Punch em (100)!
        messageEnd: Fun stuff!
      tasks:
        '0':
          type: damage
          object:
            id: 69
            name: Levers Punched
          amount: 100
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 20
          health: 0
          hunger: 0
    '36':
      info:
        name: Windows 7
        messageStart: Install Windows, 7 of them.
        messageEnd: It crashed!
      tasks:
        '0':
          type: place
          object:
            id: 20
            name: Glass
          amount: 7
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 7
          health: 0
          hunger: 0
    '37':
      info:
        name: Dig it!
        messageStart: Punch grass, but dont break it! I like the noise (1000)!
        messageEnd: Thanks!
      tasks:
        '0':
          type: damage
          object:
            id: 2
            name: Grass Damage
          amount: 1000
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 100
          health: 0
          hunger: 0
    '38':
      info:
        name: Gotta dig it!
        messageStart: Punch dirt, but dont break it! I like the noise (1000)!
        messageEnd: Thanks...
      tasks:
        '0':
          type: damage
          object:
            id: 3
            name: Dirt Damage
          amount: 1000
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 100
          health: 0
          hunger: 0
    '39':
      info:
        name: Sandman
        messageStart: Destroy the sand (1000)!
        messageEnd: I feel sleepy now.
      tasks:
        '0':
          type: destroy
          object:
            id: 12
            name: Sand
          amount: 1000
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 50
          health: 0
          hunger: 0
    '40':
      info:
        name: Trap
        messageStart: My neighbors keep stepping on my flowers, make me a few dispensers (5)!
        messageEnd: Prepare to battle, neighbors!
      tasks:
        '0':
          type: collect
          object:
            id: 23
            name: Dispenser
          amount: 5
        fee:
          toJoin:
            money: 0
            health: 0
            hunger: 0
          toDrop:
            money: -50
            health: 0
            hunger: 0
        reward:
          money: 50
          health: 0
          hunger: 0
    
     
  23. Offline

    quaz3l

    dRyk
    Can you put that in a code block
     
  24. Offline

    dRyk

    Yup Sorry! Just would really like this Mod to work! :] Low CPU/Ram Usage and perfect for a boring afternoon in my server! haha, If I change the quest to the ones above it just doesn't save and re-adds the start one. And Rewards didn't seem to be working right away, but I will have to try that again once I can actually add Quests.
     
  25. Offline

    quaz3l

    Thanks for the kind words! :)

    Alright I figured it out, If the config throws a error it resets.... so back it up.

    Your config has a small error in it go paste it in http://yaml-online-parser.appspot.com/ and work through your errors.
     
  26. Offline

    SaTurN3

    Hey, first of all that's a nice plugin.

    Everybody on our server love this plugin and now we're going to open a second world. The problem is that it will be a creative mode world. We want to sell land there to the players (earned from doing quests) that they can build a big city. In creative mode you can give yourself all items and without permission nodes or a npc to complete the quests you can easily earn money without doing something.

    I just want to ask you when the permission nodes or npc-based quests are finished. So i could rewrite our permissions for every world.

    Greetings from Germany.
     
  27. Offline

    _Blu3Wolf_

    How I can make the quests in german???
    It didnĀ“t go.
     
  28. Offline

    ruffmin

    You should make a quest where you have to goto coordinates.
     
  29. Offline

    quaz3l

    Works with 1.2!
     
  30. Offline

    paragonxx99

    Please add Citizens support! Only thing missing, everything else is good!
     

Share This Page