Advertisement
Guest User

Untitled

a guest
Sep 16th, 2012
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. mysql> select * from logins where name = 'kra3zy1';
  2. +---------+----------------+------+-------+---------------------+
  3. | name | ip | paid | allow | lastOnline |
  4. +---------+----------------+------+-------+---------------------+
  5. | kra3zy1 | 68.66.102.54 | true | NULL | 2012-09-15 15:12:06 |
  6. | kra3zy1 | 65.183.108.102 | true | NULL | 2012-09-16 16:03:19 |
  7. +---------+----------------+------+-------+---------------------+
  8. 2 rows in set (0.00 sec)
  9.  
  10. mysql> select * from logins where name = 'Vaynord';
  11. +---------+----------------+------+-------+---------------------+
  12. | name | ip | paid | allow | lastOnline |
  13. +---------+----------------+------+-------+---------------------+
  14. | Vaynord | 68.66.102.54 | true | NULL | 2012-09-15 19:54:47 |
  15. | Vaynord | 65.183.108.102 | true | NULL | 2012-09-16 16:01:54 |
  16. +---------+----------------+------+-------+---------------------+
  17. 2 rows in set (0.00 sec)
  18.  
  19. the faction table is what stores the names of the groups you make in citadel:
  20. mysql> select * from faction where founder = 'Vaynord';
  21. +---------+---------+----------+
  22. | name | founder | password |
  23. +---------+---------+----------+
  24. | Vaynord | Vaynord | NULL |
  25. | kraezy | Vaynord | NULL |
  26. +---------+---------+----------+
  27. 2 rows in set (0.00 sec)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement