Other functions
Interract with bank
Adding money in the bank
try {
OuranosAPI.getInstance().addBankMoney(player, 20);
} catch (SQLException e) {
throw new RuntimeException(e);
}Removing money in the bank
try {
OuranosAPI.getInstance().removeBankMoney(player, 20);
} catch (SQLException e) {
throw new RuntimeException(e);
}Getting player balance
try {
double balance = OuranosAPI.getInstance().getBankBalance(player, 20);
} catch (SQLException e) {
throw new RuntimeException(e);
}Interacting with settlements
Getting discovered settlements
Getting discovered cities
Getting discovered villages
Getting settlement at specific location
Convert Settlement into Village or City
Interacting with world
Getting the climate
Getting the biome
Last updated