Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. SELECT
  2. log_aoh.log.time AS "When",
  3. player_aoh.player.`name` AS Who,
  4. log_aoh.log.how AS WhatDid,
  5. log_aoh.log.what AS ItemID,
  6. log_aoh.log.vnum AS ItemVnum,
  7. player_aoh.item_proto.locale_name AS ItemName,
  8. player_aoh.item.count AS Count,
  9. player_aoh.item.Socket0,
  10. player_aoh.item.Socket1,
  11. player_aoh.item.Socket2,
  12. player_aoh.item.AttrType0,
  13. player_aoh.item.AttrValue0,
  14. player_aoh.item.AttrType1,
  15. player_aoh.item.AttrValue1,
  16. player_aoh.item.AttrType2,
  17. player_aoh.item.AttrValue2,
  18. player_aoh.item.AttrType3,
  19. player_aoh.item.AttrValue3,
  20. player_aoh.item.AttrType4,
  21. player_aoh.item.AttrValue4,
  22. player_aoh.item.AttrType5,
  23. player_aoh.item.AttrValue5,
  24. player_aoh.item.AttrType6,
  25. player_aoh.item.AttrValue6
  26. FROM
  27. log_aoh.log
  28. INNER JOIN player_aoh.player ON log_aoh.log.who = player_aoh.player.id
  29. INNER JOIN player_aoh.item ON log_aoh.log.what = player_aoh.item.id
  30. INNER JOIN player_aoh.item_proto ON log_aoh.log.vnum = player_aoh.item_proto.vnum
  31. WHERE log_aoh.log.how in ("EXCHANGE_GIVE", "EXCHANGE_TAKE", "DROP", "SAFEBOX PUT", "SAFEBOX GET", "DEAD_DROP")
  32. AND player_aoh.player.`name` = "[GA]T4UMP";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement