Simonmaribo | Plugins
  • Introduktion
  • Plugins
    • Bande
      • Installation
      • Konfiguration
        • Config.yml
        • Messages.yml
        • Levels
        • GUI
        • Permissions
        • Settings
        • Shop
        • Leaderboard
      • Addons
        • Create Addon
          • BandeAddon classen.
        • Add your own level
      • Skript-Reflect Snippet
      • Java Docs
      • Placeholders
        • PlaceholderAPI
        • Indbygget Placeholders
        • GUI Placeholders
    • PrisonCells
      • Installation
      • Konfiguration
        • Config
        • Messages
      • Java Docs
    • ItemFlip
      • Installation
      • Konfiguration
        • Config
        • Messages
        • Item Aliases
      • Citizens integration
      • Java Docs
    • End Crates
      • Installation
      • Konfiguration
        • Config
        • Messages
    • Discord Link
      • Installation
      • Konfiguration
        • Config
        • Messages
    • Quests
      • Installation
      • Konfiguration
        • Config.yml
        • Messages.yml
      • Quests (missioner)
      • Menu
        • Gui
  • Additional Information
    • Discord
Powered by GitBook
On this page

Was this helpful?

  1. Plugins
  2. Quests

Quests (missioner)

Alle quests skal oprettes i mappen `/quests`

Det er muligt at lave sub-folders derinde for at organisere sig.

Quest Typer:

  • BLOCK_BREAK

    • Smadre bestemt blok et bestemt antal gange

      type: BLOCK_BREAK
      variable: STONE # Material
      required: 128 # Antal
  • BLOCK_PLACE

  • CHAT

    • Skriv bestemt besked i chatten

      type: CHAT
      variable: Quests er et Awesome Plugin! # Besked
  • CONSUME

  • PLAYER_FISH

  • NPC_CLICK (kræver Citizens)

    • Find / Klik på en NPC

      type: NPC_CLICK
      variable: 59 # id'et på NPC'en
    • Aflever items til NPC

      type: NPC_CLICK
      variable: 59 # id'et på NPC'en
      extra-variable: ROTTEN_FLESH # Material
      required: 64 # Antal
  • REGION_ENTER (kræver WorldGuard)

    • Gå ind i bestemt region:

      type: REGION_ENTER
      variable: mines # The Region
  • Opret en ticket for at få tilføjet flere events!

quests/blockbreak.yml
id: BlockPlaceExample
type: BLOCK_PLACE
variable: GLASS
required: 32 # default til 1
cooldown: 10000 # I antal sekunder
reward:
  commands:
    - "eco give {player} 560"
gui:
  title: "Placer - Example"
  material: GLASS
  description: "Placer 32x Glass"
  rewards:
    - " &8  - &a$560"

Last updated 1 year ago

Was this helpful?