function onSay(cid, words, param)
if(param == "") then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command requires param.")
return FALSE
end
local tmpValue = string.explode(param, ",")
if(tmpValue[3]) then
setPlayerStorageValue(getPlayerByName(tmpValue[1]),tmpValue[2],tmpValue[3])
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "".. tmpValue[2] .." set to ".. tmpValue[3] .." to player " .. tmpValue[1].. ".")
else
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Invalid param specified.")
return FALSE
end
end