share/hedgewars/Data/Scripts/Params.lua
author Wuzzy <Wuzzy2@mail.ru>
Thu, 08 Mar 2018 01:22:00 +0100
changeset 13103 cf2a58dccc4a
parent 9985 42cd42e44c9a
permissions -rw-r--r--
CTF: Remove tardis and resurrector

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