31 lines
820 B
Java
31 lines
820 B
Java
|
package mineplex.votifier;
|
||
|
|
||
|
import org.bukkit.plugin.java.JavaPlugin;
|
||
|
|
||
|
import mineplex.core.account.CoreClientManager;
|
||
|
import mineplex.core.donation.DonationManager;
|
||
|
|
||
|
/**
|
||
|
* Created by shaun on 15-08-05.
|
||
|
*/
|
||
|
public class Votifier extends JavaPlugin
|
||
|
{
|
||
|
private String WEB_CONFIG = "webServer";
|
||
|
|
||
|
@Override
|
||
|
public void onEnable()
|
||
|
{
|
||
|
getConfig().addDefault(WEB_CONFIG, "http://accounts.mineplex.com/");
|
||
|
getConfig().set(WEB_CONFIG, getConfig().getString(WEB_CONFIG));
|
||
|
saveConfig();
|
||
|
|
||
|
String webServerAddress = getConfig().getString(WEB_CONFIG);
|
||
|
|
||
|
CoreClientManager clientManager = new CoreClientManager(this, webServerAddress);
|
||
|
DonationManager donationManager = new DonationManager(this, clientManager, webServerAddress);
|
||
|
|
||
|
|
||
|
VotifierManager vote = new VotifierManager(this, clientManager, donationManager);
|
||
|
}
|
||
|
}
|