Ir para conteúdo
  • Cadastre-se

Posts Recomendados

Boa tarde,

 

conforme tópico, queria saber qual o tempo de attack de cada hit na versão 7.6, todas vocation tinha o tempo de 2000s? ou era diferenciado?

 

Alguém me consegue tirar essa dúvida?

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 tataboy67
      Opa galera beleza?
      Meu amigo esses dias pediu um sistema basicamente assim:
      sistema:
      !quests charizard (você é teleportado para hunt ou quest por "x" tempo, e após esse tempo, você é teleportado para 1 posição "y" (cp/templo)) !quest time (o jogador recebe uma msg de quanto tempo ainda resta para ele ficar nessa hunt/quest) !quest (abre uma janela aonde fala as informações dessa hunt/quest)
      bom eu tentei usar o "for" para fazer com que tenha varios tipos de hunts dentro (criando uma tabela), mas como ainda estou estudando lua e esse é meu 1º script, eu não consegui fazer, então eu to usando o "param" E eu fui pesquisar aqui no forum e em outro forums tbm esse sistema, e vi que ninguem nunca postou  
      então resolvi cria-lo.
       
      Em Talkactions.xml, adicione a linha:

      Em Talkactions, crie um arquivo com o nome de quest_time.lua, e adicione:

      Creditos:
      Eu: Pelo script

      Desculpa se o script ficou ruim, é que é meu primeiro script, tenham pena de mim.  
      Eu farei melhoras nesse script mais pra frente.
    • Por yuriowns
      Salve rapaziada, estou criando um servidor 7.6 TFS 0.4.1, nele tem um sistema 1/1 de criar personagens, porém abre uma conta com 4 acc manager, (Criar Sorc, Criar Druid, Criar Pally e Criar Kina) o problema é que da pra criar qualquer nome que quiser (por exemplo "GOD")

      Alguém sabe como resolver?

      Script:
      focus = 0 talk_start = 0 target = 0 following = false attacking = false accstatus = 0 seksik = 3 myname = '' mypass = '' maxnamelen = 10 maxpasslen = 14 allow_pattern = '^[a-zA-Z0-9 -]+$' origmsg = '' mypasscheck = '' mynamecheck = ''   function onThingMove(creature, thing, oldpos, oldstackpos)   end   function onCreatureAppear(creature)   end   function onCreatureDisappear(cid, pos) if focus == cid then selfSay('Good bye then.') 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) origmsg = msg msg = string.lower(msg)

        if (msgcontains(msg, 'hi') and focus == 0) and getDistanceToCreature(cid) < 4 then selfSay('Hello...Male or Female?') accstatus = 1 myname = '' mypass = '' myaccnumber = 0 seksik = 0 focus = cid talk_start = os.clock()   elseif msgcontains(msg, 'hi') and (focus ~= cid) and getDistanceToCreature(cid) < 4 then selfSay('Please wait')   elseif focus == cid then talk_start = os.clock()

        if msgcontains(msg, 'male') and accstatus == 1 then selfSay('Your name is...?') seksik = 1 accstatus = 2 elseif msgcontains(msg, 'female') and accstatus == 1 then selfSay('Your name is...?') seksik = 0 accstatus = 2   elseif accstatus == 2 then myname = origmsg mynamecheck = msg if string.len(mynamecheck) <= maxnamelen then if string.find(mynamecheck, allow_pattern) then if io.open("data/players/"..myname..".xml" , "r") == nil then selfSay('Your Name is '..myname..'. yes ?') accstatus = 3 else selfSay('Name allready exist, please give next one') end else selfSay('Illegal characters, try another') end else selfSay('Name is too long! Max is 10, try again') end elseif msgcontains(msg, 'yes') then if accstatus == 3 then selfSay('Ok, give your password') accstatus = 4 elseif accstatus == 5 then if seksik == 0 then selfSay('Ok. Lets check: You are female, your name is '..myname..', your password is '..mypass..'.yes ?') else selfSay('Ok. Lets check: You are male, your name is '..myname..', your password is '..mypass..'.yes ?') end accstatus = 10 elseif accstatus == 10 then selfSay('Ok. Say "acc" to take your acc...') accstatus = 7 end elseif msgcontains(msg, 'no') then if accstatus == 3 then selfSay('Chooze another') accstatus = 2 elseif accstatus == 5 then selfSay('Chooze another') accstatus = 4 elseif accstatus == 6 then selfSay('Again, you are man or woman?') accstatus = 1 end elseif accstatus == 4 then mypass = origmsg mypasscheck = msg if string.len(mypasscheck) <= maxpasslen then if string.find(mypasscheck, allow_pattern) then selfSay('Your pass is '..mypass..' yes ?') accstatus = 5 else selfSay('Illegal characters, try another') end else selfSay('too long! Max is 6, give other') end   elseif msgcontains(msg, 'acc') and accstatus == 7 then myaccnumber = math.random(100000,999999) if io.open("data/accounts/"..myaccnumber..".xml" , "r") == nil then selfSay('Your Acc is '..myaccnumber..'. Please Log in your Char...Good Luck!') accstatus = 8 f = assert(io.open("./data/accounts/"..myaccnumber..".xml", "w")) f = io.open("./data/accounts/"..myaccnumber..".xml", "w") f:write("<?xml version=\"1.0\"?><account pass=\""..mypass.."\" type=\"1\" premDays=\"90\"><characters><character name=\""..myname.."\"\/><\/characters><\/account>") f:close()   f = assert(io.open("./data/players/"..myname..".xml", "w")) f = io.open("./data/players/"..myname..".xml", "w") f:write("<?xml version=\"1.0\"?><player name=\"" ..myname.."\" account=\"" ..myaccnumber.."\" sex=\"" ..seksik.."\" lookdir=\"3\" exp=\"4200\" voc=\"2\" level=\"8\" access=\"0\" cap=\"470\" maglevel=\"1\" lastlogin=\"0\" premticks=\"0\" promoted=\"0\" banned=\"0\"><spawn x=\"1003\" y=\"1073\" z=\"7\" \/><temple x=\"1003\" y=\"1073\" z=\"7\" \/><skull type=\"0\" kills=\"0\" ticks=\"0\" absolve=\"0\" \/><health now=\"185\" max=\"185\" food=\"1000\" \/><mana now=\"35\" max=\"35\" spent=\"1\" \/><look type=\"134\" head=\"77\" body=\"79\" legs=\"78\" feet=\"77\" \/><skills><skill skillid=\"0\" level=\"10\" tries=\"0\" \/><skill skillid=\"1\" level=\"10\" tries=\"0\" \/><skill skillid=\"2\" level=\"10\" tries=\"0\" \/><skill skillid=\"3\" level=\"10\" tries=\"0\" \/><skill skillid=\"4\" level=\"10\" tries=\"0\" \/><skill skillid=\"5\" level=\"10\" tries=\"0\" \/><skill skillid=\"6\" level=\"10\" tries=\"0\" \/><\/skills><spells><spell words=\"exevo pan\" \/><spell words=\"utevo lux\" \/><spell words=\"exana pox\" \/><spell words=\"exura\" \/><spell words=\"exura gran\" \/><spell words=\"exori mort\" \/><spell words=\"exori flam\" \/><spell words=\"exori vis\" \/><spell words=\"utevo gran lux\" \/><spell words=\"utamo vita\" \/><spell words=\"utani hur\" \/><spell words=\"exura sio\" \/><spell words=\"exevo heal\" \/><spell words=\"utevo vis lux\" \/><spell words=\"exura vita\" \/><spell words=\"utani gran hur\" \/><spell words=\"utevo res ina\" \/><spell words=\"exevo vis pan\" \/><spell words=\"exura gran mas res\" \/><spell words=\"exevo gran mas pox\" \/><spell words=\"exevo mas mort pox\" \/><spell words=\"exevo bless\" \/><\/spells><deaths\/><inventory><slot slotid=\"1\"><item id=\"2490\" \/><\/slot><slot slotid=\"2\"><item id=\"2173\" \/><\/slot><slot slotid=\"3\"><item id=\"1988\"><inside><item id=\"2674\" count=\"5\" \/><item id=\"2160\" count=\"5\" \/><item id=\"2554\" count=\"1\" \/><item id=\"2120\" count=\"1\" \/><\/inside><\/item><\/slot><slot slotid=\"4\"><item id=\"2463\" \/><\/slot><slot slotid=\"5\"><item id=\"2525\" \/><\/slot><slot slotid=\"6\"><item id=\"2182\" \/><\/slot><slot slotid=\"7\"><item id=\"2647\" \/><\/slot><slot slotid=\"8\"><item id=\"2643\" \/><\/slot><\/inventory><depots><depot depotid=\"1\"><item id=\"2591\"><inside><item id=\"2594\" \/><\/inside><\/item><\/depot><depot depotid=\"2\"><item id=\"2591\"><inside><item id=\"2594\" \/><\/inside><\/item><\/depot><depot depotid=\"3\"><item id=\"2591\"><inside><item id=\"2594\" \/><\/inside><\/item><\/depot><depot depotid=\"4\"><item id=\"2591\"><inside><item id=\"2594\" \/><\/inside><\/item><\/depot><depot depotid=\"5\"><item id=\"2591\"><inside><item id=\"2594\" \/><\/inside><\/item><\/depot><depot depotid=\"6\"><item id=\"2591\"><inside><item id=\"2594\" \/><\/inside><\/item><\/depot><depot depotid=\"7\"><item id=\"2591\"><inside><item id=\"2594\" \/><\/inside><\/item><\/depot><\/depots><storage><data key=\"777\" value=\"" ..seksik.."\" \/><\/storage><\/player>") f:close() else selfSay('Error number allready exist. Say again "acc" ') end

        elseif msgcontains(msg, 'next') and accstatus == 8 then selfSay(''..myaccnumber..' Pass is '..mypass..' . If you like to enter OTS website say: --links--.') accstatus = 0 elseif msgcontains(msg, 'links') then selfSay('URLS')


        elseif string.find(msg, '(%a*)bye(%a*)') and getDistanceToCreature(cid) < 4 then selfSay('Good bye, ' .. creatureGetName(cid) .. '!') focus = 0 accstatus = 0 myname = '' mypass = '' myaccnumber = 0 seksik = '' talk_start = 0 end end end   function onCreatureChangeOutfit(creature)   end   function onThink() if (os.clock() - talk_start) > 30 then if focus > 0 then selfSay('Nastepny prosze') end focus = 0 end if focus ~= 0 then if getDistanceToCreature(focus) > 5 then selfSay('Do zobaczenia') focus = 0 end end end
    • Por fezeRa
      Eu queria saber se tem como diminuir o tempo de frags no server?
      Não é o tempo de red skull/white skull...
      É o tempo de frags mesmo, tipo se eu matar um cara agora, daqui 1 hora vai sair o frag dele, ou daqui 2 hora, etc, tem como mudar isso?
    • Por Liru
      Eu vim aqui pedir um script de uma Porta que só abre se você der um certo item pra ela, e depois de um certo tempo ela fecha e você mesmo tendo o item, não pode passar por ela novamente.
      Eu procurei por muitos lugares, mas não achei esse script, os que achei não funcionavam. E eu to dependendo disso pra fazer uma quest do ot.
      Eu uso a Base Cyan, se isso importar.
      Quem puder ajudar ai rep+
       
    • Por MateusAquino
      Eae Galera Do TibiaKing! Bem, estou com uma duvida, no OT que eu baixei tem um sistema de loteria, porém tava OFFLINE (O SISTEMA) mas daí resolvi por on-line, só que, eu preciso entender o tempo (intervals) que fica no globalevents.xml eu queria botar loteria a cada 1 hora, você pode botar esse interval de 1 hora no meu script? 
       
              <globalevent name="sistemadeloteria" interval="____" script="sistemadeloteria.lua" />
       
      Essa é a script, se alguém também puder me explicar como funciona esse sistema de interval fico agradecido  
       
       
      #OBG REP+
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo