share/hedgewars/Data/Scripts/Params.lua
author S-D-
Thu, 19 Sep 2019 23:39:40 +0300
changeset 15438 5fcdc072d706
parent 9985 42cd42e44c9a
permissions -rw-r--r--
Ignore chat messages from ignore list nicks in game too

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