Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. try {
  2. ResultSet myloc = MySQL.onQuery("SELECT * FROM lobbylogoutlocation WHERE player = '" + uuid + "';");
  3. double x = myloc.getDouble("X");
  4. double y = myloc.getDouble("Y");
  5. double z = myloc.getDouble("Z");
  6. double yaw = myloc.getDouble("Yaw");
  7. double pitch = myloc.getDouble("Pitch");
  8. String worldname = myloc.getString("world");
  9. System.out.println(x + y + z + yaw + pitch + worldname);
  10. } catch (SQLException e1) {
  11. e1.printStackTrace();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement