Hi,
I was so bored I wrote a small server crash script.

Just call this thread anywhere:
Code: Select all
crasher:
level.loop_protection = 0
while (1)
{
level.threadcount = int(level.threadcount) + 1 // this is for NIL stuff protection ;)
println "Started thread #" level.threadcount
thread crasher
}
end
My dedicated server could handle only 9 instances of this thread, after that it kills the server with a 'stack overflow' message. If you run the map once again, it'll just pop a red 'recursive error' text and the only thing you'll be able to do is to close the server.
Rookie One