Advertisement
Davidgumazon03

Code Generator 1Bit [DGU] [LUA] [2]

May 21st, 2015
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. A Simple Working Code Generator for "Google's LUA Compiler"
  2.  
  3. Instruction:
  4. 1. Download "Google's LUA Compiler"
  5. https://code.google.com/p/luaforwindows/
  6. 2. Install the Compiler
  7. 3. Open "LUA.lnk" in Desktop
  8. 4. Copy this Code Below
  9. -----------------------------------------------------------------------------------------------------------------
  10. function genCode(_) _i=_ FinCode="code: " for i=1,_i do if i==1 then InitCode=tostring(math.random(1,9)) else InitCode=tostring(math.random(0,9)) end FinCode=FinCode..InitCode end print(FinCode) end
  11. -----------------------------------------------------------------------------------------------------------------
  12. 5. Click "Lua" above
  13. 6. Click "Edit"
  14. 7. Click "Paste"
  15. 8. Click "Enter"
  16. 9. Read Below
  17.  
  18. Command:
  19. Type "gencode(amount)" then press "Enter" or/and read Syntax Below
  20.  
  21. Syntax:
  22. genCode([val]column)
  23. 12345678901234567890 = 20 = Generates 20 Random Codes => 38278996322803060092
  24.  
  25. Samples:
  26. genCode(1)
  27. code: 5
  28. genCode(10)
  29. code: 1518544887
  30. genCode(10)
  31. code: 2875300311
  32. genCode(7)
  33. code: 9410035
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement