cobra_tomtrein

Untitled

Jul 24th, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. key2 = {}
  2. change = function(letter)
  3. char = 0
  4. for i=1, #key2 do
  5. if letter == key2[i] then
  6. char = i + 34
  7. if char < #key2 then
  8. char = char - #key2
  9. end
  10. return key2[char]
  11. end
  12. end
  13. end
  14.  
  15. shell.run("delete", "key")
  16. shell.run("pastebin", "get", "0ZGDdCwk", "key")
  17. key = fs.open("key", "r")
  18.  
  19. while true do
  20. curline = key.readLine()
  21. if curline == nil then
  22. break
  23. end
  24. table.insert(key2, curline)
  25. print(curline)
  26. end
Advertisement
Add Comment
Please, Sign In to add comment