Advertisement
Guest User

test

a guest
Mar 27th, 2014
1,136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.75 KB | None | 0 0
  1. trade = peripheral.wrap("right") -- The side of the trading post
  2. pages = {}
  3.  
  4. function getId() -- Retuns the villager ids needed for trading
  5.   return trade.getVillagerIds()
  6. end
  7.  
  8. function getTradeInfo(id) -- Returns trading information needed
  9.   local sold = trade.getItemSold(id,0)
  10.   local bought = trade.getItemBought(id,0)
  11.   return sold.name, sold.qty, sold.rawName, bought.name, bought.qty, id
  12. end
  13.  
  14. function isMissing(name) -- Checks if i already have the page or not
  15.     for index, page in pairs(pages) do
  16.         if page == name then
  17.             return false
  18.         end
  19.     end
  20.     return true
  21. end
  22.  
  23. function savePages() -- Saves the pages table in a file so that it will still remember all the pages after a reload
  24.     if fs.exists("pages.dat") then
  25.         fs.delete("pages.dat")
  26.     end
  27.     file = fs.open("pages.dat", "w")
  28.     file.write(textutils.serialize(pages))
  29.     file.close()
  30. end
  31.  
  32. function loadPages() -- Load the pages table from save
  33.     if fs.exists("pages.dat") then
  34.         file = fs.open("pages.dat", "r")
  35.         pages = textutils.unserialize(file.readAll())
  36.         file.close()
  37.     end
  38. end
  39.  
  40. loadPages()
  41. while true do
  42.     ids = getId() -- First get the ids of all close villagers
  43.     term.clear()
  44.     term.setCursorPos(1,1)
  45.     for index, idnum in pairs(ids) do -- Loop through the ids
  46.         sold,soldQty ,rawName,bought,boughtQty, id = getTradeInfo(idnum) -- Get information on what the villagers is trading
  47.         if rawName == "item.myst.page" and isMissing(sold) then -- if it is a page and i dont already have it
  48.             if trade.performTrade(id, 0) then -- Then buy it
  49.                 print("New page added!")
  50.                 pages[#pages+1] = sold -- Add the page to the table
  51.                 savePages() -- Save the pages table to file
  52.             else
  53.                 print("Failed to buy page!") -- Probably not enough emeralds
  54.             end
  55.         end
  56.     end
  57.     sleep(3)
  58. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement