Advertisement
Guest User

asdasd

a guest
Jul 22nd, 2014
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.99 KB | None | 0 0
  1. Tabela o nazwie "users"        
  2.     this.userID = rs.getInt("userID");
  3.         this.x = rs.getInt("x");
  4.         this.y = rs.getInt("y");
  5.         this.z = rs.getInt("z");
  6.         this.createHome(rs.getString("home"));
  7.         this.nick = rs.getString("nick");
  8.         this.world = rs.getString("world");
  9.         this.mute = rs.getString("mute");
  10.         this.fly = rs.getByte("fly");
  11.         this.god = rs.getByte("god");
  12.         this.muteTime = rs.getLong("muteTime");
  13.         this.gamemode = GameMode.getByValue((int)rs.getByte("gamemode"));
  14.         this.plecak = Main.deserializeItemStacks(rs.getString("plecak"));
  15.         this.itemshop = Main.deserializeItemStacks(rs.getString("itemshop"));
  16.         this.pkt = rs.getInt("pkt");
  17.         this.lvl = rs.getInt("lvl");
  18. Tabela o nazwie "bans"      
  19.         this.banID = rs.getInt("banID");
  20.         this.user = Datasource.getUserByNick(rs.getString("nick"));
  21.         this.reason = rs.getString("powod");
  22.         this.time = rs.getLong("time");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement