Advertisement
Pinkishu

testp

Jan 20th, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.41 KB | None | 0 0
  1. local db = {}
  2. db["Cobblestone"] = { altNames = {"Cobble","Cobble Stone","Crap"}, chest=1,slot=1,chestStackSize=64 }
  3. db["Oak Wood Planks"] = { altNames = {"Oak", "Oakwood", "Wooden Planks", "Planks"}, chest=1,slot=2,chestStackSize=64 }
  4. db["Netherrack"] = { altNames = {"Nether Rack","Nether"}, chest=2,slot=1,chestStackSize=64 }
  5.  
  6. local file = fs.open("retDB","w")
  7. file.writeLine(textutils.serialize(db))
  8. file.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement