Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. local encriptation = {
  2. 1 = 'a',
  3. 2 = 'b',
  4. 3 = 'c',
  5. 4 = 'd',
  6. 5 = 'e',
  7. 6 = 'f',
  8. 7 = 'g',
  9. 8 = 'h',
  10. 9 = 'i',
  11. 10 = 'j',
  12. 11 = 'k',
  13. 12 = 'l',
  14. 13 = 'n',
  15. 14 = 'm',
  16. 15 = 'ñ',
  17. 16 = 'o',
  18. 17 = 'p',
  19. 18 = 'q',
  20. 19 = 'r',
  21. 20 = 's',
  22. 21 = 't',
  23. 22 = 'u',
  24. 23 = 'v',
  25. 24 = 'w',
  26. 25 = 'x',
  27. 26 = 'y',
  28. 27 = 'z',
  29. 28 = '!',
  30. 29 = '?'.
  31. 30 = '¡',
  32. 31 = '¿',
  33. 32 = '.',
  34. 33 = ',',
  35. 34 = ':',
  36. 35 = ';',
  37. 36 = '=',
  38.  
  39. }
  40.  
  41. local message1 = encriptation[8] + encriptation[16] + encriptation[12] + encriptation[1]
  42. term.write(message1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement