Examples of bankWithdraw()


Examples of net.milkbowl.vault.economy.Economy.bankWithdraw()

      String split[] = s2[1].split(" ");
      if(split.length == 3){
        Player p = Bukkit.getServer().getPlayer(split[1]);
        int funds = Integer.parseInt(split[2]);
        if(split[0].equals("remove")){
          econ.bankWithdraw(p.getName(), funds);
        }
      }
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.