Advertisement
Guest User

ALPHACIM

a guest
Dec 30th, 2011
431
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.23 KB | None | 0 0
  1. local temp = nil
  2. local data = nil
  3. if not http then print( "Requires HTTP API" ) return end
  4. local file = http.get("http://minecraftcim.99k.org/cim.php")
  5. data = file:readLine()
  6. file:close()
  7. _tl = tonumber(string.sub(data, string.len(data))) + 2
  8. _t = string.sub(data, string.len(data) - _tl)
  9. _tl = string.sub(_t,-1)                                      
  10. _t = string.sub(_t, 1, string.len(_t) - 1)
  11. _el = string.sub(_t,-1)                                      
  12. _t = string.sub(_t, 1, string.len(_t) - 1)
  13. _e = string.sub(_t, string.len(_t) - _el + 1)
  14. _t = string.sub(_t, 1, string.len(_t) - _el)
  15. _sl = string.sub(_t,-1)                  
  16. _t = string.sub(_t, 1, string.len(_t) - 1)
  17. _s = _t                  
  18. data = string.sub(data,6,string.len(data) - (42 + _tl))
  19. temp = string.sub(data,_s,_e)
  20. data1 = string.sub(data, 1, _s - 1)
  21. data2 = string.sub(data, _e + 1)
  22. data = data1..data2
  23. temp = string.gsub(temp, "#S#", "")
  24. temp = string.gsub(temp, "#E#", " \n")
  25. temp = string.gsub(temp, "#A#", "#S#")
  26. temp = string.gsub(temp, "#B#", "#E#")
  27. temp = string.gsub(temp, "#C#", "\\n")
  28. data = string.gsub(data, "\"", "\\\"")
  29. temp = temp .. "decrypt(\""..data.."\")"
  30. test = loadstring(temp)
  31. setfenv( test, getfenv() )
  32. test()
  33. shell.run("CIMtemp")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement