naneer 1 Postado Setembro 22, 2011 Share Postado Setembro 22, 2011 (editado) function onSay(cid, words, param, channel) if(param == '') then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command requires param.") return true end local t = string.explode(param, ",") t[1] = tonumber(t[1]) if(not t[1]) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command requires numeric param.") return true end local pid = cid if(t[2]) then pid = getPlayerByNameWildcard(t[2]) if(not pid) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Player " .. t[2] .. " not found.") return true end end if(t[1] > 365) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You can only add max 365 vip days.") return true end sender = getPlayerByNameWildcard(cid) doAddVipDays(pid, t[1]) doPlayerSendTextMessage(cid, "You have added ".. t[1] .." vip days to ".. t[2]) doPlayerSendTextMessage(pid, sender .." just added you ".. t[1] .." vip days.") return true end Só queria saber como usa o comando Ex: /adddays God Xisde,15 day etc.. tae! me ajudem \z/ Editado Setembro 22, 2011 por naneer Link para o comentário Compartilhar em outros sites More sharing options...
Vodkart 1515 Postado Setembro 22, 2011 Share Postado Setembro 22, 2011 depende qual sistema vip do seu servidor! Link para o comentário Compartilhar em outros sites More sharing options...
Posts Recomendados