share/hedgewars/Data/Scripts/Params.lua
author Wuzzy <Wuzzy2@mail.ru>
Thu, 22 Feb 2018 01:35:16 +0100
changeset 13055 5ceb8b0632c4
parent 9985 42cd42e44c9a
permissions -rw-r--r--
SimpleMission: Check regular victory at turn and or start

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