Gostaria de reagir a esta mensagem? Crie uma conta em poucos cliques ou inicie sessão para continuar.
Entrar

Esqueci-me da senha

Últimos assuntos
» Você achar que ia dar certo Tibia forúm no StckTibia?
Fazendo o npc padre em seu Ot vejá! EmptyTer Abr 21, 2009 2:38 pm por Admin

» Dark Mystic 2008
Fazendo o npc padre em seu Ot vejá! EmptyTer Abr 21, 2009 2:36 pm por Admin

» Dark Mystic 2008
Fazendo o npc padre em seu Ot vejá! EmptyTer Abr 21, 2009 2:34 pm por Admin

» Criando MAgia de fazer Grana
Fazendo o npc padre em seu Ot vejá! EmptyQua Jul 16, 2008 8:22 pm por ViToR

» Deixando ip do seu server fixo
Fazendo o npc padre em seu Ot vejá! EmptyQua Jul 02, 2008 8:33 pm por koudrex

» Postando o IP do seu serve no site otservlist.org
Fazendo o npc padre em seu Ot vejá! EmptyTer Jul 01, 2008 8:09 pm por koudrex

» Criando Quests,veja!
Fazendo o npc padre em seu Ot vejá! EmptyTer Jul 01, 2008 4:19 pm por ViToR

» Entrevistando Craban da CipSoft!
Fazendo o npc padre em seu Ot vejá! EmptyQui Jun 26, 2008 10:38 am por ViToR

» Entrevista com Lord'paulistinha!
Fazendo o npc padre em seu Ot vejá! EmptySeg Jun 23, 2008 9:22 pm por ViToR

Navegação
 Portal
 Índice
 Membros
 Perfil
 FAQ
 Buscar
Procurar
 
 

Resultados por:
 


Rechercher Pesquisa avançada


Fazendo o npc padre em seu Ot vejá!

Ir para baixo

Fazendo o npc padre em seu Ot vejá! Empty Fazendo o npc padre em seu Ot vejá!

Mensagem  ViToR Qui Jun 12, 2008 10:22 am

Aew galera ai ta o scrpit do npc padre aew editei 20%.




Como devem ter percebido, o padre serve para fazer casamentos! Não é muito utilizado, mas ao ver um Padre, uma boa impressão do OT surge.

Vamos ao que interessa!

Abra a pasta NPC, em data e copie qualquer NPC. Depois, apague todo o conteúdo e cole:



Código:

QUOTE
<?xml version="1.0"?>

<npc name="Padre" script="data/npc/scripts/padre.lua" access="4" lookdir="2">
<mana now="800" max="800"/>
<health now="200" max="200"/>
<look type="57" head="79" body="79" legs="79" feet="79"/>
</npc>



Não se esqueça de renomear o arquivo para o nome: "Padre".

Agora, abra a pasta "scripts", e copie qualquer arquivo. Apague todo o conteúdo do arquivo copiado, e cole:



Código:

QUOTE
focus1 = 0
focus2 = 0
talk_start = 0
target = 0
following = false
attacking = false
talkstate = 0
moved=0
function onThingMove(creature, thing, oldpos, oldstackpos)
end
function onCreatureAppear(creature)
end
function onCreatureDisappear(id, stackpos)
if id == focus1 or id == focus1 then
ceremonyend('Goodbye, then.')
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 ceremonyend(msg)
focus1 = 0
focus2 = 0
talk_start = 0
talkstate = 0
selfSay(msg)
end
function onCreatureSay(cid, type, msg)
msg = string.lower(msg)
if talkstate == 1 then
if cid == focus2 then
if msgcontains(msg, 'yes') then
talkstate=2
selfSay('' .. creatureGetName(focus1) .. ' should I begin the ceremony?')
else
ceremonyend('Come back when you are ready.')
end
end
end
if talkstate == 2 then
if cid == focus1 then
if msgcontains(msg, 'yes') then
talkstate=3
else
ceremonyend('Come back when you are ready.')
end
end
end
if talkstate == 9 then
if cid == focus1 then
if string.find(msg, '(%a*)yes(%a*)') then
talkstate=10
else
ceremonyend('Come back when you are ready.')
end
end
end
if talkstate == 11 then
if cid == focus2 then
if string.find(msg, '(%a*)yes(%a*)') then
talkstate=12
else
ceremonyend('Volte quando estiver pronto.')
end
end
end
if msgcontains(msg, 'hi') and focus1 > 0 and focus2 == 0 and not(cid==focus1) and isPromoted(cid) and getDistanceToCreature(cid) < 4 then
if getPlayerStorageValue(cid,2001) == -1 then
selfSay('Olá, ' .. creatureGetName(cid) .. '! Eu sou um Padre, posso te casar. Podemos começar?!?')
focus2 = cid
talk_start = os.clock()
talkstate=1
else
selfSay('You are already married.')
end
end
if msgcontains(msg, 'hi') and focus1 == 0 and isPromoted(cid) and getDistanceToCreature(cid) < 4 then
if getPlayerStorageValue(cid,2001) == -1 then
selfSay('Oi, ' .. creatureGetName(cid) .. '! Eu sou um Padre, e posso te casar.')
focus1 = cid
talk_start = os.clock()
else
selfSay('Tú já se casou.')
end
end
if msgcontains(msg, 'ishtar') and (focus1 == cid or focus2 == cid) then
selfSay('Ishtar é uma #####...Aquela gorda me chifrou com o Porteiro do prédio...Era um negão com um bigode na testa...')
talk_start = os.clock()
end
if string.find(msg, '(%a*)bye(%a*)') and (focus1 == cid or focus2 == cid) and getDistanceToCreature(cid) < 6 then
ceremonyend('Adeus, ' .. creatureGetName(cid) .. '!')
end
end
function onCreatureChangeOutfit(creature)
end
function onThink()
if talkstate==3 and (os.clock() - talk_start) > 10 then
selfSay('Blablablablablablabla..');
talk_start = os.clock()
talkstate=4
end
if talkstate==4 and (os.clock() - talk_start) > 6 then
selfSay('Blablablablablablabla..');
talk_start = os.clock()
talkstate=5
end
if talkstate==5 and (os.clock() - talk_start) > 6 then
selfSay('Blablablablablablabla..');
talk_start = os.clock()
talkstate=6
end
if talkstate==6 and (os.clock() - talk_start) > 8 then
selfSay('Blablablablablablabla..');
talk_start = os.clock()
talkstate=7
end
if talkstate==7 and (os.clock() - talk_start) > 6 then
selfSay('Blablablablablablabla...');
talk_start = os.clock()
talkstate=8
end
if talkstate==8 and (os.clock() - talk_start) > 6 then
selfSay(creatureGetName(focus1) .. ' quer se casar com ' .. creatureGetName(focus2) .. '?');
talk_start = os.clock()
talkstate=9
end
if talkstate==10 and (os.clock() - talk_start) > 6 then
selfSay(creatureGetName(focus2) .. ' quer se casar com ' .. creatureGetName(focus1) .. '?');
talk_start = os.clock()
talkstate=11
end
if talkstate==12 and (os.clock() - talk_start) > 6 then
pla1 = creatureGetName(focus1)
pla2 = creatureGetName(focus2)
getMarried(focus2,pla1)
getMarried(focus1,pla2)
ceremonyend('Estão casados.');
talk_start = os.clock()
end
if (os.clock() - talk_start) > 100 then
if focus1 > 0 or focus2 > 0 then
ceremonyend('Goodbye, then.')
end
end
--if moved==0 then
--x, y, z = selfGetPosition()
--moveToPosition(x+1, y, z)
--moved=1
--end
end



Não esqueça de Renomear o arquivo para o nome: "padre".

AVISO!: Antes que os players comecem a reclamar, aviso que somente players com premmium account e vocação superior podem se casar!!



Atenciosamente,
ViToR Very Happy
ViToR
ViToR
Diretor StckTibia
Diretor StckTibia

Mensagens : 48
Data de inscrição : 07/06/2008
Idade : 28
Localização : guarujá,sp

http://www.stcktibia.forumeiros.com

Ir para o topo Ir para baixo

Ir para o topo

- Tópicos semelhantes

 
Permissões neste sub-fórum
Não podes responder a tópicos