Advertisement
Guest User

Untitled

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