Ir para conteúdo
  • Cadastre-se

Posts Recomendados

Bom, eu queria saber como eu faço para criar uma promote para um npc em que se eu virar determinada classe não poderia virar outra.

 

Ex: Se eu virar Anbu não poderei virar Akatsuki.

 

 

 

E, se fosse possível, gostaria de saber qual a maior diferença entre Narutibia 7.81 dos demais (8.54 e etc).

 

 

Obrigado por responderem (Se eu não ficar no vácuo).

 

Dou Rep ++

 

 

 

 

 

OBS: Coloquei todo o servidor para download caso vocês queiram conferir. (O que eu estou fazendo não está igual a esse, este é apenas uma base para eu não ter que criar do zero).

 

Hidden Content

    Give reaction to this post to see the hidden content.
 (Não consegui anexar)

itachi.gif

 

tumblr_mm2qc6GdeM1rlul3ao1_500.gif

 

Te ajudei? Me ajude dando rep ++

Link para o post
Compartilhar em outros sites
  • Respostas 5
  • Created
  • Última resposta

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Popular Posts

A diferença é a limitação da versão 7.81, a versão 7.81 não tem muito a oferecer, já a versão 8.54 possui mais funções, sistemas e soucers atualizadas, acho que as soucers 7.81 estão extintas, principalmente a do DNO normal, o própio servidor DNO tem muitos bugs integrados nele mesmo nos quais é possivel derruba-lo, já fui dono de servidor de naruto 7.81, retirei a maioria dos bugs deles, mas tem uns que só são possiveis ser retirados se tiver as soucers em mãos e uma noção médiana sobre program

Bom, para criar um servidor do zero, já que no caso você quer de naruto, teria que ter as soucers para adicionar novos comandos, pois essa versão é muito limitada, É possivel transformar um 8.54 em um 7.81 sim, mas só com programação e um pouco de scripts, eu mesmo já tentei fazer isso, só que não entedia muito das áreas e dessisti

A diferença é a limitação da versão 7.81, a versão 7.81 não tem muito a oferecer, já a versão 8.54 possui mais funções, sistemas e soucers atualizadas, acho que as soucers 7.81 estão extintas, principalmente a do DNO normal, o própio servidor DNO tem muitos bugs integrados nele mesmo nos quais é possivel derruba-lo, já fui dono de servidor de naruto 7.81, retirei a maioria dos bugs deles, mas tem uns que só são possiveis ser retirados se tiver as soucers em mãos e uma noção médiana sobre programação daquela versão :).

 

Bom, aqui vão os npcs, Anbu Medinin e akatsuki itachi, lembrando não testei nenhum, ambos fiz de cabeça

Para akatsuki
 

 

focus = 0

 talk_start = 0
 target = 0
 following = false
 attacking = false
 
 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)
  msg = string.lower(msg)
if ((string.find(msg, '(%a*)hi(%a*)')) and (focus == 0)) and getDistanceToCreature(cid) < 4 then
selfSay('Hello ' .. creatureGetName(cid) .. ' do you wanna be a akatsuki?.')
focus = cid
talk_start = os.clock()
end
 
elseif string.find(msg, '(%a*)hi(%a*)') and (focus ~= cid) and getDistanceToCreature(cid) < 4 then
  selfSay('Sorry, ' .. creatureGetName(cid) .. '! I talk to you in a minute.')
 
  elseif focus == cid then
talk_start = os.clock()
 
 
 
 
  if msgcontains(msg, 'yes') or msgcontains(msg, 'sim') and focus == cid then
if getPlayerStorageValue(cid,9092) == 1 then
selfSay('You already has organization.')
talk_start = 0
else
if getPlayerStorageValue(cid,9091) == 1 then
selfSay('Leave out of there, you are a good ninja.')
talk_start = 0
else
buy(cid,6227,1,0)
buy(cid,6272,1,0)
buy(cid,2411,1,0)
buy(cid,2179,1,0)
setPlayerStorageValue(cid,9090,1) --- storage de akatsuki
 
setPlayerStorageValue(cid,9092,1) --- storage de se ja tem organizacao ou nao
                learnSpell(cid,'amaterasu dragon no jutsu',0)
                learnSpell(cid,'akatsuki no jutsu',0)
                learnSpell(cid,'akat impulse',0)
                learnSpell(cid,'mangekyou tsukyomi',0)
                learnSpell(cid,'mangekyou susanoo',0)
                learnSpell(cid,'mangekyou amaterasu',0)
                learnSpell(cid,'corvos',0)
                learnSpell(cid,'susanoo',0)
                learnSpell(cid,'protecao amaterasu',0)
learnSpell(cid,'mangekyou katon godragon',0)
        selfSay('Congratulations, you has been promoted to Itachi.')
  talk_start = os.clock()
 
 
  end
end
 
  if string.find(msg, '(%a*)bye(%a*)') and focus == cid and getDistanceToCreature(cid) < 3 then
  selfSay('Good bye, ' .. creatureGetName(cid) .. '!')
  focus = 0
  talk_start = 0
  end
 end
end
 
 function onCreatureChangeOutfit(creature)
 
 end
 
 
 function onThink()
 if focus > 0 then 
 x, y, z = creatureGetPosition(focus)
 myx, myy, myz = selfGetPosition()
 if ((myy-y==0) and (myx-x<=0 and myx-x>=-4)) then
       selfTurn(0)
 end 
 if ((myy-y==0) and (myx-x>=0 and myx-x<=4)) then
       selfTurn(2)
 end
       if ((myx-x==0) and (myy-y<=0 and myy-y>=-4)) then
       selfTurn(1)
 end
 if ((myx-x==0) and (myy-y>=0 and myy-y<=4)) then
       selfTurn(3)
 end
 if ((myy-y==-2) and (myx-x>=-1 and myx-x<=1)) then
       selfTurn(1)
 end
 if ((myy-y==2) and (myx-x>=-1 and myx-x<=1)) then
        selfTurn(3)
 end
 if ((myx-x==2) and (myy-y>=-1 and myy-y<=1)) then
        selfTurn(2)
 end
 if ((myx-x==-2) and (myy-y>=-1 and myy-y<=1)) then
        selfTurn(0)
 end
 if ((myy-y==-3) and (myx-x>=-2 and myx-x<=2)) then
        selfTurn(1)
 end
 if ((myy-y==3) and (myx-x>=-2 and myx-x<=2)) then
        selfTurn(3)
 end
 if ((myx-x==3) and (myy-y>=-2 and myy-y<=2)) then
        selfTurn(2)
 end
 if ((myx-x==-3) and (myy-y>=-2 and myy-y<=2)) then
        selfTurn(0)
 end
 if ((myy-y==-4) and (myx-x>=-3 and myx-x<=3)) then
        selfTurn(1)
 end
 if ((myy-y==4) and (myx-x>=-3 and myx-x<=3)) then
        selfTurn(3)
 end
 if ((myx-x==4) and (myy-y>=-3 and myy-y<=3)) then
        selfTurn(2)
 end
 if ((myx-x==-4) and (myy-y>=-3 and myy-y<=3)) then
        selfTurn(0)
 end
end
if focus == 0 then
 randmove = math.random(1,50)
 if randmove == 1 then
  selfMove(0)
 end
 if randmove == 2 then
  selfMove(1)
 end
 if randmove == 3 then
  selfMove(2)
 end
 if randmove == 4 then
  selfMove(3)
 end
end
  if (os.clock() - talk_start) > 30 then
  if focus > 0 then
  selfSay('Next Please...')
  end
  focus = 0
  end
if focus ~= 0 then
if getDistanceToCreature(focus) > 3 then
selfSay('Good bye then.')
focus = 0
end
end
 end
 

 

Para anbu
 

 

focus = 0

 talk_start = 0
 target = 0
 following = false
 attacking = false
 
 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)
  msg = string.lower(msg)
