Sep 25th 2016 #61 Quote from Miwarre Not sure to understand. I mean. How to run Plugin in the game? Java package myplugin; import net.risingworld.api.Plugin; public class MyPlugin extends Plugin { @Override public void onEnable(){ System.out.println("My Plugin enabled!"); } @Override public void onDisable(){ System.out.println("My Plugin disable!"); } } Display More
Sep 25th 2016 #62 Quote from sg-1 I mean. How to run Plugin in the game? Java package myplugin; import net.risingworld.api.Plugin; public class MyPlugin extends Plugin { @Override public void onEnable(){ System.out.println("My Plugin enabled!"); } @Override public void onDisable(){ System.out.println("My Plugin disable!"); } } Display More The API is not fully implemented yet but once it is Red51 will post on how it all works