Advertisement
Guest User

Untitled

a guest
May 23rd, 2018
1,042
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. {
  2. assert = (function)
  3. tostring = (function)
  4. tonumber = (function)
  5. xpcall = (function)
  6. ipairs = (function)
  7. print = (function)
  8. pcall = (function)
  9. pairs = (function)
  10. error = (function)
  11. dofile = (function)
  12. unpack = (function)
  13. type = (function)
  14.  
  15. table
  16. {
  17. maxn = (function)
  18. sort = (function)
  19. remove = (function)
  20. insert = (function)
  21. }
  22.  
  23. _VERSION = Lua 5.1
  24. next = (function)
  25.  
  26. math
  27. {
  28. ceil = (function)
  29. tan = (function)
  30. log = (function)
  31. cos = (function)
  32. pi = 3.1415926535898
  33. tanh = (function)
  34. cosh = (function)
  35. sinh = (function)
  36. sin = (function)
  37. random = (function)
  38. ldexp = (function)
  39. floor = (function)
  40. sqrt = (function)
  41. huge = inf
  42. atan = (function)
  43. pow = (function)
  44. acos = (function)
  45. asin = (function)
  46. atan2 = (function)
  47. min = (function)
  48. max = (function)
  49. fmod = (function)
  50. log10 = (function)
  51. abs = (function)
  52. exp = (function)
  53. modf = (function)
  54. deg = (function)
  55. frexp = (function)
  56. rad = (function)
  57. }
  58.  
  59.  
  60. os
  61. {
  62. difftime = (function)
  63. time = (function)
  64. clock = (function)
  65. }
  66.  
  67. select = (function)
  68.  
  69. string
  70. {
  71. find = (function)
  72. rep = (function)
  73. upper = (function)
  74. lower = (function)
  75. sub = (function)
  76. match = (function)
  77. gmatch = (function)
  78. reverse = (function)
  79. byte = (function)
  80. char = (function)
  81. format = (function)
  82. len = (function)
  83. gsub = (function)
  84. }
  85.  
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement