TechRacer: Remove script parameter “helpDisabled”
Pointless since you can quickly toggle help anyway, so supporting
this script param only clutters the documentation.
-- Library for parameters handling
params = {}
function parseParams()
if ScriptParam ~= nil then
for k, v in string.gmatch(ScriptParam, "(%w+)=([^,]+)") do
params[k] = v
end
end
end