Ir para conteúdo
  • Cadastre-se

Posts Recomendados

Tipo, então vc qr um script que ao dizer: !wand o script transforme o item (wand1) no item (wand2) certo?

Te ajudei?? REP + e ficamos quites... <ahttp://www.tibiaking.com/forum/uploads/emoticons/default_happyy.png' alt=';D'>

Atenciosamente,

Daniel.

Abraços!

Link para o post
Compartilhar em outros sites

Tipo, então vc qr um script que ao dizer: !wand o script transforme o item (wand1) no item (wand2) certo?

 

não jovem, ele quer aquele que diz: !wand holy, !wand death etc só que pro TFS 1.0

Link para o post
Compartilhar em outros sites

Amigo, não testei, testa ae:

 

Va na pasta data/talkactions e adicione essa tag ao arquivo talkactions.xml:

	<talkaction log="yes" words="/wand;!wand" event="script" value="wands.lua"/>

Agora va na pasta data/talkactions/scripts e crie um arquivo chamado wands.lua e coloque isso dentro:

local wand1 = 18390 --ID da wand de Energy
local wand2 = 18409 --ID do item de Fire 
local wand3 = 8922 --ID do item de Death 

function onSay(cid, words, param, item, item2)

if (getPlayerItemCount(cid, wand1) ~= 0) or (getPlayerItemCount(cid, wand2) ~= 0) or (getPlayerItemCount(cid, wand3) ~= 0) then
	if(param == "energy") then
		if getPlayerItemCount(wand2) ~= 0
		doPlayerRemoveItem(cid, wand2, 1)
		doPlayerAddItem(cid, wand1, 1)
		else getPlayerItemCount(wand3) ~= 0
		doPlayerRemoveItem(cid, wand3, 1)
		doPlayerAddItem(cid, wand1, 1)
		end
	
	elseif (param == "fire") then
		if getPlayerItemCount(wand1) ~= 0
		doPlayerRemoveItem(cid, wand1, 1)
		doPlayerAddItem(cid, wand2, 1)
		else getPlayerItemCount(wand3) ~= 0
		doPlayerRemoveItem(cid, wand3, 1)
		doPlayerAddItem(cid, wand2, 1)
		end
	else (param == "death") then
		if getPlayerItemCount(wand1) ~= 0
		doPlayerRemoveItem(cid, wand1, 1)
		doPlayerAddItem(cid, wand3, 1)
		else getPlayerItemCount(wand2) ~= 0
		doPlayerRemoveItem(cid, wand2, 1)
		doPlayerAddItem(cid, wand3, 1)
		end
end
end
return true
end

Editado por danihcv (veja o histórico de edições)

Te ajudei?? REP + e ficamos quites... <ahttp://www.tibiaking.com/forum/uploads/emoticons/default_happyy.png' alt=';D'>

Atenciosamente,

Daniel.

Abraços!

Link para o post
Compartilhar em outros sites

Conferi as funções desse script e elas coincidem com as do TFS 1.0:
[Wand] Muda de efeito

The corrupt fear us.

The honest support us.

The heroic join us.

Link para o post
Compartilhar em outros sites

Conferi as funções desse script e elas coincidem com as do TFS 1.0:

[Wand] Muda de efeito

Não funcionou.

 

Amigo, não testei, testa ae:

 

Va na pasta data/talkactions e adicione essa tag ao arquivo talkactions.xml:

	<talkaction log="yes" words="/wand;!wand" event="script" value="wands.lua"/>

Agora va na pasta data/talkactions/scripts e crie um arquivo chamado wands.lua e coloque isso dentro:

local wand1 = 18390 --ID da wand de Energy
local wand2 = 18409 --ID do item de Fire 
local wand3 = 8922 --ID do item de Death 

function onSay(cid, words, param, item, item2)

if (getPlayerItemCount(cid, wand1) ~= 0) or (getPlayerItemCount(cid, wand2) ~= 0) or (getPlayerItemCount(cid, wand3) ~= 0) then
	if(param == "energy") then
		if getPlayerItemCount(wand2) ~= 0
		doPlayerRemoveItem(cid, wand2, 1)
		doPlayerAddItem(cid, wand1, 1)
		else getPlayerItemCount(wand3) ~= 0
		doPlayerRemoveItem(cid, wand3, 1)
		doPlayerAddItem(cid, wand1, 1)
		end
	
	elseif (param == "fire") then
		if getPlayerItemCount(wand1) ~= 0
		doPlayerRemoveItem(cid, wand1, 1)
		doPlayerAddItem(cid, wand2, 1)
		else getPlayerItemCount(wand3) ~= 0
		doPlayerRemoveItem(cid, wand3, 1)
		doPlayerAddItem(cid, wand2, 1)
		end
	else (param == "death") then
		if getPlayerItemCount(wand1) ~= 0
		doPlayerRemoveItem(cid, wand1, 1)
		doPlayerAddItem(cid, wand3, 1)
		else getPlayerItemCount(wand2) ~= 0
		doPlayerRemoveItem(cid, wand2, 1)
		doPlayerAddItem(cid, wand3, 1)
		end
end
end
return true
end

Também não funcionou. :/

Link para o post
Compartilhar em outros sites

Deu algum erro na distro?

Te ajudei?? REP + e ficamos quites... <ahttp://www.tibiaking.com/forum/uploads/emoticons/default_happyy.png' alt=';D'>

Atenciosamente,

Daniel.

Abraços!

Link para o post
Compartilhar em outros sites

Tenta agora:

local wand1 = 18390 --ID da wand de Energy
local wand2 = 18409 --ID do item de Fire 
local wand3 = 8922 --ID do item de Death 

function onSay(cid, words, param, item, item2)

if (getPlayerItemCount(cid, wand1) ~= 0) or (getPlayerItemCount(cid, wand2) ~= 0) or (getPlayerItemCount(cid, wand3) ~= 0) then
	if(param == "energy") then
		if getPlayerItemCount(wand2) ~= 0
		doPlayerRemoveItem(cid, wand2, 1)
		doPlayerAddItem(cid, wand1, 1)
		else getPlayerItemCount(wand3) ~= 0
		doPlayerRemoveItem(cid, wand3, 1)
		doPlayerAddItem(cid, wand1, 1)
		end
	
	elseif (param == "fire") then
		if getPlayerItemCount(wand1) ~= 0
		doPlayerRemoveItem(cid, wand1, 1)
		doPlayerAddItem(cid, wand2, 1)
		else getPlayerItemCount(wand3) ~= 0
		doPlayerRemoveItem(cid, wand3, 1)
		doPlayerAddItem(cid, wand2, 1)
		end
	else (param == "death") then
		if getPlayerItemCount(wand1) ~= 0
		doPlayerRemoveItem(cid, wand1, 1)
		doPlayerAddItem(cid, wand3, 1)
		else getPlayerItemCount(wand2) ~= 0
		doPlayerRemoveItem(cid, wand2, 1)
		doPlayerAddItem(cid, wand3, 1)
		end
end
else
doPlayerSendCancel(cid, "Desculpe, voce precisa ter uma das wands especificas.")
end
return true
end

 

Obs: Vc precisa ter uma das seguintes wands pra poder usar o comando:

Wand of Everblazing

Wand of Defiance

Wand of Voodoo

Editado por danihcv (veja o histórico de edições)

Te ajudei?? REP + e ficamos quites... <ahttp://www.tibiaking.com/forum/uploads/emoticons/default_happyy.png' alt=';D'>

Atenciosamente,

Daniel.

Abraços!

Link para o post
Compartilhar em outros sites

Tenta agora:

local wand1 = 18390 --ID da wand de Energy
local wand2 = 18409 --ID do item de Fire 
local wand3 = 8922 --ID do item de Death 

function onSay(cid, words, param, item, item2)

if (getPlayerItemCount(cid, wand1) ~= 0) or (getPlayerItemCount(cid, wand2) ~= 0) or (getPlayerItemCount(cid, wand3) ~= 0) then
	if(param == "energy") then
		if getPlayerItemCount(wand2) ~= 0
		doPlayerRemoveItem(cid, wand2, 1)
		doPlayerAddItem(cid, wand1, 1)
		else getPlayerItemCount(wand3) ~= 0
		doPlayerRemoveItem(cid, wand3, 1)
		doPlayerAddItem(cid, wand1, 1)
		end
	
	elseif (param == "fire") then
		if getPlayerItemCount(wand1) ~= 0
		doPlayerRemoveItem(cid, wand1, 1)
		doPlayerAddItem(cid, wand2, 1)
		else getPlayerItemCount(wand3) ~= 0
		doPlayerRemoveItem(cid, wand3, 1)
		doPlayerAddItem(cid, wand2, 1)
		end
	else (param == "death") then
		if getPlayerItemCount(wand1) ~= 0
		doPlayerRemoveItem(cid, wand1, 1)
		doPlayerAddItem(cid, wand3, 1)
		else getPlayerItemCount(wand2) ~= 0
		doPlayerRemoveItem(cid, wand2, 1)
		doPlayerAddItem(cid, wand3, 1)
		end
end
else
doPlayerSendCancel(cid, "Desculpe, voce precisa ter uma das wands especificas.")
end
return true
end

 

Obs: Vc precisa ter uma das seguintes wands pra poder usar o comando:

Wand of Everblazing

Wand of Defiance

Wand of Voodoo

Não tipo, a ideia é 1 wand só, e ela muda seus elementos, saca?

Link para o post
Compartilhar em outros sites

Claro que não vai funcionar, não tem quase nenhnuma dessas funções no tfs 1.0 meu jovem

doPlayerRemoveItem(cid, wand1, 1)
        doPlayerAddItem(cid, wand2, 1)
        else getPlayerItemCount(wand3) ~= 0

 

 

vocês viajam

Editado por Feart (veja o histórico de edições)
Link para o post
Compartilhar em outros sites

Claro que não vai funcionar, não tem quase nenhnuma dessas funções no tfs 1.0 meu jovem

doPlayerRemoveItem(cid, wand1, 1)

        doPlayerAddItem(cid, wand2, 1)

        else getPlayerItemCount(wand3) ~= 0

 

 

vocês viajam

Na verdade, essas funções que você citou existem sim no TFS 1.0.

Veja algumas delas nesse tópico: Lua Functions [TFS 1.0].

The corrupt fear us.

The honest support us.

The heroic join us.

Link para o post
Compartilhar em outros sites

@falling, tenta usar o do link que o suicide postou:

http://www.tibiaking.com/forum/topic/16187-wand-muda-de-efeito/

Te ajudei?? REP + e ficamos quites... <ahttp://www.tibiaking.com/forum/uploads/emoticons/default_happyy.png' alt=';D'>

Atenciosamente,

Daniel.

Abraços!

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.

×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo