function onSay(cid, words, param)
local param = string.explode(param, ",")
local player = getPlayerByNameWildcard(param[1])
local days = tonumber(param[2])
if isPlayer(player) and days then
doPlayerAddPremiumDays(player, param[2])
doPlayerSendTextMessage(player, MESSAGE_INFO_DESCR, "You have just received ".. days .." premium days. Please re-login for the premium account to take effect.")
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Player ".. param[1] .." received ".. days .." premium days.")
else
doPlayerSendCancel(cid, "Either the first param isn't an online player or the second param isn't a number.")
end
return true
end