killer64

crack

Jul 14th, 2013
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 0
  1. local s={0,0,0,0,0,0,0}
  2. local sc="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
  3. local c=1
  4. while true do
  5.     c=c+1
  6.     if c%1000==0 then
  7.         sleep(0)
  8.     end
  9.     local d=""
  10.     for k,v in pairs(s) do
  11.         d=d..string.sub(sc,v+1,v+1)
  12.     end
  13.     print(d)
  14.     if pcall(peripheral.call,"back","connect",d) then
  15.         error()
  16.     end
  17.     s[1]=s[1]+1
  18.     for k,v in pairs(s) do
  19.         if v>(#sc-1) then
  20.             s[k]=0
  21.             s[k+1]=s[k+1]+1
  22.         end
  23.     end
  24. end
Add Comment
Please, Sign In to add comment