Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 8th, 2012  |  syntax: None  |  size: 0.15 KB  |  hits: 8  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. loadstring = function(f,n)
  2.         local fun = loadstring(f,n)
  3.         if fun then
  4.             setfenv(fun,safe_env)
  5.         end
  6.         return fun
  7. end