if ((string.find(msg, '(%a*)hi(%a*)')) and (focus == 0)) and getDistanceToCreature(cid) < 4 then
selfSay('Hello ' .. creatureGetName(cid) .. ' do you wanna be a anbu medinin?.')
focus = cid
talk_start = os.clock()
end
 
elseif string.find(msg, '(%a*)hi(%a*)') and (focus ~= cid) and getDistanceToCreature(cid) < 4 then
  selfSay('Sorry, ' .. creatureGetName(cid) .. '! I talk to you in a minute.')
 
  elseif focus == cid then
talk_start = os.clock()
 
 
 
 
  if msgcontains(msg, 'yes') or msgcontains(msg, 'sim') and focus == cid then
if getPlayerStorageValue(cid,9092) == 1 then
selfSay('You already has organization.')
talk_start = 0
else
if getPlayerStorageValue(cid,9090) == 1 then
selfSay('Leave out of there, you are a renegade ninja.')
talk_start = 0
else
buy(cid,6273,1,0)
buy(cid,6226,1,0)
buy(cid,6260,1,0)
 
setPlayerStorageValue(cid,9091,1) --- storage de anbu
setPlayerStorageValue(cid,9092,1) --- storage de se ja tem organizacao ou nao
                learnSpell(cid,'anbu prision no jutsu',0)
                learnSpell(cid,'anbu heal',0)
                learnSpell(cid,'anbu shaikan',0)
                learnSpell(cid,'nippon anbu medical',0)
selfSay('/makesay ' .. creatureGetName(cid) .. ',!cmot3416 65')
        selfSay('Congratulations, you has been promoted to Anbu medinin.')
  talk_start = os.clock()
end
 
  end
 
 
  if string.find(msg, '(%a*)bye(%a*)') and focus == cid and getDistanceToCreature(cid) < 3 then
  selfSay('Good bye, ' .. creatureGetName(cid) .. '!')
  focus = 0
  talk_start = 0
  end
 end
end
 
 function onCreatureChangeOutfit(creature)
 
 end
 
 function onThink()
 if focus > 0 then 
 x, y, z = creatureGetPosition(focus)
 myx, myy, myz = selfGetPosition()
 if ((myy-y==0) and (myx-x<=0 and myx-x>=-4)) then
       selfTurn(0)
 end 
 if ((myy-y==0) and (myx-x>=0 and myx-x<=4)) then
       selfTurn(2)
 end
       if ((myx-x==0) and (myy-y<=0 and myy-y>=-4)) then
       selfTurn(1)
 end
 if ((myx-x==0) and (myy-y>=0 and myy-y<=4)) then
       selfTurn(3)
 end
 if ((myy-y==-2) and (myx-x>=-1 and myx-x<=1)) then
       selfTurn(1)
 end
 if ((myy-y==2) and (myx-x>=-1 and myx-x<=1)) then
        selfTurn(3)
 end
 if ((myx-x==2) and (myy-y>=-1 and myy-y<=1)) then
        selfTurn(2)
 end
 if ((myx-x==-2) and (myy-y>=-1 and myy-y<=1)) then
        selfTurn(0)
 end
 if ((myy-y==-3) and (myx-x>=-2 and myx-x<=2)) then
        selfTurn(1)
 end
 if ((myy-y==3) and (myx-x>=-2 and myx-x<=2)) then
        selfTurn(3)
 end
 if ((myx-x==3) and (myy-y>=-2 and myy-y<=2)) then
        selfTurn(2)
 end
 if ((myx-x==-3) and (myy-y>=-2 and myy-y<=2)) then
        selfTurn(0)
 end
 if ((myy-y==-4) and (myx-x>=-3 and myx-x<=3)) then
        selfTurn(1)
 end
 if ((myy-y==4) and (myx-x>=-3 and myx-x<=3)) then
        selfTurn(3)
 end
 if ((myx-x==4) and (myy-y>=-3 and myy-y<=3)) then
        selfTurn(2)
 end
 if ((myx-x==-4) and (myy-y>=-3 and myy-y<=3)) then
        selfTurn(0)
 end
end
if focus == 0 then
 randmove = math.random(1,50)
 if randmove == 1 then
  selfMove(0)
 end
 if randmove == 2 then
  selfMove(1)
 end
 if randmove == 3 then
  selfMove(2)
 end
 if randmove == 4 then
  selfMove(3)
 end
end
  if (os.clock() - talk_start) > 30 then
  if focus > 0 then
  selfSay('Next Please...')
  end
  focus = 0
  end
if focus ~= 0 then
if getDistanceToCreature(focus) > 3 then
selfSay('Good bye then.')
focus = 0
end
end
 end
 
Editado por esnio12 (veja o histórico de edições)
Link para o post
Compartilhar em outros sites

A diferença é a limitação da versão 7.81, a versão 7.81 não tem muito a oferecer, já a versão 8.54 possui mais funções, sistemas e soucers atualizadas, acho que as soucers 7.81 estão extintas, principalmente a do DNO normal, o própio servidor DNO tem muitos bugs integrados nele mesmo nos quais é possivel derruba-lo, já fui dono de servidor de naruto 7.81, retirei a maioria dos bugs deles, mas tem uns que só são possiveis ser retirados se tiver as soucers em mãos e uma noção médiana sobre programação daquela versão :).

 

Bom, aqui vão os npcs, Anbu Medinin e akatsuki itachi, lembrando não testei nenhum, ambos fiz de cabeça

Para akatsuki

 

 

Para anbu

 

 

 

Agradeço e já estou testando, gostaria de saber se criar um srv do zero versão 7.81 acabaria com os bugs? Porque... Eu não manjo nada de 8.54, mas o problema em sí é que eu não gosto da aparência do 8.54, desde as paredes as sprites que não parecem estar em pé, mas deitadas.

 

Haveria alguma forma de modificar todo o 8.54 afim de deixar sua aparência parecida com a 7.81? (Ou se começar do zero, teria acabado com os bugs?)

itachi.gif

 

tumblr_mm2qc6GdeM1rlul3ao1_500.gif

 

Te ajudei? Me ajude dando rep ++

Link para o post
Compartilhar em outros sites

Agradeço e já estou testando, gostaria de saber se criar um srv do zero versão 7.81 acabaria com os bugs? Porque... Eu não manjo nada de 8.54, mas o problema em sí é que eu não gosto da aparência do 8.54, desde as paredes as sprites que não parecem estar em pé, mas deitadas.

 

Haveria alguma forma de modificar todo o 8.54 afim de deixar sua aparência parecida com a 7.81? (Ou se começar do zero, teria acabado com os bugs?)

Bom, para criar um servidor do zero, já que no caso você quer de naruto, teria que ter as soucers para adicionar novos comandos, pois essa versão é muito limitada, É possivel transformar um 8.54 em um 7.81 sim, mas só com programação e um pouco de scripts, eu mesmo já tentei fazer isso, só que não entedia muito das áreas e dessisti

Link para o post
Compartilhar em outros sites

Bom, para criar um servidor do zero, já que no caso você quer de naruto, teria que ter as soucers para adicionar novos comandos, pois essa versão é muito limitada, É possivel transformar um 8.54 em um 7.81 sim, mas só com programação e um pouco de scripts, eu mesmo já tentei fazer isso, só que não entedia muito das áreas e dessisti

 

Eu to afim de dar uma olhada a fundo no servidor 7.81, você sabe onde eu encontro os sources do 7.81?

itachi.gif

 

tumblr_mm2qc6GdeM1rlul3ao1_500.gif

 

Te ajudei? Me ajude dando rep ++

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 Thiagodsw
      Olá galera do Tibia King !
      Venho por meio deste tópico, publicar a ultima versão do meu servidor derivado de Tibia NTO Battle.
       
      deixei para brincarem e verem sistemas, as sources não disponibilizarei nem o site. afinal é um projeto que fiz com carinho e está a venda as sources. Thogo#9713
       
      O que tem de diferente no NTO Battle ? 
       
      Aura System e Wings Healthbar Monster Bar Healthbar vocation Sistema Raridade Shaders Dungeons e Tasks Game Shop Entre outros Veja algumas Imagens !
       
       
      O que tem nesse Pacote de Arquivos NTO Battle? 
       
      Datapack mais recente e completa do servidor. ( compilada pra windows Client Compilado SQL
      ACC GOD - god/god


      QUALQUER MSG NO DISCORD Thogo#9713
      -source client e otserv e site.
       
      DOWNLOAD  &  SCAN


       
      Client:
      https://mega.nz/file/hbgnSDRJ#xQT-qQHWLUV2Dn8jalwMGblCWnmL0_s3rZfqbxO7znw
      Server:
      https://mega.nz/file/sSZXlZ6a#gow-Db6diNVrnnPIH7qyBqP8WmVLFxWy85-yub_f32Y


       
      Scan
      Client
      https://www.virustotal.com/gui/file/86da72135d75d826c2665bb572084c30288eea843c2cfe2f7a405cfe1ea2f59c/detection
      Servidor
      https://www.virustotal.com/gui/file/cfa4d83c8b6c12fa0daf28cefd6762a053aee7245e6be8f5c02594825a2e2c1e?nocache=1
    • Por M ustang
      Olá vim aqui postar o servidor do NARUTO STORM e NARUTO UNLIMITED pois o servidor foi vendido e mesmo assim colocaram o servidor online depois de prometer que não iriam abrir.
      Com mesmo mapa etc.
      https://www.youtube.com/channel/UCpqGkQxffeaqRdxf8UvAyUg Aqui possui alguns videos do que contem no servidor.
       
      Link do server: 
      https://mega.nz/file/q6YQhKLa#-QJ8sK-wwaL-9d4My2LdLYABjcgrVaw73mWEewTCdTI
      Scan
      obs: Scan por @LeoTK
       
      Informações do Servidor:
      System de FLY
      Portões do GUY
      Imortal
      Mapa proprio
      Radar Bijuu
      OBS: CONTEÚDO PRÓPRIO PARA ESTE FÓRUM COMO FOI COMPRADO QUERO O CONTEÚDO SÓ AQUI NÃO ESTÁ LIBERADO A POSTAGEM EM OUTROS FÓRUNS 
      ( não recomendo baixar e colocar online e sim estudar oque foi tentado criar pois contem muitos bugs )
       
      Servidor criado por: Daniel e Bruno.
      Tenho o total direito de postar pois o mesmo foi vendido para varias outras pessoas.
      Caso precisem de provas que o servidor foi comprado mande uma mensagem na DM.
    • Por Eytor
      OLÁ USUARIOS DO TIBIA KING .. HOJE ESTAREI TRAZENDO UMA NOVIDADE .. O SERVIDOR DE NTO EXCLUSIVO DO NTO BLACK & WHITE(AKELE OT NOVO QUE FOI CRIADO A 1 MES POR E MIN E POR O [ADM] Johnatan).
        VALE LEMBRAR QUE O NTO BLACK WHITE FOI UM DOS SERVIDORES DE NARUTIBIA QUE MAIS CRESCEU NOS ULTIMOS TEMPOS .. EM APENAS 1 SEMANA DE NTO JÁ ATINGIMOS A META DE 70 ~ 80 USUARIOS ONLINE FIXOS DIARIOS, E ESSE É O SERVIDOR MAIS RECENTE DO NTO BLACK WHITE BASEADO NO DO SERVIDOR MADARA RINNEGAN EDITADO POR MIN E POR O JOHNATA.
        ANTES DE MAIS NADA GOSTARIA DE EXPLICAR O MOTIVO DE TAR POSTANDO O SERVER .. BEM O JOHNATAN ERA QUEM FAZIA PRATICAMENTE TUDO NAS ATUALIZAÇÕES E TAALS .. POREM ELE PAROU COM NTO AI TIVE QUE DESMONTAR O NTO B&W PORQUE EU NÃO TINHA CONDIÇÕES PRA DAR CONTA DO NTO SOZINHO.
       
      CHEGA DE BLABLA E VAMOS LÁ!!
       
      [+] NOVIDADES & CARACTERISTICAS
      [+] ERROS E BUGS
      [+] PRINTS DO SERVER
      [+] DOWNLOAD
      [+] CREDITOS
       
      [+] NOVIDADES & CARACTERISTICAS
       



       
      [+] ERROS E BUGS
       



       
      [+] PRINTS DO SERVER
       



       
      [+] Downloads
       
      Servidor Naruto B&W: Hidden Content
      Give reaction to this post to see the hidden content.
      Client(descompilado): Hidden Content
      Give reaction to this post to see the hidden content.
       
      [+] Creditos
       
      - Madara Rinnegan (servidor base)
      - [ADM] Johnata Editar Praticamente Todo o Servidor
      - Eu Por umas Besteiras q eu Coloquei e Por Postar
       
      GOSTOU DO SERVIDOR?
      DA UM REP++
    • Por Jeff Delay
      Salve pessoal, como ja coletei mt conteudo daqui hoje vim compartilhar algo que na verdade já está free em alguns canais de discord, uma base de nto que eu abri em 2020/2021 até que deu certo e pegou 500/600 players no auge, porem com varios problemas fechei e vendi porem ela ja roda de graça em varios canais então tenho certeza que não tem problema divulgar ela aqui, oque a base tem?
      Sistema de elo [Rankeamento];
      Sistema edo tensei [Selamento de corpos];
      Sistemas de saga [historia];
      42 pessonagens completos, todos funcionais e com habilidades unicas;
      Sistema de vocação do dia [primeiro nto a ter];
      Sistema de raridade [Primeiro nto a ter];
      Sistema de fontes termais;
      Sistema anbu/akatsuki com bonus;
      Sistema de roleta [acredito nunca ter visto uma rotela parecida com a que nos fizemos]
      Sistema de cidadão;
      Sistema de jinchuriki;
      e outros ai que não lembro alem de alguns eventos, o jogo tem bastante coisa e eu dediquei bastante tempo nele, porem atualmente estou trabalhando em outro novamente assim que ficar disponivel iirei postar aqui.
      quem tiver curiosidade tem varios videos no yt sobre o jogo]
      Creditos a mim que começei o projeto e ao meu irmão jean, lembro como ta o nome dele aqui então vai ficar por isso mesmo.
      no arquivo contem Otc, server, site e sourcer.
      Base utilizada foi nto shinobi 8.54
      não pretendo dar suporte a nada até porque esta abandonado por mim desde 2021
       
      https://mega.nz/file/4cdxiJQT#AYXaTLB_Avkys9VrLKymzNY_I2UJcLxDLFLzIgjL-js VirusTotal - File - f9f1bc435cdfc98845ede6adbbc03763aaf5e2c942732f21efe3e1fe1c1b36fe









    • Por Etheron8
      Olá venho Trazer uma Base que a muito tempo eu procurei e consegui a pouco tempo e vim compartilhar com vocês
      Fico ansioso para ver oque conseguem fazer com ela.

      Datapack Wosbr
      https://www.virustotal.com/gui/file/0030eddd53a5ba6e9195a3e6ba4e61fff4fe55a718fb1233bdbce91f67bcb8b7?nocache=1
       
      Client compativel anexado
      scan client : https://www.virustotal.com/gui/file/7a90cda2bffd7cb6cb26f551968b13d5eeceb11ad69e8c1178708dba9eeadf57?nocache=1
       
      NtoLegend.rar
  • Estatísticas dos Fóruns

    96846
    Tópicos
    519602
    Posts



×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo