I discovered after creating a quick "anti backdoor" script :
function RunString(sCode)
print("Blocking Runstring:", sCode)
end
That a script is trying to spawn an HL2 helicopter using RunString
But it doesn't write what script is executing that code, how can I find that ?
(i have no leaked addon on my server)
debug.getinfo
you could also do something like
function RunString(string
error(string)
end
RunStringEx=RunString
CompileString=Runstring
and when it throws an error, look at part three of the stack
Thanks it worked !
Sorry, you need to Log In to post a reply to this thread.