API

All the events and methods of the plugin

Add DailyShop to your plugin

Since i don't have a public repositoty yet, you can go ahead and download the free version jar and add the jarfile to your classpath.

Get DailyShop Instance

    @Override
    public void onEnable() {
    
        DailyShop api = DailyShop.getInstance();
        shopsManager manager = api.getShopsManager();
    
    }

Events

/**
* Event called when a new shop
* is created. Cannot be cancelled
**/
public void foo(CreatedShopEvent e) {

    dShop shop = e.getShop;
    Timestamp time = e.getTimestamp();

}

Last updated