Ir para conteúdo
  • Cadastre-se

Posts Recomendados

Quando vou tentar casar no npc ele pede o nome do parceiro ai coloco, ai vou com o player que coloquei o nick pra casar falo hi, ai ele fala quer casar ou divorciar? eu: casar, ai ele não responde nada e da esses erros no distro.....

marrysystem.jpg

::: SCRIPT NPC :::

<?xml version="1.0" encoding="UTF-8"?>

<npc name="Priest" script="data/npc/scripts/wedding.lua" access="3" lookdir="2">

<mana now="800" max="800"/>

<health now="200" max="200"/>

<look type="57" head="20" body="30" legs="40" feet="50"/>

<parameters>

<parameter key="message_greet" value="Seja bem vindo |PLAYERNAME|! Eu posso te {casar} e fazer {divorcio}." />

<parameter key="module_keywords" value="1" />

</parameters>

</npc>

::: SCRIPT WEDDING :::

local keywordHandler = KeywordHandler:new()

local npcHandler = NpcHandler:new(keywordHandler)

NpcSystem.parseParameters(npcHandler)

local talkState = {}

function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end

function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end

function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end

function onThink() npcHandler:onThink() end

function creatureSayCallback(cid, type, msg)

if(not npcHandler:isFocused(cid)) then

return false

end

local talkUser = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid

if msgcontains(msg, 'casar') or msgcontains(msg, 'marriage') then

if getPlayerStorageValue(cid,3066) == -1 then

selfSay('Voce gostaria de se casar?', cid)

talkState[talkUser] = 1

elseif getPlayerStorageValue(cid,3066) == 1 then

local fid = getPlayerGUID(cid)

local marrystatus = getOwnMarryStatus(fid)

if marrystatus ~= 0 then

local newpartner = getPlayerNameByGUID(marrystatus)

selfSay('Voce ja definiu a data do casamento com {' .. newpartner .. '}, agora eu preciso conversar com seu parceiro. Voce quer {cancelar}?', cid)

talkState[talkUser] = 5

else

setPlayerStorageValue(cid,3066,-1)

selfSay('Voce gostaria de se casar?', cid)

talkState[talkUser] = 1

end

elseif getPlayerStorageValue(cid,3066) == 1 then

selfSay('Voce ja esta casado. Se voce quer {divorcio}, basta dizer.', cid)

talkState[talkUser] = 0

end

elseif msgcontains(msg, 'divorcio') then

if getPlayerStorageValue(cid,3066) == 1 then

selfSay('Voce tem certeza que quer se divorciar do seu parceiro?', cid)

talkState[talkUser] = 6

else

selfSay('Voce nao esta casado. Gostaria de se {casar}?', cid)

talkState[talkUser] = 0

end

end

if talkState[talkUser] == 1 then

if msgcontains(msg, 'yes') then

local fid = getPlayerGUID(cid)

local marrystatus = getMarryStatus(fid)

if marrystatus == FALSE then

selfSay('E qual o nome do seu futuro parceiro?', cid)

talkState[talkUser] = 2

else

local marryname = getPlayerNameByGUID(marrystatus)

selfSay('{' .. marryname .. '} marcou a data do casamento com voce. Voce quer {continuar} ou {cancelar} o casamento?', cid)

talkState[talkUser] = 4

end

end

elseif talkState[talkUser] == 2 then

local p = msg

local player = getPlayerName(cid)

local fid = getPlayerGUID(cid)

local sid = getPlayerGUIDByName(p)

if sid == 0 then

selfSay('Nao existe nenhum jogador com este nome.', cid)

talkState[talkUser] = 0

elseif sid == fid then

selfSay('Nao se preocupe, voce sempre estara casado com voce mesmo, garoto.', cid)

talkState[talkUser] = 0

else

local marrystatus = getMarryStatus(fid)

local pmarriage = getPlayerMarriage(sid)

local ownstatus = getOwnMarryStatus(cid)

if pmarriage == FALSE then

if marrystatus == FALSE then

if ownstatus == FALSE then

setPlayerStorageValue(cid,3066,1)

addMarryStatus(fid,sid)

selfSay('Voce acabou de marcar um casamento com {' .. p .. '}.', cid)

talkState[talkUser] = 0

else

local partnername = getPlayerNameByGUID(ownstatus)

selfSay('{' .. p .. '} ja marcou a data do casamento com {' .. partnername .. '}.', cid)

talkState[talkUser] = 0

end

else

local marryname = getPlayerNameByGUID(marrystatus)

selfSay('{' .. marryname .. '} marcou a data do casamento com voce. Voce deseja {continuar} ou {cancelar} o casamento?', cid)

talkState[talkUser] = 4

end

else

local pname = getPlayerNameByGUID(pmarriage)

selfSay('Desculpe, mas {' .. p .. '} esta casado com {' .. pname .. '}.', cid)

talkState[talkUser] = 0

end

end

elseif talkState[talkUser] == 4 then

if msgcontains(msg, 'continuar') then

local fid = getPlayerGUID(cid)

local sid = getMarryStatus(fid)

local marryname = getPlayerNameByGUID(sid)

local pid = getPlayerByNameWildcard(marryname)

local tmf = getCreaturePosition(cid)

local tms = getCreaturePosition(pid)

local text = {'Eu te amo!','Meu amor!','Minha paixao!'}

local chance1 = math.random(1,table.getn(text))

local chance2 = math.random(1,table.getn(text))

local dateFormat = "%A %d"..getMonthDayEnding(os.date("%d")).." %B %Y"

local ring = doPlayerAddItem(cid,10502,1)

local ring2 = doPlayerAddItem(pid,10502,1)

if isOnline(fid) == TRUE and isOnline(sid) == TRUE then

if getDistanceBetween(tmf, tms) <= 3 then

setPlayerStorageValue(cid,3066,1)

setPlayerStorageValue(pid,3066,1)

doCancelMarryStatus(fid)

doCancelMarryStatus(sid)

setPlayerPartner(cid,sid)

setPlayerPartner(pid,fid)

doPlayerAddOutfitId(cid,34,1)

doPlayerAddOutfitId(pid,34,1)

doItemSetAttribute(ring, "description", "" .. getCreatureName(cid) .. " & " .. getCreatureName(pid) .. " forever - married on " ..os.date(dateFormat).. ".")

doItemSetAttribute(ring2, "description", "" .. getCreatureName(cid) .. " & " .. getCreatureName(pid) .. " forever - married on " ..os.date(dateFormat).. ".")

doCreatureSay(cid, text[chance1], TALKTYPE_ORANGE_1)

doCreatureSay(pid, text[chance2], TALKTYPE_ORANGE_1)

doSendMagicEffect(tmf, 35)

doSendMagicEffect(tms, 35)

selfSay('Parabens! Agora ja podem se beijar! Sempre que quiser este efeito, basta dizer {love}. Voce precisa estar perto do seu parceiro.', cid)

talkState[talkUser] = 0

else

selfSay('Seu parceiro deve estar perto de voce para que voces possam se casar!', cid)

talkState[talkUser] = 0

end

else

selfSay('Os 2 precisam estar online para se casarem.', cid)

talkState[talkUser] = 0

end

elseif msgcontains(msg, 'cancelar') then

local fid = getPlayerGUID(cid)

local sid = getMarryStatus(fid)

local marryname = getPlayerNameByGUID(sid)

local pid = getPlayerByNameWildcard(marryname)

if isOnline(sid) == TRUE then

setPlayerStorageValue(pid,3066,-1)

end

doCancelMarryStatus(sid)

selfSay('Voce cancelou sua data de casamento com {' .. marryname .. '}.', cid)

talkState[talkUser] = 0

end

elseif talkState[talkUser] == 5 then

if msgcontains(msg, 'cancelar') or msgcontains(msg, 'yes') then

local fid = getPlayerGUID(cid)

setPlayerStorageValue(cid,3066,-1)

doCancelMarryStatus(fid)

talkState[talkUser] = 0

end

elseif talkState[talkUser] == 6 then

if msgcontains(msg, 'yes') then

local fid = getPlayerGUID(cid)

local sid = getPlayerPartner(cid)

local marryname = getPlayerNameByGUID(sid)

local pid = getPlayerByNameWildcard(marryname)

if (isOnline(fid) == TRUE and isOnline(sid) == TRUE) then

setPlayerStorageValue(cid,3066,-1)

setPlayerStorageValue(pid,3066,-1)

setPlayerPartner(cid,0)

setPlayerPartner(pid,0)

doPlayerAddOutfitId(cid,34,0)

doPlayerAddOutfitId(pid,34,0)

selfSay('Voce acabou de se divorciar do seu antigo parceiro.', cid)

talkState[talkUser] = 0

else

selfSay('Você e seu parceiro devem estar online ao mesmo tempo.', cid)

talkState[talkUser] = 0

end

end

end

return TRUE

end

npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback)

npcHandler:addModule(FocusModule:new())

Link para o post
Compartilhar em outros sites

Cara, tá feia a coisa, do jeito que eu conheço, se quiser arrumar, vai demorar e modificiar algumas coisas ai.

Mas se não conseguir alguém q lhe ajude, eu ajudo você, só falar comigo pela PM.

tumblr_minep2REUx1s25vz3o1_500.gif

Link para o post
Compartilhar em outros sites

Está dando erro pois você não adicionou a tag na database... Tente ver o script e la terá um code para executar no mysql...

Bruno de Carvalho Câmara / Administrador TibiaKing

[email protected]


 

btn_donateCC_LG.gif

 

Em 26/12/2016 em 03:47, Spraypaint disse:

A força da alienação vem dessa fragilidade dos indivíduos, quando apenas conseguem identificar o que os separa e não o que os une.

-miltinho

 

wMwSJFE.png?1

 

Link para o post
Compartilhar em outros sites

Você adicionou a coluna no seu database?

Ele não consegue achar o marrystatus.

Está dando erro pois você não adicionou a tag na database... Tente ver o script e la terá um code para executar no mysql...

Qual seria a tag pra adicinar no banco de dados?

Link para o post
Compartilhar em outros sites

tenta executar essa query:

ALTER TABLE `players` ADD `marrystatus` INT NOT NULL DEFAULT '0'

vodkart_logo.png

[*Ninguém será digno do sucesso se não usar suas derrotas para conquistá-lo.*]

 

DISCORDvodkart#6090

 

Link para o post
Compartilhar em outros sites

Você usou um script pareçido com o meu, pois bem, eu havia esquecido muitas coisas além do npc, o vodkart me lembrou!

Olhe o tópico novamente do script e adicione o resto.

Link: http://tibiaking.com/forum/topic/14295-married-system-870/page__fromsearch__1

Link para o post
Compartilhar em outros sites
  • 3 years later...

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.

×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo