share/hedgewars/Data/Scripts/Params.lua
author Wuzzy <Wuzzy2@mail.ru>
Thu, 08 Mar 2018 00:54:12 +0100
changeset 13101 b500d07a50a1
parent 9985 42cd42e44c9a
permissions -rw-r--r--
German translation: “Grundlagentraining” → “Grundausbildung”

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