An enhanced and bukkit-like API for Shoebill
This shows an example usage for the scheduler framework:
@Override
public void onEnable() {
Resource res = this;
// Executes the given runnable every 200 Ticks.
// 1 Tick = 50ms, so it will print the message every 10 seconds
PlusServer.get().getScheduler().runTaskTimerAsynchronously(res, new PlusRunnable() {
int i = 1;
@Override
public void run() {
PlusServer.get().getLogger().info("Scheduler Test: #" + i);
i++;
}
}, 0, 200);
}Output:
- Same as Sponge's Contributing Guidelines
- We compile with Java 8, so use the Java 8 Coding Standards.
This work is licensed under an GNU Affero General Public Licenese v3. For more information, read the LICENSE file.
- Implement new event system
- Implement new scheduler system
- Implement new command system
- Implement new plugin system/wrapper(?)
- Add wiki and explain how to use this
