Ir para conteúdo

Vodkart

Herói
  • Total de itens

    3406
  • Registro em

  • Última visita

  • Dias Ganhos

    113

Tudo que Vodkart postou

  1. Vodkart

    Le Eu!

    maioria das mulheres realmente gostosas preferem gordinhos
  2. Vodkart

    Le Eu!

    tenho sim experiencie perna em rabo, é pq eu tenho 3 perna, ai sabe como é as mina pira
  3. Vodkart

    Erro Em Uma Spell

    n sei mexer em spells mais tenta deixar a função assim: function onTargetTile(cid, position) position.stackpos = 255 local k = doCreateMonster("headcaptor", position) doConvinceCreature(cid, k) doSendMagicEffect(position, CONST_ME_MAGIC_BLUE) return true end
  4. me manda o seu msn que eu te adc sobre o erro, ele não aparece no distro mesmo...
  5. da uma olhada no seu server para ver se depois que relogam as vocs voltam, tem distro que tem esse bug! vê aí
  6. pode adicionar mais sim, sobre a segunda dúvida acho que de vez de 'param' teria que usar 'words', mas porque não !promo "nome da promotion? exemplo !promo mixed
  7. function onSay(cid, words, param, channel) local tabble = { ["mixed"] = {reqVoc= nil, needLevel=10000}, ["spin"] = {reqVoc= 5, needLevel=30000}, ["sacred"] = {reqVoc= 6, needLevel=60000}, ["loney"] = {reqVoc= 7, needLevel=110000}, ["falling"] = {reqVoc= 8, needLevel=130000} } local config = {pid = getPlayerGUID(cid),newlv = 8,life = 185,mana = 35} local param = string.lower(param) if not tabble[param] then doPlayerSendCancel(cid, "digite o nome correto.") return true elseif getTilePzInfo(getCreaturePosition(cid)) == FALSE then doPlayerSendCancel(cid, "precisa estar em pz.") return true elseif getPlayerLevel(cid) < tabble[param].needLevel then doPlayerSendCancel(cid, "You dont have the required level.") return true elseif tabble[param].reqVoc == nil and getPlayerStorageValue(cid, 877878) >= 1 then doPlayerSendCancel(cid, "você já virou mixed.") return true elseif tabble[param].reqVoc ~= nil and getPlayerVocation(cid) ~= tabble[param].reqVoc then doPlayerSendCancel(cid, "You dont have the required vocation.") return true end if tabble[param].reqVoc == nil then setPlayerStorageValue(cid, 877878, 1) end local newvoc = tabble[param].reqVoc ~= nil and (tabble[param].reqVoc+1) or 5 doTeleportThing(cid, getTownTemplePosition(getPlayerTown(cid))) doRemoveCreature(cid) db.executeQuery("UPDATE `players` SET `level` = "..config.newlv..", `experience` = "..getExperienceForLevel(config.newlv)..",`manamax` = "..config.mana..",`health` = "..config.life..", `healthmax` = "..config.life..",`mana` = "..config.mana..",`vocation` = "..newvoc.." WHERE `id` = "..config.pid) return true end
  8. Então depois de usar o comando ele vai voltar para level 8, com mana e hp de lvl 8 certo? só vai ser mudado a vocation , é isso?
  9. tem sim, eu só vou almoçar e vou refazer todo seu script e usando db que fica melhor, outra coisa, no seu script ele precisa só ter a voc e o level para resetar né? dps ele ganha uma nova voc e mais lvl?
  10. rapaz seu script está muito confuso rsrs outra coisa, nos index na tabela você é obrigado a preencher os index com algum tipo de informação, seja números ou strings, caso não quiser preencher tenta colocar como "nil" tenta local table = { ["mixed"] = {reqVoc=nil, reqLevel=10000, reqItem=0, reqCount=0, reqMoney=0, newVoc=5, newLevel=8, newMana=0, newHp=0}, ["spin"] = {reqVoc=5, reqLevel=30000, reqItem=0, reqCount=0, reqMoney=0, newVoc=6, newLevel=8, newMana=0, newHp=0}, ["sacred"] = {reqVoc=6, reqLevel=60000, reqItem=0, reqCount=0, reqMoney=0, newVoc=7, newLevel=8, newMana=0, newHp=0}, ["loney"] = {reqVoc=7, reqLevel=110000, reqItem=0, reqCount=0, reqMoney=0, newVoc=8, newLevel=30000, newMana=0, newHp=0}, ["falling"] = {reqVoc=8, reqLevel=130000, reqItem=0, reqCount=0, reqMoney=0, newVoc=9, newLevel=90000, newMana=0} } function onSay(cid,words, param, channel) local param = param.explode(param, ",") for k, v in pairs(table) do if (param == k) then if v.reqVoc ~= nil and getPlayerVocation(cid) ~= v.reqVoc then doPlayerSendCancel(cid, "You dont have the required vocation.") return false end if getPlayerLevel(cid) ~= v.reqLevel then doPlayerSendCancel(cid, "You dont have the required level.") return false end if v.reqItem ~= 0 then if v.reqMoney ~= 0 then if not doPlayerRemoveItem(cid, v.reqItem, v.reqCount) and doPlayerRemoveMoney(cid, v.reqMoney) then doPlayerSendCancel(cid, "You dont have the required item or money.") return false end else if not doPlayerRemoveItem(cid, v.reqItem, v.reqCount) then doPlayerSendCancel(cid, "You dont have the required item.") return false end end end doPlayerSetVocation(cid, v.newVoc) doPlayerSetLevel(cid, v.newLevel) setCreatureMaxMana(cid, v.newMana) setCreatureMaxHealth(cid, v.newHp) doCreatureAddHealth(cid, v.newHp - getCreatureHealth(cid)) doCreatureAddMana(cid, v.newMana - getCreatureMana(cid)) doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You reset well! You are going to be kicked for security reasons in 5 seconds.") addEvent(doPlayerSendTextMessage, 1000, MESSAGE_INFO_DESCR, "4 seconds.") addEvent(doPlayerSendTextMessage, 2000, MESSAGE_INFO_DESCR, "3 seconds.") addEvent(doPlayerSendTextMessage, 3000, MESSAGE_INFO_DESCR, "2 seconds.") addEvent(doPlayerSendTextMessage, 4000, MESSAGE_INFO_DESCR, "1 seconds.") addEvent(doRemoveCreature, 5000, cid) end end return true end
  11. posta o seu promo.lua aqui amigo
  12. vc em perfeito juízo acha mesmo que a mina iria querer um bosta q nem vc? cai na real, até chegar nela falta mto ainda meu rapaz
  13. Vodkart

    Le Eu!

    perneta? única perna q to vendo dele ta enfiada no seu rabo
  14. Nesse mesmo tópico eu já expliquei em um dos meus comentários como executar, só subir um pouco a pagina!
  15. Vodkart

    Le Eu!

    mas é um moço muito do elegante e apresentável tem cel pra gente conversa?
  16. mano mais tipo pra eu adicionar mais de 1 outfit eu vo te q fazer outro script? claro que não, vc só tem que adicionar as storages na outfit que vc quer q só player vip use!
  17. já tentou limpar os caches do site?
  18. Vodkart

    Minha Melhor Foto

    fumando dentro da sala? wtf? tu ja viu isso em algum lugar? é o cabo de um pirulito véi
  19. o tópico para jogadores vip com outfits é esse: http://www.xtibia.com/forum/topic/141882-outfits-so-para-jogadores-vips/ ta bem diferente
  20. function onSay(cid, words, param, channel) local param = string.lower(param) local t = string.explode(param, ",") if not t[2] then return doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "bad param: /command color,message") end return doBroadcastMessage(t[2], not MESSAGE_TYPES[t[1]] and "warning" or t[1]) end /bc advance,sua mensagem /bc green,sua mensagem
  21. é porque o fórum também bugou a tag, a certa seria essa: <event type="login" name="AntiMbCrash" event="script" value="antimbcrash.lua"/>
  22. óbvio que em que postar o items.xml '-'
  23. agora ficou show de bola mano, só não dou rep porque não tenho agora rsrsrs obrigado por postar! vlw
  • Quem Está Navegando   0 membros estão online

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