Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.46 KB

README.md

File metadata and controls

37 lines (28 loc) · 1.46 KB

ReActions

RuBukkit thread | Documentation (Russian) | Original

ReActions plugin for Paper is a tool to handle server events. It gives you an ability to check for specific flags, and by its results, perform different actions. Syntax is unbelievable simple:

EVENT:
  activator:
    condition-check: condition
    flags:
     - FLAG=test
     - ANOTHER_FLAG=test:value
    actions:
     - ACTION=do:something
    reactions:
     - ACTION=do:{something, but if flag wasn't successful}
     - ANOTHER_ACTION=do something else

Get it

To compile the plugin all you need is to have Maven. So, if you already have it, just execute mvn clean package.

You can get the latest stable release from the Releases Release tab.

Latest snapshot is available in the Actions Snapshot tab.

License

Project is published under GPL v3.

Also, project contains some of edited code from Quartz Scheduler.