Ir para conteúdo
  • 0

kolosso

Pergunta

4 respostass a esta questão

Posts Recomendados

  • 0
function onSay(cid, words, param)
		 if vip.hasVip(cid) == TRUE then
			doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Your vip end in "..os.date("%d %B %Y %X ",vip.getVip(cid)))
		 else
			 if vip.getVip(cid) ~= 0 then
				doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You're not a vip player. Your vip has finished in "..os.date("%d %B %Y %X ", vip.getVip(cid)).." and now is "..os.date("%d %B %Y %X ", os.time()))
			 else
				doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You're not a vip player. You naver has a vip.")
			 end
		 end
		 return TRUE
end

é uma talkaction não manda a tag por que tô sem server no pc

Link para o comentário
Compartilhar em outros sites

  • 0

@@kolosso,

 

Vá em data/talkactions/talkactions.xml e adicione a seguinte tag:

<talkaction words="!vipdays;/vipdays" event="script" value="vipdays.lua" />
Agora vá em data/talkactions/scripts, crie o arquivo vipdays.lua com o seguinte conteúdo:

function onSay(cid, words, param)
	if vip.hasVip(cid) then
		local dias = math.floor((vip.getVip(cid) - os.time()) / (24 * 3600))
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Voce tem " .. dias .. " dias de VIP Account.")
	else
		doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Voce nao possui uma VIP Account.")
	end
	return true
end
Link para o comentário
Compartilhar em outros sites

Visitante
Este tópico está impedido de receber novos posts.
×
×
  • Criar Novo...