Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. public static void load(){
  2. FileConfiguration config = Main.getInst().getConfig();
  3.  
  4. port = config.getInt("mysql.port");
  5. user = config.getString("mysql.user");
  6. pass = config.getString("mysql.pass");
  7. host = config.getString("mysql.host");
  8. database = config.getString("mysql.database");
  9.  
  10. addPercent = config.getDouble("pvp.addPercent");
  11. lostPercent = config.getDouble("pvp.lostRank");
  12. startRank = config.getInt("pvp.startRank");
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement