does anyone know how to make a detector, that detects if my program is beginning to crash. (
Like in the firewolf crash system)
thanks in advance
Posted 31 December 2012 - 10:58 AM
Posted 31 December 2012 - 11:04 AM
local function stupidFunction() callingANilValue() end local ok, err = pcall(stupidFunction) if not ok then print(err) end
Posted 31 December 2012 - 11:11 AM
0 members, 1 guests, 0 anonymous users