Advertisement
kreezxil

grandexchange.lua

May 4th, 2019
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. local monitorSide = "top" -- the side the monitor is on
  2.  
  3. if peripheral.isPresent(monitorSide) and peripheral.getType(monitorSide) == "monitor" then
  4. term.redirect(peripheral.wrap(monitorSide))
  5. else
  6. print("No monitor found")
  7. return
  8. end
  9.  
  10. print("/ge buy <item> <meta> <amount> <price> [nbt]")
  11. print("/ge sell <item> <meta> <amount> <price> [nbt]")
  12. print("Place an offer to buy or sell an item")
  13. print("")
  14. print("/ge sellthis <qty to sell> <price per item>")
  15. print("sell the stack in hand")
  16. print("")
  17. print("/ge identify")
  18. print("get the deets of the held item")
  19. print("")
  20. print("/ge collect")
  21. print("get paid")
  22. print("")
  23. print("/ge buyoffers [page]")
  24. print("/ge selloffers [page]")
  25. print("/ge myoffers [page]")
  26. print("navigate the offers")
  27. print("")
  28. print("/ge canceloffer <offer number>")
  29. print("cancel an offer")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement