share/hedgewars/Data/Scripts/Params.lua
author Wuzzy <almikes@aol.com>
Wed, 23 Nov 2016 13:40:06 +0100
changeset 12022 a315ded26330
parent 9985 42cd42e44c9a
permissions -rw-r--r--
HedgeEditor: Remove hardcoded ammo names in favor of GetAmmoName

-- 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