Skip to content

Introduction

Sven Rahn edited this page May 25, 2018 · 19 revisions

Introduction

This page will help you to understand the basic structure of the plugin.

Aliases

Aliases are basically new, user-defined commands. For example, an alias can trigger the /give and /say command. This looks like this in the config:

"giveMeCookies" {
  commands = [
    "*give %player% minecraft:cookie 3",
    "*say %player% is hungry and just got three cookies!"
  ]
}

Read more about aliases

The execute commands

These type of commands are altering the execution of commands. For example, the execution is delayed, or only done if a condition is met. A list of these commands:

  • /cmdUtils execute whenOnline
  • /cmdUtils execute delayed
  • /cmdUtils execute if
  • /cmdUtils execute parsed

Read more about the execute commands

Clone this wiki locally