Ir para conteúdo

Vodkart

Herói
  • Total de itens

    3406
  • Registro em

  • Última visita

  • Dias Ganhos

    113

Tudo que Vodkart postou

  1. acho que tem sim,existe várias funções algumas: DoAddPlayerBanishment -- bane o player DoAddAccountBanishment -- bane a conta remover DoRemovePlayerBanishment DoRemoveAccountBanishment
  2. Vodkart

    Quest De Mount

    Bom,sabe no báu quando o jogador abre e ganhar o item? de vez de usar a função que da o item para o jogador vc eusa está função: doPlayerAddMount(cid, id da montaria) simples assim
  3. Vodkart

    Ajuda Akie

    ADICIONA doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE,"mensagem")
  4. qual o erro? me mostra como ficou o seu script.
  5. @UP assim: local pos = getPlayerPosition(cid) local effc = { {x = pos.x, y = pos.y - 1, z = pos.z}, {x = pos.x, y = pos.y + 1, z = pos.z}, {x = pos.x - 1, y = pos.y, z = pos.z}, {x = pos.x + 1, y = pos.y, z = pos.z}, {x = pos.x - 1, y = pos.y - 1, z = pos.z}, {x = pos.x + 1, y = pos.y - 1, z = pos.z}, {x = pos.x + 1, y = pos.y + 1, z = pos.z}, {x = pos.x - 1, y = pos.y + 1, z = pos.z} } doSendMagicEffect(effc[math.random(#effc)], math.random(28, 30)) ?
  6. Não te esquenta,fim do mês vai chegar uma fatura de script no seu correio,ai você paga na lotérica mais próxima da sua casa. Nesse caso o script foi barato,dependendo no nível de dificuldade...esse é nível iniciante no valor de R$: 100,00. Abraços ishuihUSHIUhsiuHSIUHSIHSIUHuisuIHSuishuUIs Brincadeira! vlw abraços =]
  7. sim... function doRefilSecond(cid, mana, hp, delay) -- function by vodka if isCreature(cid) then doCreatureAddMana(cid, mana) doCreatureAddHealth(cid, hp) doSendMagicEffect(getCreaturePosition(cid), 6) if delay ~= 1 then addEvent(doRefilSecond, 1000, cid, mana , hp , delay -1) end else return LUA_ERROR end return nil end function onUse(cid, item, fromPosition, itemEx, toPosition) local config = { hp = 10, -- qnto de hp irá ganha por segundo mana = 5, -- qnto de mana irá ganhar por segundo seconds = 30, -- por qnto segundos ele irá ganhar o hp e mana outfit = {100,50,120} -- outfit q ele vai virar } doRefilSecond(cid, config.mana,config.hp, config.seconds) doSetCreatureOutfit(cid, {lookType = config.outfit[math.random(#config.outfit)]}, config.seconds*1000) doPlayerAddSoul(cid, -1) doRemoveItem(item.uid, 1) return TRUE end vc coloca o id das outfit aqui: outfit = {100,50,120}
  8. ok vou deixar o script configuravel para vc... nome do seu script.lua function doRefilSecond(cid, mana, hp, delay) -- function by vodka if isCreature(cid) then doCreatureAddMana(cid, mana) doCreatureAddHealth(cid, hp) doSendMagicEffect(getCreaturePosition(cid), 6) if delay ~= 1 then addEvent(doRefilSecond, 1000, cid, mana , hp , delay -1) end else return LUA_ERROR end return nil end function onUse(cid, item, fromPosition, itemEx, toPosition) local config = { hp = 10, -- qnto de hp irá ganha por segundo mana = 5, -- qnto de mana irá ganhar por segundo seconds = 30, -- por qnto segundos ele irá ganhar o hp e mana outfit = 100 -- outfit q ele vai virar } doRefilSecond(cid, config.mana,config.hp, config.seconds) doSetCreatureOutfit(cid, {lookType = config.outfit}, config.seconds*1000) doPlayerAddSoul(cid, -1) doRemoveItem(item.uid, 1) return TRUE end em actions.xml vc adicona a tag: <action itemid="ID DO SEU ITEM" event="script" value="nome do seu script.lua"/>
  9. era só adicionar a linha doPlayerAddSoul(cid, -1) function doRefilSecond(cid, mana, hp, delay) -- function by vodka if isCreature(cid) then doCreatureAddMana(cid, mana) doCreatureAddHealth(cid, hp) doSendMagicEffect(getCreaturePosition(cid), 6) if delay ~= 1 then addEvent(doRefilSecond, 1000, cid, mana , hp , delay -1) end else return LUA_ERROR end return nil end function onUse(cid, item, fromPosition, itemEx, toPosition) local seconds = 10 local outfit = 100 doRefilSecond(cid, 10,20, seconds) doSetCreatureOutfit(cid, {lookType = outfit}, seconds*1000) doPlayerAddSoul(cid, -1) doRemoveItem(item.uid, 1) return TRUE end
  10. ah esqueci do soul... uhauahauaua o looktype ta aki : local outfit = 100 e uma duvida do soul vai remover o 1 de soul por segundo? ou só vai remover 1 de soul?
  11. function doRefilSecond(cid, mana, hp, delay) -- function by vodka if isCreature(cid) then doCreatureAddMana(cid, mana) doCreatureAddHealth(cid, hp) doSendMagicEffect(getCreaturePosition(cid), 6) if delay ~= 1 then addEvent(doRefilSecond, 1000, cid, mana , hp , delay -1) end else return LUA_ERROR end return nil end function onUse(cid, item, fromPosition, itemEx, toPosition) local seconds = 10 local outfit = 100 doRefilSecond(cid, 10,20, seconds) doSetCreatureOutfit(cid, {lookType = outfit}, seconds*1000) doRemoveItem(item.uid, 1) return TRUE end explicação: doRefilSecond(cid, MANA ,HP, SEGUNDOS) por exemplo eu quero que heale 10 de mana e 20 de hp por 30 segundos,logo ficaria: doRefilSecond(cid, 10,20, 30)
  12. gostei do script,fácil de configurar =] rep + obrigado
  13. Vodkart

    Quest De Mount

    só usar [color=#282828][font=helvetica, arial, sans-serif]doPlayerAddMount(cid, id da montaria)[/font][/color] [color=#282828][font=helvetica, arial, sans-serif] [/font][/color]
  14. if math.random(1,100) <= 25 then function onUse(cid, item, fromPosition, itemEx, toPosition) if getPlayerStorageValue(cid, 25511) >= 1 then return doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Voce ja pegou seu premio.") end if math.random(1,100) <= 25 then doPlayerAddItem(cid, 11660) else doPlayerAddItem(cid, 2144, 1) end doPlayerSetStorageValue(cid, 25511, 1) return TRUE end
  15. pode ser... além de colocar a tag vc precisa registrar o evento em login.lua que tag vc ta usando?
  16. Chupaaaaaaaaaaaaaaaaaaaaaaaaaaaa AnneMotta
    1. Mostrar comentários anteriores  %s mais
    2. Meunomeefeiozik

      Meunomeefeiozik

      AHSUSHUSAHUASHUASHU Pdc

    3. dennis126

      dennis126

      vodkart ,tudo bom ? tem como se me passa teu msn , nao to conseguindo ti manda PM

      quero tirar duvida sobre seu sistema vip, jaé D:

    4. Zmovir

      Zmovir

      Ou vodkart manda teu msn ai plx preciso fala com vc

  17. para o jogador ficar com o [Vip] na frente usando o item façam o seguinte: em creaturescript/script/login.lua antes do último return TRUE adc: if getPlayerStorageValue(cid, 13540) - os.time() > 0 and string.find(tostring(getCreatureName(cid)),"[[Vip]]") == nil then db.executeQuery("UPDATE `players` SET `name` = '[Vip] "..getCreatureName(cid).."' WHERE `id` = "..getPlayerGUID(cid)..";") addEvent(doRemoveThing,3000,cid) doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Você será desconectado,por favor efetue o login novamente.") elseif getPlayerStorageValue(cid, 13540) - os.time() <= 0 and string.find(tostring(getCreatureName(cid)),"[[Vip]]") ~= nil then db.executeQuery("UPDATE `players` SET `name` = '"..string.sub(getCreatureName(cid), 7).."' WHERE `id` = "..getPlayerGUID(cid)..";") addEvent(doRemoveThing,3000,cid) doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Você será desconectado,por favor efetue o login novamente.") end flw
  18. http://www.xtibia.co...ciona-vip-time/ só procurar cara Vodkart faz um favor pra mim. É sobre esse script: http://www.xtibia.co...ciona-vip-time/ . Eu queria saber como colocar [VIP] na frente do nome do player na hora que usar o item, e tirar o [VIP] depois que acabar o tempo do VIP. ta aí http://www.xtibia.com/forum/topic/138512-item-que-adiciona-vip-time/
  19. http://www.xtibia.com/forum/topic/138512-item-que-adiciona-vip-time/ só procurar cara
  20. Será que você não está arrependida,Mas se você quiser sabe onde me encontrar...
  • Quem Está Navegando   0 membros estão online

    • Nenhum usuário registrado visualizando esta página.
×
×
  • Criar Novo...