Advertisement
Ghureg

Menu example

Jun 20th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 5.66 KB | None | 0 0
  1. ###Any and all code in this paste is copyright to Ghureg please if used give credit to creator###
  2. Grille:
  3.     spell-class: ".PassiveSpell"
  4.     always-granted: true
  5.     triggers:
  6.         - rightclickentity  player
  7.     chance: 100
  8.     cooldown: 0
  9.     spells:
  10.        - grille_menu
  11.     modifiers:
  12.        - inregion world:Grille required
  13. Grillebuildtalk:
  14.     spell-class: ".PassiveSpell"
  15.     always-granted: true
  16.     triggers:
  17.         - rightclickentity  player
  18.     chance: 100
  19.     cooldown: 0
  20.     spells:
  21.        - grille_menu
  22.     modifiers:
  23.        - inregion buildworld:Grille required
  24. Grillecreativetalk:
  25.     spell-class: ".PassiveSpell"
  26.     always-granted: true
  27.     triggers:
  28.         - rightclickentity  player
  29.     chance: 100
  30.     cooldown: 0
  31.     spells:
  32.        - grille_menu
  33.     modifiers:
  34.        - inregion SFCREATIVE:Grille required
  35. Grillelobbytalk:
  36.     spell-class: ".PassiveSpell"
  37.     always-granted: true
  38.     triggers:
  39.         - rightclickentity  player
  40.     chance: 100
  41.     cooldown: 0
  42.     spells:
  43.        - grille_menu
  44.     modifiers:
  45.        - inregion lobby:Grille required
  46. Grilleneathertalk:
  47.     spell-class: ".PassiveSpell"
  48.     always-granted: true
  49.     triggers:
  50.         - rightclickentity player
  51.     chance: 100
  52.     cooldown: 0
  53.     spells:
  54.        - grille_menu
  55.     modifiers:
  56.        - inregion world_nether:Grille required
  57. Grilleendtalk:
  58.     spell-class: ".PassiveSpell"
  59.     always-granted: true
  60.     triggers:
  61.         - rightclickentity player
  62.     chance: 100
  63.     cooldown: 0
  64.     spells:
  65.        - grille_menu
  66.     modifiers:
  67.        - inregion world_the_end:Grille required
  68. grille_menu:
  69.     spell-class: ".MenuSpell"
  70.     always-granted: true
  71.     bypass-normal-cast: false
  72.     title: "Choose where you want to travel"
  73.     options:
  74.         PermExample:
  75.             slot: 0
  76.             item:
  77.                 type: stick
  78.                 name: "Bye a X perm"
  79.             spell: grille_perm
  80.             modifiers:
  81.                - hasitem 264 required
  82.         world:
  83.             slot: 4
  84.             item:
  85.                 type: grass
  86.                 name: "Travel to the Main world"
  87.             spell: grille_world
  88.             modifiers:
  89.                - hasitem 264 required
  90.         buildworld:
  91.             slot: 5
  92.             item:
  93.                 type: sponge
  94.                 name: "Travel to the Building world"
  95.             spell: grille_buildworld
  96.             modifiers:
  97.                - hasitem 264 required
  98.         lobby:
  99.             slot: 6
  100.             item:
  101.                 type: cake
  102.                 name: "Travel to the mini-game world"
  103.             spell: grille_lobby
  104.             modifiers:
  105.                - hasitem 264 required
  106.         creative:
  107.             slot: 7
  108.             item:
  109.                 type: golden_apple
  110.                 name: "Travel to the Test Town world"
  111.             spell: grille_creative
  112.             modifiers:
  113.                - hasitem 264 required
  114.         neather:
  115.             slot: 3
  116.             item:
  117.                 type: glowstone
  118.                 name: "Travel to Hell"
  119.             spell: grille_neather
  120.             modifiers:
  121.                - hasitem 264 required
  122.         end:
  123.             slot: 2
  124.             item:
  125.                 type: obsidian
  126.                 name: "Travel to the End"
  127.             spell: grille_end
  128.             modifiers:
  129.                - hasitem 264 required
  130.         other:
  131.             slot: 1
  132.             item:
  133.                 type: bedrock
  134.                 name: "Travel to the misc world"
  135.             spell: grille_other
  136.             modifiers:
  137.                - hasitem 264 required
  138.         other2:
  139.             slot: 0
  140.             item:
  141.                 type: bedrock
  142.                 name: "Travel to the misc2 world"
  143.             spell: grille_other2
  144.             modifiers:
  145.                - hasitem 264 required
  146. grille_perm:
  147.     spell-class: ".ExternalCommandSpell"
  148.     execute-on-console-instead: true
  149.     command-to-execute:
  150.        - "command to give player perm using %a instead of player name"
  151.     cost:
  152.        - 264 1
  153. grille_world:
  154.     spell-class: ".ExternalCommandSpell"
  155.     always-granted: true
  156.     execute-on-console-instead: false
  157.     temporary-op: true
  158.     cost:
  159.        - 264 1
  160.     command-to-execute:
  161.        - "mw goto world"
  162. grille_buildworld:
  163.     spell-class: ".ExternalCommandSpell"
  164.     always-granted: true
  165.     execute-on-console-instead: false
  166.     temporary-op: true
  167.     cost:
  168.        - 264 1
  169.     command-to-execute:
  170.        - "mw goto buildworld"
  171. grille_lobby:
  172.     spell-class: ".ExternalCommandSpell"
  173.     always-granted: true
  174.     execute-on-console-instead: false
  175.     temporary-op: true
  176.     cost:
  177.        - 264 1
  178.     command-to-execute:
  179.        - "mw goto lobby"
  180. grille_creative:
  181.     spell-class: ".ExternalCommandSpell"
  182.     always-granted: true
  183.     execute-on-console-instead: false
  184.     temporary-op: true
  185.     cost:
  186.        - 264 1
  187.     command-to-execute:
  188.        - "mw goto SFCREATIVE"
  189. grille_neather:
  190.     spell-class: ".ExternalCommandSpell"
  191.     always-granted: true
  192.     execute-on-console-instead: false
  193.     temporary-op: true
  194.     cost:
  195.        - 264 1
  196.     command-to-execute:
  197.        - "mw goto world_nether"
  198. grille_end:
  199.     spell-class: ".ExternalCommandSpell"
  200.     always-granted: true
  201.     execute-on-console-instead: false
  202.     temporary-op: true
  203.     cost:
  204.        - 264 1
  205.     command-to-execute:
  206.        - "mw goto world_the_end"
  207. grille_other:
  208.     spell-class: ".ExternalCommandSpell"
  209.     always-granted: true
  210.     execute-on-console-instead: false
  211.     temporary-op: true
  212.     cost:
  213.        - 264 1
  214.     command-to-execute:
  215.        - "mw goto syenaros"
  216. grille_other2:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement