Ir para conteúdo

lukervis

Campones
  • Total de itens

    45
  • Registro em

  • Última visita

Tudo que lukervis postou

  1. lukervis

    Exevo Gran Trap

    Olá pessoal, então, eu estou procurando um script de exevo gran trap, mas só que ao invez de ser MW ou grav vita, eu gostaria que fosse uns espinhos, como eu vi em um outro lugar que ao invez de ser MW era espinhos, muito obrigado desde já
  2. lukervis

    Script De Vocation.

    Então galera, é o seguinte, estou com uma duvida a respeito das vocations, sempre que o meu server da serv-save, quando volta alguns players volta com vocation trocada, por exemplo: Player Um (master sorcerer), quando da serv-save 5 horas da manhã, ele vira elite knight, e se ele soltar qualquer magia, exura, exana mort, o ot cai. Accs foram criadas pelo site, qualquer duvida sobre minha pergunta, postem ai.
  3. Meu ot não tem o potions.lua , por isso to com duvida! Valeu
  4. Ae, beleza ? Então, gostaria de um script que a pessoa pegasse lvl 45, e recebia uma mensagem em branco falando para deslogar, quando ela deslogase e logase de volta ela receberia tais itens, se for paladin, receberia tais itens, druids outros, e knights outros tbm ... edit: Esqueci de dizer, estou com dificuldades para colocar charges nas potions, meu otserv não contem o potions.lua, se alguém puder me ajudar nisso também, eu ficaria grato.
  5. Para poder pegar, tem que deixar aparecendo a janelinha ? Tipo assim, queria que ele desse a magia, e não pudesse soltar nenhuma magia, entendeu ? Obrigado =d edit: conseguir arrumar, muito obrigado pelo script ! se alguém puder postar as outras, agradeço =D
  6. Ae galerinha, estou mais uma vez aqui pedindo para vocês, então, você deve estar se perguntando o que eu estou pedindo né? é simples: Primeiramente, queria uma magia que sumona um bicho chamado Kust, e que esse summon dure 5 minutos. Segunda spell: Uma magia que sumona 4 bicho com o mesmo nome, o nome do bicho é Combo, e que esse summon, os bixo dessem 1 hit somente e sumissem. Terceira e ultima: Essa magia aqui, venho procurando a um tempo mas nunca ninguém responde, então a magia se chama exori para, como seria essa magia ? Uma magia de target, igual ao exori mort com effect de stun, e que ela paralizace a pessoa por 5 segundos, e que esse paralyse não remova com utani gran hur, nem nada, exura vita, exura, etc, exemplo um /attr cannotmove 1 Aa, e outra, se alguém falar que tem que mexer em algo, resources, sei la o que, me fala como mexe porque eu não sei nada ! Obrigado pessoal ! obs: se der para postar o que tenho que colocar no spells.xml agradeço, não me dou muito bem com ele!
  7. Ae galera, gostaria de saber como deixar essa mana rune somente para mage E essa só para knights E essa só para pally Obrigado desde já
  8. Ai, pego, muito obrigado aos 2 + rep para os 2 por me ajudar Pode fechar.
  9. Deu um erro, Motivo do erro?
  10. Olá galera Então, estou a procura de um script que mande o jogador para um determinado lugar, exemplo: O player digitará !arenapvp, ai ele será teletransportado para X:180 Y:352 Z:7, X:129 Y:388 Z: 7 ou para X:135 Y: 339 Z:7 Tipo na sorte, cada hora ele iria para um lugar, estilo um math.random, A, e outra, ele não poderia digitar esse comando se estivesse com pz-battle, yellow skull e white skull. Se é que vocês entenderam, postem se conseguirem .
  11. Olá galera, já procurei aqui no fórum e nada, então resolvi criar um tópico, minha dúvida é uma spell de paralyse que não pode ser removida com nenhuma magia. Exemplo: Um magia de target com o effect de stun que deixe o player paralisado por 5 segundos, deu para entender né ? então é isso, brigadao desde já :]
  12. Da uma olhada no ultimo post ae Vodkart :D
    http://www.xtibia.com/forum/topic/139110-the-gods-effect/page__gopid__918858#entry918858
  13. Galera, estou aqui para falar de um script meu que está bugado, tipo, a pessoa se transforma na segunda vocação, mas quando ela reloga, ela esta na vocação anterior. script npc local focus = 0 local talk_start = 0 local target = 0 local following = false local attacking = false function onThingMove(creature, thing, oldpos, oldstackpos) end function onCreatureAppear(creature) end function onCreatureDisappear(cid, pos) if focus == cid then selfSay('Xau retardado.') focus = 0 talk_start = 0 end end function onCreatureTurn(creature) end function msgcontains(txt, str) return (string.find(txt, str) and not string.find(txt, '(%w+)' .. str) and not string.find(txt, str .. '(%w+)')) end function onCreatureSay(cid, type, msg) msg = string.lower(msg) if (msgcontains(msg, 'hi') and focus == 0) and getDistanceToCreature(cid) < 4 then selfSay('Ola ' .. getCreatureName(cid) .. '! Fala Supreme Promotion.') focus = cid talk_start = os.clock() elseif msgcontains(msg, 'hi') and (focus ~= cid) and getDistanceToCreature(cid) < 4 then selfSay('Sorry, ' .. getCreatureName(cid) .. '! I talk with you in one minute.') elseif msgcontains(msg, 'supreme promotion') or msgcontains(msg, 'slayerpromotion') then if getPlayerVocation(cid) > 8 then selfSay('Desculpe, voce ja tem supreme promotion.') talk_state = 0 elseif getPlayerLevel(cid) < 130 then selfSay('Voce precisa ter no minimo level 130...') talk_state = 0 else selfSay('Fale yes para confirmar !') talk_state = 1 end elseif talk_state == 1 then if getPlayerItemCount(cid,2157) >= 0 then if doPlayerRemoveItem(cid,2157,0) then if getPlayerVocation(cid) > 8 then end selfSay('Parabens! Voce adquiriu a Supreme promotion Promotion!') doPlayerSetVocation(cid, getPlayerVocation(cid)+4) doTeleportThing(cid,{x=160, y=54, z=4}) end else selfSay('Desculpe, voce nao tem os itens necessarios!') end talk_state = 0 elseif msgcontains(msg, 'magician mask') then selfSay('Voce tem os 30 Slayer Coins para comprar 1 Magician Mask?') talk_state = 17 talk_start = os.clock() elseif talk_state == 17 and msgcontains(msg, 'yes') then if getPlayerItemCount(cid,2157) >= 30 then if doPlayerRemoveItem(cid,2157,30) then selfSay('Parabens! Voce adquiriu um item Vip!') doPlayerAddItem(cid,9778,1) end else selfSay('Desculpe, voce nao tem os itens necessarios!') end elseif msgcontains(msg, 'magician coat') then selfSay('Voce tem os 30 Slayer Coins para comprar 1 Magician Coat?') talk_state = 2 talk_start = os.clock() elseif talk_state == 2 and msgcontains(msg, 'yes') then if getPlayerItemCount(cid,2157) >= 30 then if doPlayerRemoveItem(cid,2157,30) then selfSay('Parabens! Voce adquiriu um item Vip!') doPlayerAddItem(cid,9776,1) end else selfSay('Desculpe, voce nao tem os itens necessarios!') end elseif msgcontains(msg, 'magician legs') then selfSay('Voce tem os 30 Slayer Coins para comprar 1 Magician Legs?') talk_state = 3 talk_start = os.clock() elseif talk_state == 3 and msgcontains(msg, 'yes') then if getPlayerItemCount(cid,2157) >= 30 then if doPlayerRemoveItem(cid,2157,30) then selfSay('Parabens! Voce adquiriu um item Vip!') doPlayerAddItem(cid,9777,1) end else selfSay('Desculpe, voce nao tem os itens necessarios!') end elseif msgcontains(msg, 'blessed helmet') then selfSay('Voce tem os 30 Slayer Coins para comprar 1 Blessed Helmet?') talk_state = 4 talk_start = os.clock() elseif talk_state == 4 and msgcontains(msg, 'yes') then if getPlayerItemCount(cid,2157) >= 30 then if doPlayerRemoveItem(cid,2157,30) then selfSay('Parabens! Voce adquiriu um item Vip!') doPlayerAddItem(cid,2474,1) end else selfSay('Desculpe, voce nao tem os itens necessarios!') end elseif msgcontains(msg, 'blessed armor') then selfSay('Voce tem os 30 Slayer Coins para comprar 1 Blessed Armor?') talk_state = 5 talk_start = os.clock() elseif talk_state == 5 and msgcontains(msg, 'yes') then if getPlayerItemCount(cid,2157) >= 30 then if doPlayerRemoveItem(cid,2157,30) then selfSay('Parabens! Voce adquiriu um item Vip!') doPlayerAddItem(cid,2503,1) end else selfSay('Desculpe, voce nao tem os itens necessarios!') end elseif msgcontains(msg, 'blessed legs') then selfSay('Voce tem os 30 Slayer Coins para comprar 1 Blessed Legs?') talk_state = 6 talk_start = os.clock() elseif talk_state == 6 and msgcontains(msg, 'yes') then if getPlayerItemCount(cid,2157) >= 30 then if doPlayerRemoveItem(cid,2157,30) then selfSay('Parabens! Voce adquiriu um item Vip!') doPlayerAddItem(cid,2504,1) end else selfSay('Desculpe, voce nao tem os itens necessarios!') end elseif msgcontains(msg, 'blessed boots') then selfSay('Voce tem os 20 Slayer Coins para comprar 1 Slayer Boots?') talk_state = 7 talk_start = os.clock() elseif talk_state == 7 and msgcontains(msg, 'yes') then if getPlayerItemCount(cid,2157) >= 20 then if doPlayerRemoveItem(cid,2157,20) then selfSay('Parabens! Voce adquiriu um item Vip!') doPlayerAddItem(cid,9932,1) end else selfSay('Desculpe, voce nao tem os itens necessarios!') end elseif msgcontains(msg, 'slayer blade') then selfSay('Voce tem os 50 Slayer Coins para comprar 1 Slayer Blade?') talk_state = 8 talk_start = os.clock() elseif talk_state == 8 and msgcontains(msg, 'yes') then if getPlayerItemCount(cid,2157) >= 50 then if doPlayerRemoveItem(cid,2157,50) then selfSay('Parabens! Voce adquiriu um item Vip!') doPlayerAddItem(cid,8931,1) end else selfSay('Desculpe, voce nao tem os itens necessarios!') end elseif msgcontains(msg, 'slayer axe') then selfSay('Voce tem os 50 Slayer Coins para comprar 1 Slayer Axe?') talk_state = 9 talk_start = os.clock() elseif talk_state == 9 and msgcontains(msg, 'yes') then if getPlayerItemCount(cid,2157) >= 50 then if doPlayerRemoveItem(cid,2157,50) then selfSay('Parabens! Voce adquiriu um item Vip!') doPlayerAddItem(cid,8293,1) end else selfSay('Desculpe, voce nao tem os itens necessarios!') end elseif msgcontains(msg, 'slayer punch') then selfSay('Voce tem os 50 Slayer Coins para comprar 1 Slayer Punch?') talk_state = 10 talk_start = os.clock() elseif talk_state == 10 and msgcontains(msg, 'yes') then if getPlayerItemCount(cid,2157) >= 50 then if doPlayerRemoveItem(cid,2157,50) then selfSay('Parabens! Voce adquiriu um item Vip!') doPlayerAddItem(cid,8929,1) end else selfSay('Desculpe, voce nao tem os itens necessarios!') end elseif msgcontains(msg, 'slayer crossbow') then selfSay('Voce tem os 50 Slayer Coins para comprar 1 Slayer Crossbow?') talk_state = 11 talk_start = os.clock() elseif talk_state == 11 and msgcontains(msg, 'yes') then if getPlayerItemCount(cid,2157) >= 50 then if doPlayerRemoveItem(cid,2157,50) then selfSay('Parabens! Voce adquiriu um item Vip!') doPlayerAddItem(cid,8851,1) end else selfSay('Desculpe, voce nao tem os itens necessarios!') end elseif msgcontains(msg, 'slayer staff') then selfSay('Voce tem os 50 Slayer Coins para comprar 1 Slayer Staff?') talk_state = 12 talk_start = os.clock() elseif talk_state == 12 and msgcontains(msg, 'yes') then if getPlayerItemCount(cid,2157) >= 50 then if doPlayerRemoveItem(cid,2157,50) then selfSay('Parabens! Voce adquiriu um item Vip!') doPlayerAddItem(cid,7424,1) end else selfSay('Desculpe, voce nao tem os itens necessarios!') end elseif msgcontains(msg, 'slayer shield') then selfSay('Voce tem os 25 Slayer Coins para comprar 1 Slayer Shield?') talk_state = 13 talk_start = os.clock() elseif talk_state == 13 and msgcontains(msg, 'yes') then if getPlayerItemCount(cid,2157) >= 25 then if doPlayerRemoveItem(cid,2157,25) then selfSay('Parabens! Voce adquiriu um item Vip!') doPlayerAddItem(cid,6391,1) end else selfSay('Desculpe, voce nao tem os itens necessarios!') end elseif msgcontains(msg, 'slayer medal') then selfSay('Voce tem os 50 Slayer Coins para comprar 1 Slayer Medal?') talk_state = 14 talk_start = os.clock() elseif talk_state == 14 and msgcontains(msg, 'yes') then if getPlayerItemCount(cid,2157) >= 50 then if doPlayerRemoveItem(cid,2157,50) then selfSay('Parabens! Voce adquiriu um item Vip!') doPlayerAddItem(cid,8979,1) end else selfSay('Desculpe, voce nao tem os itens necessarios!') end elseif msgcontains(msg, 'slayer backpack') then selfSay('Voce tem os 1 Slayer Coins para comprar 1 Slayer BackPack?') talk_state = 15 talk_start = os.clock() elseif talk_state == 15 and msgcontains(msg, 'yes') then if getPlayerItemCount(cid,2157) >= 1 then if doPlayerRemoveItem(cid,2157,1) then selfSay('Parabens! Voce adquiriu um item Vip!') doPlayerAddItem(cid,9774,1) end else selfSay('Desculpe, voce nao tem os itens necessarios!') end elseif msgcontains(msg, 'slayer bag') then selfSay('Voce tem os 1 Slayer Coins para comprar 1 Slayer Bag?') talk_state = 16 talk_start = os.clock() elseif talk_state == 16 and msgcontains(msg, 'yes') then if getPlayerItemCount(cid,2157) >= 1 then if doPlayerRemoveItem(cid,2157,1) then selfSay('Parabens! Voce adquiriu um item Vip!') doPlayerAddItem(cid,9775,1) end else selfSay('Desculpe, voce nao tem os itens necessarios!') end elseif msgcontains(msg, 'bye') and getDistanceToCreature(cid) < 4 then selfSay('Bye ' .. getCreatureName(cid) .. ', Come back.') focus = 0 talk_start = 0 elseif msgcontains(msg, 'kashsauahsuacuyio') then selfSay('What?') talk_state = 0 end end function onCreatureChangeOutfit(creature) end function onThink() doNpcSetCreatureFocus(focus) if (os.clock() - talk_start) > 30 then if focus > 0 then selfSay('Next...') end focus = 0 talk_start = 0 end if focus ~= 0 then if getDistanceToCreature(focus) > 5 then selfSay('Good Bye') focus = 0 talk_start = 0 end end end Esse ai, se quiser q passe mais algo, falem edited: esqueci, quero que alguem que saiba, arrume pra mim
  14. lukervis

    The Gods Effect

    A, outra coisa hehe Pra eu mudar o efeito que vai aparecer é só mudar o 28 e o 30 ? math.random(28, 30)) Tipo pra aparecer sómente o 34 e o 4 no mesmo sqm Tipo assim no sqm q aparee o 34, o 4 aparece junto entendeu ? Tipo isso: :button_cancel: smile: eu cancel: /z 34 e /z 4 Os 2 no mesmo sqm, se é que você entendeu otra coisa :embarrest: Um script de que tal item mude para tal item Exemplo um ring chamado Anel Feiticeiro, ele esta com o id 50 por exemplo, ai a cada 1 segundo essi item muda pro id 56 entendeu ? Tipo assim, eu estou com o item 50 na minha bp, e ele dentro da minha bp fique trocando de aparencia, onde quer que ele esteja ele tara trocando de aparencia, 50 pro 51 a cada 3 segundos Os items que eu quero que mude é o 6579 mude para o 9693 a cada 3 segundos ! repetindo esse processo a cada 3 segundos, 6579 >9693,[depois de 3 segundos] 9693>6579
  15. lukervis

    The Gods Effect

    Cara, muito obrigado cara, valeu mesmo,
  16. lukervis

    The Gods Effect

    Isso, perfeito !
  17. lukervis

    The Gods Effect

    Excelente script, mas acho que nao expliquei direito, é assim ó: o /z 30, o /z 29 e o /z 28, eles sairem em 1 sqm só tipo assim Estou aqui, eu sou o smile :button_cancel: o cancel é os effeitos (30,29,28) ai depois de 1.500 segundos :button_cancel: . Entendeu? tipo os efeitos saiam junto no mesmo sqm, e de forma diferente, uma hora nort east outra hora nort west, outra hora south, entendeu ? se nao expliquei direito, posta ai edited: nao entendi muito bem ' depois você edita a area do efeit'
  18. lukervis

    The Gods Effect

    Ae cara, pego sim, mas sem querer exigir muito, esse script que você me passo ele sai no meio né ? Eu queria um que tipo que saia do lado do char sabe ? e os 2 junto o /z 30 e o /z 28, se der posta ae! Mas valeu mesmo Vodkart. Ganho meu thanks @edited. otra .. tem como colocar para mandar 3 tipos de mensagens tipo "[OI]" "[bem ?]" "[entao ta bom]" Isso que eu falo, se tiver, manda ae :}
  19. lukervis

    The Gods Effect

    sim, mas eu editei o doll pra slot ring, tem algum problema? vou testar essi script ai, e posto aqui mais tarde !
  20. lukervis

    The Gods Effect

    E no movements.xml? eu coloquei assim ó <!-- Other --> <movevent type="Equip" itemid="6567" slot="ring" event="script" value="ringeffect.lua"/> <movevent type="DeEquip" itemid="6567" slot="ring" event="function" value="onDeEquipItem"/> Abaixei a barrinha até la embaxo, ai estava sem nada no Other, ai coloquei isso.. vejam se está certo :} Num funfo essi script, ja tentei fais tempão ;x
  21. lukervis

    The Gods Effect

    o ringeffect.lua eu coloco onde? data/movements/script?
  22. lukervis

    The Gods Effect

    Tipo cara, isso faiz o efeito, mas ele nao faz oque eu quero.. eu quero que fique saindo o /z 30 toda hora entendeu ? tipo um script :}
  23. lukervis

    The Gods Effect

    Galera ! estou procurando um script the gods effect para tibia 8.5 Pra quem nao sabe, é aquele efeito que um anel, que players, gods, gms, etc colocam, ai fica saindo um efeito em sqms do lado desse player que está usando o anel. Se alguem tiver obrigado :}
  24. Então galera, estou aqui para pedir um script, passei a tarde inteira procurando e nada ... Tipo, eu queria um script de magia de target, tipo um exori mort, que ao invez de tirar vida, essa magia dar uma paralyze que não tenha como remover com utani gran hur, nem utani hur. Exemplo, eu solto, vamos dizer, Exori paralyze, ai essa magia é lançada no target, e o target fica paralyzado por 3 segundos! Se alguem tiver esse script, por favor, ajude-me :} Vlw desde já !
  • Quem Está Navegando   0 membros estão online

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