Ir para conteúdo
  • Cadastre-se

Posts Recomendados

  • 6 months later...
  • Respostas 34
  • Created
  • Última resposta

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

Name of the project: Dragon Ball New Story Project version: v1.51 TFS version: 0.3.6pl1r102 Version of the protocol: 8.54     Dragon Ball New Story v1.51     What does our server have?: [*] Advanced and expanded SAG SYSTEM [*] The two weapons system [*] A lot of "chest quests" and those more discerning [*] Many bonus spells: (including "Mystic Chou Maretsugeki" and a lot more) [*] 19 "Balanced" vocations [*] Attack Speed System [*] Huge map (Comparing to other server) [*] And a lot more! *Can't

Parabéns, seu tópico de conteúdo foi aprovado! Muito obrigado pela sua contribuição, nós do Tibia King agradecemos. Seu conteúdo com certeza ajudará à muitos outros, você recebeu +1 REP.  

Fix List (?): *data/globalevents/scripts/efekty.lua ~~~~~ REMOVE         local graczu = (getCreaturename(cid) == 'Swirus')         elseif(getCreatureName(cid) == 'Swirus') then             if getPlayerGroupId(cid) < 6 then                 doPlayerSetGroupId(graczu, 6)             end *data/XML/vocations.xml ~~~~~ CHANGE interval="1600" orpse="3019" CHANGE TO interval="1600" corpse="3019" ////27.06.2018

How do I configure the effects of transforms?

Como faço para configurar os efeitos das transformações?

Edit:

when I open the map, there is an items.otb version error, I take the file from the Items folder and place it in the RME 854 folder and still the error, and some parts of the map get bugged. As item 975 of the temple edge

quando abro o mapa, acontece um erro de versao do Items.otb, eu pego o arquivo da pasta Items e coloco na pasta do RME 854 e ainda assim da erro, e algumas partes do mapa ficam com bug. como o item 975 da borda do templo

 

--------------

não tem como usar bot neste cliente? voce quer fazer para voltar? porque hoje em dia quase ninguem joga sem bot.

can't use bot in this client? do you want to go back? because nowadays almost nobody plays without bot.

Editado por KiraConquest (veja o histórico de edições)
Link para o post
Compartilhar em outros sites
  • 7 months later...
  Em 02/04/2020 em 13:07, snowhite023 disse:

Do you can refresh link?

 

Expand   Mostrar mais  

download

 

Host bom para hospedar seu jogo => https://shre.ink/OminiHost

 

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 kean1337
      After a long break, DBAW returns with a new season! 
       
      This will be the edition with the biggest update since the server's launch! 
       
      What's new?
       
      -New planet Beerus
      -New transformation from level 1000
      -New specials for new transformation
      -Fusion moved from level 750 to 600
      -New items, tasks, missions
      -New Bosses with new mechanics
      -Accelerated gameplay 1-1000
      -Additional amenities in the early game
       
      And on top of that, the systems we already know from previous editions!
       
      -16 playable classes
      -special passives for every class
      -saga system (from DB to DBGT)
      -daily mission
      -raid system
      -dragon balls system
      -advanced task system
      -glyphs & enchants
      -easy/medium/hard/very hard/bonus quests
      -offline training
      -auto loot
      -auto senzu
      -toogle stamina system
      -DP stash systems
       
      We start on April 4, 2025!
      20:00 PL
      15:00 BR
       
      Website: http://dbaw.pl/
      Discord: https://discord.gg/dnwGsaXN
    • Por Natsume
      Website: https://dbsu.eu
                Fanpage: https://www.facebook.com/profile.php?id=61550637247869
                                      Discord: https://discord.gg/hx5QHWfsgg

       
       

       
       
       
    • Por MySticaL
      Como funciona esse sistema?
      R-> Simples caso seu otServ for para todos os players, de todos continentes e você não
      queira deixar as funções em lua apenas em uma língua, você pode utilizar esse sistema.
       
      Como usar?
      R-> Após o sistema estar instalado 100%, vai ter 3 comandos: !lang en (setar a linguagem para english), !lang pt (setar a linguagem portuguese) &
      !lang es (setar a linguagem espanõl).

      Vamos começar, vai em data/lib/ e crie um arquivo chamado lang system.lua e coloque isto dentro:
      function getPlayerLanguage(cid) local Lang = db.getResult("SELECT `language` FROM `accounts` WHERE `id` = " .. getPlayerAccountId(cid) .. " LIMIT 1") if Lang:getID() ~= LUA_ERROR then local langid = Lang:getDataInt("language") Lang:free() return langid end return LUA_ERROR end function doPlayerSetLanguage(cid, new) local acc = getPlayerAccountId(cid) if new == 2 then db.executeQuery("UPDATE `accounts` SET language = 2 WHERE `id` = " .. acc) elseif new == 1 then db.executeQuery("UPDATE `accounts` SET language = 1 WHERE `id` = " .. acc) else db.executeQuery("UPDATE `accounts` SET language = 0 WHERE `id` = " .. acc) end end Ainda em data/lib encontre o arquivo 000-constant.lua e coloque ao final dele isto:
      ENGLISH = 2 SPANISH = 1 PORTUGUES = 0 Agora execute este código na sua SQL:
      ALTER TABLE `accounts` ADD `language` INT( 11 ) NOT NULL DEFAULT '0' Pronto, o sistema está pronto agora vamos criar um comando para que troque a linguagem, vá em data/talkactions/scripts
      e crie um arquivo chamado lang.lua e coloque isto dentro:
      function onSay(cid, words, param) if(param == '') then return true end if(param == 'en') then if getPlayerLanguage(cid) == 2 then doPlayerSendTextMessage(cid, 20, "[Language System (Beta)] Your language is alredy set to english.") return true else doPlayerSendTextMessage(cid, 27, "[Language System (Beta)] You have set english as your language.") doPlayerSetLanguage(cid, 2) return true end end if(param == 'pt') then if getPlayerLanguage(cid) == 0 then doPlayerSendTextMessage(cid, 20, "[Language System (Beta)] Sua língua já está definida como português.") return true else doPlayerSendTextMessage(cid, 27, "[Language System (Beta)] Você definiu o português como sua língua.") doPlayerSetLanguage(cid, 0) return true end end if(param == 'es') then if getPlayerLanguage(cid) == 1 then doPlayerSendTextMessage(cid, 20, "[Language System (Beta)] Su lengua ya esta definida como español.") return true else doPlayerSendTextMessage(cid, 27, "[Language System (Beta)] Tu definistes el español como tu lengua.") doPlayerSetLanguage(cid, 1) return true end end end E em data/talkactions abra o talkactions.xml e coloque está tag:
      <talkaction log="yes" words="!lang" event="script" value="lang.lua"/> Vou dar um exemplo de como usa-la em .lua:
      if getPlayerLanguage(cid) == 2 then doPlayerSendTextMessage(cid, 25, "This message will be displayed in English if the language of the player is in -en!") end if getPlayerLanguage(cid) == 0 then doPlayerSendTextMessage(cid, 25, "Está mensagem será exibida em português se a linguagem do jogador estiver em -pt!") end if getPlayerLanguage(cid) == 1 then doPlayerSendTextMessage(cid, 25, "Usted mensaje se mostrará en Espanõl si el jugador está en el lenguaje -es!") end Outro Exemplo:
      function onLogin(cid) local langmsg = { [ENGLISH] = {"This message will be displayed in English if the language of the player is in -en!"} [SPANISH] = {"Usted mensaje se mostrará en Espanõl si el jugador está en el lenguaje -es!"}, [PORTUGUES] = {"Está mensagem será exibida em português se a linguagem do jogador estiver em -pt!"}, } doPlayerSendTextMessage(cid, 25, langmsg[getPlayerLanguage(cid)][1]) return true end Pronto, agora o sistema está perfeito, os comandos estão no começo do tópico em "Como usar?"
       
      créditos:
      Acubens 
      Drazyn1291 
      MySticaL
    • Por nizin
      Olá pessoal! Tudo bem? Venho aqui exibir o Show Off do mapa do meu Server. Estou trabalhando no mapa a um tempo e ele foi feito inteiramente por mim do absoluto ZERO.
      Lembrando que o mapa ainda não esta 100%, conforme o tempo eu vou postando novas atualizações.
       
       
       
       
    • Por trint
      Bom Dia, Boa Tarde, Boa Noite
      Hoje trago para vocês uma base minha que usei para muitos projetos.
      É um excelente servidor e tem poucos bugs, algumas arrumadas por me.
      Estou soltando por motivos pessoais!!!
      ---------------------------------------------------------------------------------------------------------------------
      Servidor de DBO
      Contém diversas caves e quests espalhadas pelo o servidor.
      Servidor contem ele em si, Client (Com .exe, spr e dat). NÃO ACOMPANHA A SOURCE CASO QUEIRA USAR UMA UTILIZE A DO @Yan Liima.
      Link: 
      https://tibiaking.com/forums/topic/96040-860-tfs-04-rev3996-war-cast/


      CASO QUEIRA ALGUMA IMAGEM OU VIDEO SO COLOCAR NO YOUTUBE "DBO ABSOLUT"

      OBS: NÃO PERMITO QUE O MESMO SEJA POSTADO EM OUTRO FORUM, SEM MINHA PERMISSÃO !!!!!!

      ---------------------------------------------------------------------------------------------------------------------

      CRETIDOS: EU(trint, crazy, yelpz, como queira chamar)

      Download AND Scan
       
       
      francis.sql
  • Estatísticas dos Fóruns

    96842
    Tópicos
    519602
    Posts



×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo