How Do I Disable Lua Errors?

I use a macro to toggle it on and off-

/run if GetCVar(“ScriptErrors”)==“1” then SetCVar(“ScriptErrors”,“0”);print(“Show LUA Errors: Off”);else SetCVar(“ScriptErrors”,“1”);print(“Show LUA Errors: On”);end

12 Likes