function cmd_deldesc(arg) -- один аргумент в самой функции, в команде вводить три аргумента через пробел
local arg = split(arg, '%s+', false) -- с одного получаем несколько
sampAddChatMessage(arg[1].." "..arg[2], -1) -- выведет первый и второй аргумент
end
function split(str, delim, plain)
local tokens, pos, plain = {}, 1, not (plain == false)
repeat
local npos, epos = string.find(str, delim, pos, plain)
table.insert(tokens, string.sub(str, pos, npos and npos - 1))
pos = epos and epos + 1
until not pos
return tokens
end