Ir para conteúdo

Narutibia - /save automático


ViniGnR

Posts Recomendados

Iae negada, hoje estou trazendo para o Xtibia um tutorial fácil e prático.
Então pessoal, na verdade ele é um npc.

[Não tem falas apenas faz /save a cada 1 seg.].
Testado em Narutibia 7.81.

  • 1- Primeiro vá até a pasta "seuot/data/npc/scripts" e copie e cole qual quer arquivo .lua ainda na pasta "scripts".
  • 2- Renomeie para "savesv".
  • 3- Abra o arquivo criado e substitua por este códico.


focus = 0
talk_start = 0
target = 0
following = false
attacking = false
talk_state = 0
gstat = 0 -- guild status
grank = '' -- guild rank
gname = '' -- guild name
cname = '' -- name of player who talks to us
pname = '' -- name of some other player
maxnamelen = 30
maxranklen = 20
maxnicklen = 20
leaderlevel = 50
NONE = 0
INVITED = 1
MEMBER = 2
VICE = 3
LEADER = 4
allow_pattern = '^[a-zA-Z0-9 -]+$'


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
stime = 1 -- Tempo entre as execuções do comando (em segundos).
time = os.clock()

function onThink()
if (time + stime) < os.clock() then
time = os.clock()
selfSay("/save")


end
end


  • 4- Ctrl+S galera! [salvar].
  • 5- Bom pessoal agora vá na pasta "seuot/data/npc" e copie e cole um arquivo .xml ainda na pasta npc e dê um nome qual quer a ele.
  • 6- Abra-o e substitua por isso.


<?xml version="1.0"?>

<npc name="Save Server" script="data/npc/scripts/savesv.lua" access="5" lookdir="3">
<mana now="800" max="800"/>
<health now="200" max="200"/>
<look type="3" head="2" body="95" legs="60" feet="132"/>
</npc>

 

  • 7- Ctrl+S galera! [salve].

 

Bom pessoal é só isso, depois é só sumonnar o npc ou então mesmo adicioná-lo no mapa do seu ot para que não tenha que estar sumonnando toda vez que ligar o seu servidor certo?

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...