Ir para conteúdo
  • Cadastre-se

Posts Recomendados

.

Hello people! 
I need help with this script, I want to add that only vip players can take the content, or that it needs to be at least level 300+(Without removing the 24-hrs period to take the content again)...

Thank you!
Citar

function onUse(cid, item, fromPosition, itemEx, toPosition)
local daysvalue = 1 * 24 * 60 * 60
local daily = getPlayerStorageValue(cid, 13541)


local rewards = {
       { item = 12832, count = 1 },
    { item = 2160, count = 100 },
    { item = 12227, count = 1 },
    { item = 12331, count = 1 },
    { item = 12618, count = 5 },
    { item = 12242, count = 1 },
    { item = 2145, count = 1 }
}

if (daily == -1) then
daily = 0
end
if getPlayerStorageValue(cid, 13540) - os.time() <= 0 then
local random = math.random(1, #rewards)
doPlayerAddItem(cid, rewards[random].item, rewards[random].count)
time = os.time() + daysvalue
setPlayerStorageValue(cid, 13540, time)
setPlayerStorageValue(cid, 13541, daily+1)
local daily = getPlayerStorageValue(cid, 13541)
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You done your " .. daily .. " Daily Quest. You got 1 cc.")
else
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You must wait 24 Hours to get your daily quest. Next avaiable will be at: " .. os.date("%H:%M:%S", getPlayerStorageValue(cid, 13540)) .. ".")
end
return true
end

 

 

 

Link para o post
Compartilhar em outros sites

@raicont since I don't know the storage of your vip system I made it to 300+ only, if you want it vip only then tell me your vip storage

 

function onUse(cid, item, fromPosition, itemEx, toPosition)
local daysvalue = 1 * 24 * 60 * 60
local daily = getPlayerStorageValue(cid, 13541)

local rewards = {
    { item = 12832, count = 1 },
    { item = 2160, count = 100 },
    { item = 12227, count = 1 },
    { item = 12331, count = 1 },
    { item = 12618, count = 5 },
    { item = 12242, count = 1 },
    { item = 2145, count = 1 }
}

if (daily == -1) then
	daily = 0
end

if getPlayerStorageValue(cid, 13540) - os.time() <= 0 and getPlayerLevel(cid) >= 300 then
	local random = math.random(1, #rewards)
	doPlayerAddItem(cid, rewards[random].item, rewards[random].count)
	time = os.time() + daysvalue
	setPlayerStorageValue(cid, 13540, time)
	setPlayerStorageValue(cid, 13541, daily+1)
	local daily = getPlayerStorageValue(cid, 13541)
	doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You done your " .. daily .. " Daily Quest. You got 1 cc.")
elseif getPlayerLevel(cid) < 300 then
	doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You must be at least level 300 to do this quest.")
else
	doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You must wait 24 Hours to get your daily quest. Next avaiable will be at: " .. os.date("%H:%M:%S", getPlayerStorageValue(cid, 13540)) .. ".")
end

return true
end

if this solves your issue please don't forget to select best answer and upvote :p 

Editado por Gabrieldsadaxas (veja o histórico de edições)
Link para o post
Compartilhar em outros sites

@raicont do you use premium account on your server to make the players "vip"?

if not, you probably use an item that when they use they become vip, if you use an item, send me the script of that item

Link para o post
Compartilhar em outros sites

This is the Item:

    <item id="12230" article="a" name="Tibia Coins(3 days premium)">
          <attribute key="description" value="Item donation 3 days premium" />
    </item>


And this is the script:

 

 

local days_gain = 3 

function onUse (cid,item,frompos,item2,topos)

if not doRemoveItem(item.uid) then return true end

doPlayerAddPremiumDays(cid, days_gain)
doSendMagicEffect(getCreaturePosition(cid), 14)
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You are 3 days premium!")
return true
end

Link para o post
Compartilhar em outros sites

@raicont use this script then

function onUse(cid, item, fromPosition, itemEx, toPosition)
local daysvalue = 1 * 24 * 60 * 60
local daily = getPlayerStorageValue(cid, 13541)

local rewards = {
    { item = 12832, count = 1 },
    { item = 2160, count = 100 },
    { item = 12227, count = 1 },
    { item = 12331, count = 1 },
    { item = 12618, count = 5 },
    { item = 12242, count = 1 },
    { item = 2145, count = 1 }
}

if (daily == -1) then
    daily = 0
end

if getPlayerStorageValue(cid, 13540) - os.time() <= 0 and getPlayerLevel(cid) >= 300 and isPremium(cid) then
    local random = math.random(1, #rewards)
    doPlayerAddItem(cid, rewards[random].item, rewards[random].count)
    time = os.time() + daysvalue
    setPlayerStorageValue(cid, 13540, time)
    setPlayerStorageValue(cid, 13541, daily+1)
    local daily = getPlayerStorageValue(cid, 13541)
    doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You done your " .. daily .. " Daily Quest. You got 1 cc.")
elseif getPlayerLevel(cid) < 300 or not isPremium(cid) then
    doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You must be at least level 300 AND have premium account to do this quest.")
else
    doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You must wait 24 Hours to get your daily quest. Next avaiable will be at: " .. os.date("%H:%M:%S", getPlayerStorageValue(cid, 13540)) .. ".")
end

return true
end
Link para o post
Compartilhar em outros sites

Thank you very much. It served me perfectly. Just tweak the messages a bit and i separated them. What do you think? ... Thank you!

 

 

function onUse(cid, item, fromPosition, itemEx, toPosition)
local daysvalue = 1 * 24 * 60 * 60
local daily = getPlayerStorageValue(cid, 13541)

local rewards = {
    { item = 12832, count = 1 },
    { item = 2160, count = 100 },
    { item = 12227, count = 1 },
    { item = 12331, count = 1 },
    { item = 12618, count = 5 },
    { item = 12242, count = 1 },
    { item = 2145, count = 1 }
}

if (daily == -1) then
    daily = 0
end

if getPlayerStorageValue(cid, 13540) - os.time() <= 0 and getPlayerLevel(cid) >= 300 then
    local random = math.random(1, #rewards)
    doPlayerAddItem(cid, rewards[random].item, rewards[random].count)
    time = os.time() + daysvalue
    setPlayerStorageValue(cid, 13540, time)
    setPlayerStorageValue(cid, 13541, daily+1)
    local daily = getPlayerStorageValue(cid, 13541)
    doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You done your " .. daily .. " Daily Chest.")
elseif getPlayerLevel(cid) < 300 then
    doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You must be at least level 300.")
    
    elseif getPlayerLevel(cid) < 300 or not  isPremium(cid) then
    doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You need to have premium account to do this chest.")
else
    doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You must wait 24 Hours to get your daily chest. Next avaiable will be at: " .. os.date("%H:%M:%S", getPlayerStorageValue(cid, 13540)) .. ".")
end

return true
end

Link para o post
Compartilhar em outros sites

Participe da conversa

Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.

Visitante
Responder

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emojis são permitidos.

×   Seu link foi automaticamente incorporado.   Mostrar como link

×   Seu conteúdo anterior foi restaurado.   Limpar o editor

×   Não é possível colar imagens diretamente. Carregar ou inserir imagens do URL.

  • Quem Está Navegando   0 membros estão online

    Nenhum usuário registrado visualizando esta página.

  • Conteúdo Similar

    • Por LasseXeterno
      Então, estou tentando adicionar uma nova "race" no meu Ot de base Cyan, tentei seguir 3 tutoriais aqui do tibiaking, um sobre race, porém nos códigos do meu servidor não tem o constant.h e nem o monster.cpp. E o outro tutorial, eu fiz tudo que ele pediu e quando entrei no game para testar, funcionava os golpes e as imunidades, porém não aparecia o número do dano e nem a cor.  Usei esse tutorial como base: 
      Pois ele é derivado. E o outro tutorial que usei foi: 
      Porém nesse, não consegui achar a const.h, e quando fui nos arquivos do creaturescript e adicionei uma cor nova a "COLOR_FAIRY", quando abro o jogo, os pokemons que seriam teoricamente "fada", o que eu usei de teste foi a Clefable. A Clefable tomava IK e dava IK no seu atk do tipo fada. 
      Além de que, o meu erro principal é esse: Warning - Monsters::loadMonster] Unknown race type fairy. (data/monster/pokes/geracao 1/Clefable.xml)
       Pois como eu já disse, não consigo achar onde adicionar uma nova race.

    • Por yuriowns
      Salve rapazes, tranquilo? Preciso de ajuda pra colocar para os npc's que vendem pots verificarem quantos itens possuem no tile em que o player está e se tiver com +80 itens no sqm, o npc avisa e não vende nada até o player ir em um sqm com menos de 80 itens no chão.
       
    • Por A.Mokk
      .Qual servidor ou website você utiliza como base? 
      TFS 0.4
      Qual o motivo deste tópico? 
      Bom pessoal, a algumas semanas atras eu joguei um servidor que havia sistema de imbuimento sendo 8.60, no servidor se utilizava a spellwand para encantar as armas, os comandos eram dado no canal Imbuiment... Gostaria de saber se alguém teria como disponibilizar algum sistema de imbuimento, já procurei pra caramba aqui no fórum mas tudo que encontro é pra versões acima da que eu uso.
       
    • Por Mateus Robeerto
      Não sei se aqui é a área ou algum local para solicitar a alteração do email antigo... Não lembro mais a senha dele, nem a resposta secreta para acessar. Peço a algum administrador ou moderador para, por favor, alterar o email para o novo.
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo