Ir para conteúdo
  • Cadastre-se

Posts Recomendados

Esse script é basicamente o seguinte, você ta cansado dakele Varkhal que qualquer noob level 8 vai la e compra a full addon, então que tal um sistema que, apenas os merecedores podem ter as addons? Que tal uma fonte que, ao clicar o player ganha uma full addon???? Gostou? Ai vai:

Abra a pasta do seu OT>Data>Actions>Actions.xml

Coloque isso em qualquer lugar entre o <actions> e o </actions>:


<action uniqueid="8913" script="addons.lua">  <action uniqueid="8914" script="addons.lua">  <action uniqueid="8915" script="addons.lua">  <action uniqueid="8916" script="addons.lua">

Salve, feche, e abra a pasta Scripts; Copie e cole qualquer arquivo LUA; Renomeie para addons; Abra, apague tudo e cole isso:

	   if item.uid == 8913 then

				queststatus = getPlayerStorageValue(cid,1500)

				if queststatus == -1 then

						doPlayerSendTextMessage(cid,22,"You have found the citizen addon full.")

						doPlayerAddOutfit(cid, 128, 3)

						doPlayerAddOutfit(cid, 136, 3)

						setPlayerStorageValue(cid,1500,1)

				else

						doPlayerSendTextMessage(cid,22,"It is empty.")

				end

		elseif item.uid == 8914 then

				queststatus = getPlayerStorageValue(cid,1600)

				if queststatus == -1 then

						doPlayerSendTextMessage(cid,22,"You have found the hunter addon full.")

						doPlayerAddOutfit(cid, 129, 3)

						doPlayerAddOutfit(cid, 137, 3)

						setPlayerStorageValue(cid,1600,1)

				else

						doPlayerSendTextMessage(cid,22,"It is empty.")

				end

		elseif item.uid == 8915 then

				queststatus = getPlayerStorageValue(cid,1700)

				if queststatus == -1 then

						doPlayerSendTextMessage(cid,22,"You have found the mage addon full.")

						doPlayerAddOutfit(cid, 138, 3)

						doPlayerAddOutfit(cid, 130, 3)

						setPlayerStorageValue(cid,1700,1)

				else

						doPlayerSendTextMessage(cid,22,"It is empty.")

				end

		elseif item.uid == 8916 then

				queststatus = getPlayerStorageValue(cid,1800)

				if queststatus == -1 then

						doPlayerSendTextMessage(cid,22,"You have found the knight addon full.")

						doPlayerAddOutfit(cid, 139, 3)

						doPlayerAddOutfit(cid, 131, 3)

						setPlayerStorageValue(cid,1800,1)

				else

						doPlayerSendTextMessage(cid,22,"It is empty.")

				end

		else

				return 0

		end


		return 1

end


Ai vocês editam, mudam ali o "doPlayerAddOutfit(cid, 131, 3)" pro addon que vocês querem

Citizen: 136/128 - 3

Hunter: 137/129 - 3

Mage: 138/130 - 3

Knight: 139/131 - 3

Nobleman: 140/132 - 3

Summoner: 141/133 - 3

Warrior: 142/134 - 3

Barbarian: 147/143 - 3

Druid: 148/144 - 3

Wizard: 149/145 - 3

Oriental: 150/146 - 3

Pirate: 155/151 - 3

Assassin: 156/152 - 3

Beggar: 157/153 - 3

Shaman: 158/154 - 3

Norseman: 252/151 - 3

Nightmare: 269/268 - 3

Jester: 270/273 - 3

Brotherhood: 279/278  - 3

Demonhunter: 288/289 - 3

Yalaharian: 342/325 - 3


Creditos: Danitero

15nra01.gif

O conteúdo é bom e de qualidade? Te ajudei?
Então não esqueça do REP!

Link para o post
Compartilhar em outros sites
  • Administrador

Opa, belo tópico amigo, muito bem organizado e com um ótimo conteúdo.

Reputado!

Avatar secsy heim (:

TibiaKing Team- KingTópicos
www.tibiaking.com

Link para o post
Compartilhar em outros sites

Achei bem legal a idéia, muito criativo.

Um adicional a mais pra OTs que visam o bom e velho RPG ;D

# Regras Gerais - TibiaKing.com #
Contato: [email protected]
Não respondo dúvidas via MP.


1C2tu.png4Tlqo.png1C2tu.png


 

Link para o post
Compartilhar em outros sites
  • 2 weeks later...
  • 2 months later...

Acho que arrumei,


function onUse(cid, item, fromPosition, itemEx, toPosition)

	if item.uid == 8913 then

		queststatus = getPlayerStorageValue(cid, 1500)

		if queststatus == -1 then

			doPlayerSendTextMessage(cid, 22, "You have found the citizen addon full.")

			doPlayerAddOutfit(cid, 128, 3)

			doPlayerAddOutfit(cid, 136, 3)

			setPlayerStorageValue(cid, 1500, 1)

		else

			doPlayerSendTextMessage(cid, 22, "It is empty.")

		end

	elseif item.uid == 8914 then

		queststatus = getPlayerStorageValue(cid, 1600)

		if queststatus == -1 then

			doPlayerSendTextMessage(cid, 22, "You have found the hunter addon full.")

			doPlayerAddOutfit(cid, 129, 3)

			doPlayerAddOutfit(cid, 137, 3)

			setPlayerStorageValue(cid, 1600, 1)

		else

			doPlayerSendTextMessage(cid, 22, "It is empty.")

		end

	elseif item.uid == 8915 then

		queststatus = getPlayerStorageValue(cid, 1700)

		if queststatus == -1 then

			doPlayerSendTextMessage(cid, 22, "You have found the mage addon full.")

			doPlayerAddOutfit(cid, 138, 3)

			doPlayerAddOutfit(cid, 130, 3)

			setPlayerStorageValue(cid, 1700, 1)

		else

			doPlayerSendTextMessage(cid, 22, "It is empty.")

		end

	elseif item.uid == 8916 then

		queststatus = getPlayerStorageValue(cid, 1800)

		if queststatus == -1 then

			doPlayerSendTextMessage(cid, 22, "You have found the knight addon full.")

			doPlayerAddOutfit(cid, 139, 3)

			doPlayerAddOutfit(cid, 131, 3)

			setPlayerStorageValue(cid, 1800, 1)

		else

			doPlayerSendTextMessage(cid, 22, "It is empty.")

		end

	end

	return true

end

Fiz um aqui também, bem menor,

addons = {

    {female = 128, male = 136, itemID = 8913, storage = 1500, msg = "You have found the citizen addon full."}, -- Citizen

    {female = 129, male = 137, itemID = 8914, storage = 1600, msg = "You have found the hunter addon full."}, -- Hunter

    {female = 138, male = 130, itemID = 8915, storage = 1700, msg = "You have found the mage addon full."}, -- Mage

    {female = 139, male = 131, itemID = 8916, storage = 1800, msg = "You have found the knight addon full."} -- Knight

}

function onUse(cid, item)

    for _, v in ipairs(addons) do

        if item.uid == v.itemID then

            queststatus = getPlayerStorageValue(cid, v.storage)

            if queststatus == -1 then

                doPlayerSendTextMessage(cid, 22, v.msg)

                doPlayerAddOutfit(cid, v.female, 3)

                doPlayerAddOutfit(cid, v.male, 3)

                setPlayerStorageValue(cid, v.storage, 1)

            else

                doPlayerSendTextMessage(cid, 22, "It's empty.")

            end

        end

    end

    return true

end

Editado por fireelement (veja o histórico de edições)
Link para o post
Compartilhar em outros sites
  • 3 months 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