Hello, having trouble figuring out how to check a players in game balance, am I able to get an example on how to check a players in game balance? Thanks, Panda !
http://dev.bukkit.org/bukkit-plugins/vault/ The front page literally contains a code example on how to get the vault service provider.
Got that, I mean what's the method to check a players balance? only one money related that I can use is getMoney(), but according to eclipse, that's wrong?
Every method from the Economy API here: https://github.com/MilkBowl/VaultAP.../java/net/milkbowl/vault/economy/Economy.java
"thats wrong" - Eclipse does not have the error message "thats wrong" so we cannot help you with made-up error messages. Gesendet von meinem Nexus 5 mit Tapatalk
you can create your own method getMoney() using the vault hook if I were you I'm going to start reading their link given and examine how to do that. if I am not mistaken its like Code (Java): public int getMoney(Player player) { return player.balance; }