RegisterCommand("setEmitterProbeLength", function(src, args, raw)
local probeLength = (tonumber(args[1]) + 0.0)
print("Extending emitter probes to: ", probeLength)
SetEmitterProbeLength(probeLength)
end)
RegisterCommand("resetEmitterProbeLength", function()
print("Resetting emitter probes to default settings")
SetEmitterProbeLength(20.0)
end)