Advertisement
Guest User

Untitled

a guest
Sep 20th, 2011
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.55 KB | None | 0 0
  1. example:
  2.     texts:
  3.         description: A build quest
  4.         completion: <g>You win! Here's some stone.
  5.         acceptance: <g>Challenge <y>accepted<g>.
  6.     requirements:
  7.         '0':
  8.             type: rank
  9.             rank: 'your-rank-here'
  10.     repeats: -1
  11.     objectives:
  12.         '0':
  13.             '0':
  14.                 type: build
  15.                 materialid: 1
  16.                 amount: 3
  17.                 message: Built. Now come back here!
  18.     rewards:
  19.         '0':
  20.             type: item
  21.             id: 1
  22.             amount: 64
  23.             take: false
  24. example2:
  25.     texts:
  26.         description: A fetch quest
  27.         completion: <g>You win! Give me that stone.
  28.         acceptance: <g>Challenge <y>accepted<g>.
  29.     repeats: 1
  30.     objectives:
  31.         '0':
  32.             '0':
  33.                 type: collect
  34.                 materialid: 1
  35.                 amount: 3
  36.                 message: A voice echoes... "I want that stone now!"
  37.     rewards:
  38.          '0':
  39.             type: item
  40.             id: 1
  41.             amount: 3
  42.             take: true
  43. example3:
  44.     texts:
  45.         description: A mob quest - kill any 3 of zombie, pig or chicken
  46.         completion: <g>You win!
  47.         acceptance: <g>Challenge <y>accepted<g>.
  48.     repeats: 2
  49.     objectives:
  50.         '0':
  51.             '0':
  52.                 type: hunt
  53.                 string: 'zombie, pig, chicken'
  54.                 amount: 3
  55.                 message: Monsters slain \o/
  56.     rewards:
  57.          '0':
  58.             type: item
  59.             id: 1
  60.             amount: 3
  61.             take: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement