Advertisement
Guest User

Untitled

a guest
Jun 21st, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. # Defines maximum amount of daily quests player can have from THIS job
  2. # This will not have effect on overall quest amount player will have
  3. maxDailyQuests: 3
  4. # Daily quests
  5. # Each job can have as many daily quests as you want
  6. # Players will have access to quests from jobs he is currently working at
  7. Quests:
  8. # Quest identification. Can be any ONE word or number or both of them. This doesnt have any real meaning but it cant repeat
  9. 1:
  10. # Quest name used for quests list, don't forget to enclose it with " "
  11. Name: "Break Oak wood"
  12. # Quest action can be any valid job action. Look at lower for all possible action types
  13. Action: Break
  14. # Target id or name. Comes in same format as it is for regular job action
  15. Target: "17-0"
  16. # Amount of actions players should perform to complete this quest
  17. Amount: 300
  18. # Command list to be performed after quest is finished.
  19. # Use [playerName] to insert players name who finished that quest
  20. RewardCommands:
  21. - "money give [playerName] 500"
  22. - "msg [playerName] Completed quest!"
  23. # Quest description to be used to explain quest requirements or rewards for player
  24. RewardDesc:
  25. - "Break 300 Oak wood"
  26. - "Get 500 bucks for this"
  27. # Defines chance in getting this quest.
  28. # If you have set 10 quests and player can have only 2, then quests with biggest chance will be picked most likely
  29. # This will allow to have some rare quests with legendary rewards
  30. Chance: 40
  31. # Defines to which job level you want to give out this quest.
  32. # Keep in mind that player will keep quest even if he is over level limit if he got new one while being under
  33. # In example: player with level 2 takes quests and levels up to level 5, he still can finish this quest and after next quest reset (check general config file) he will no longer have option to get this quest
  34. toLevel: 3
  35. # Defines from which level you want to give option to get this quest
  36. # You can use both limitations to have limited quests for particular job level ranges
  37. fromLevel: 5
  38. 2:
  39. Name: "Zombie killer"
  40. Action: Kill
  41. Target: Zombie
  42. Amount: 50
  43. RewardCommands:
  44. - "money give [playerName] 2000"
  45. - "msg [playerName] Completed quest!"
  46. RewardDesc:
  47. - "Kill 50 zombies"
  48. - "Get 2000 for this!"
  49. 3:
  50. Name: "Chicken cooker"
  51. Action: Smelt
  52. Target: "COOKED_CHICKEN"
  53. Amount: 20
  54. RewardCommands:
  55. - "money give [playerName] 300"
  56. - "msg [playerName] Completed quest!"
  57. RewardDesc:
  58. - "Cook some chicken breasts"
  59. - "Get 300 for this!"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement