Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.29 KB | None | 0 0
  1. ```
  2. if c == " " then
  3. table.insert(t," ")
  4. end
  5.  
  6. if c == "a" then
  7. table.insert(t,"Í")
  8. end
  9. if c == "b" then
  10. table.insert(t,"□")
  11. end
  12. if c == "c" then
  13. table.insert(t,"À")
  14. end
  15. if c == "d" then
  16. table.insert(t,"ÇÇ")
  17. print("No D, instead said AD")
  18. end
  19. if c == "e" then
  20. table.insert(t,"b")
  21. end
  22. if c == "f" then
  23. table.insert(t,"") --cant import?
  24. end
  25. if c == "g" then
  26. table.insert(t,"℮")
  27. end
  28. if c == "h" then
  29. table.insert(t,"╤")
  30. end
  31. if c == "i" then
  32. table.insert(t,"ф")
  33. end
  34. if c == "j" then
  35. -- table.insert(t,"?") --cant find
  36. print("No J")
  37. end
  38. if c == "k" then
  39. table.insert(t,"À")
  40. end
  41. if c == "l" then
  42. table.insert(t,"Ð")
  43. end
  44. if c == "m" then
  45. table.insert(t,"ñ")
  46. end
  47. if c == "n" then
  48. table.insert(t,"Ћ")
  49. end
  50. if c == "o" then
  51. table.insert(t,"m")
  52. end
  53. if c == "p" then
  54. -- table.insert(t,"?") --cant find
  55. print("No p")
  56. end
  57. if c == "q" then
  58. -- table.insert(t,"?") --cant find
  59. print("No q")
  60. end
  61. if c == "r" then
  62. table.insert(t,"Ç")
  63. end
  64. if c == "s" then
  65. table.insert(t,"ƒ")
  66. end
  67. if c == "t" then
  68. table.insert(t,"Ё")
  69. end
  70. if c == "u" then
  71. table.insert(t,"p")
  72. end
  73. if c == "v" then
  74. table.insert(t,"ê")
  75. end
  76. if c == "w" then
  77. table.insert(t,"№")
  78. end
  79. if c == "x" then
  80. -- table.insert(t,"?") --cant find
  81. print("No x")
  82. end
  83. if c == "y" then
  84. table.insert(t,"d")
  85. end
  86. if c == "z" then
  87. -- table.insert(t,"?") --cant find
  88. print("No z")
  89. end
  90. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement