Ir para conteúdo
  • Cadastre-se

Posts Recomendados

Olá queria saber se alguém consegue colocar exausted de 3 segundos nesse script 

 

 

local config = {
--[vocation id] = { level, nova voc, looktype, efeito}
-- Goku --
[1] = { 30, 2, 439, 112},
[2] = { 50, 3, 440, 114},
[3] = { 75, 4, 441, 114},
[4] = { 100, 5, 442, 114},
[5] = { 150, 6, 444, 114},
[6] = { 180, 7, 445, 116},
[7] = { 200, 8, 446, 115},


----------------------------
---------Reborn-------------
----------------------------
[10] = { 50, 11, 448, 114},
[11] = { 100, 12, 449, 114},
[12] = { 150, 13, 450, 114},
[13] = { 199, 14, 451, 34},
[14] = { 200, 15, 452, 112},
[15] = { 400, 16, 454, 116},

-- Goku --


}
function onSay(cid, words, param, channel)
local voc = config[getPlayerVocation(cid)]
if voc then
if getPlayerLevel(cid) >= voc[1] then
doPlayerSetVocation(cid, voc[2])
doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "Voce Transformou!")
local outfit = {lookType = voc[3]}
doCreatureChangeOutfit(cid, outfit)
doSendMagicEffect(getCreaturePosition(cid), voc[4])
else
doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "Voce precisa estar no level " .. voc[1] .. " para transformar.")
end
else
doPlayerSendCancel(cid, "Voce nao pode se Transformar!")
end
return true
end

 

Link para o post
Compartilhar em outros sites

Não testei, mas acho que resolve.

Teste:

local config = {
--[vocation id] = { level, nova voc, looktype, efeito}
-- Goku --
[1] = { 30, 2, 439, 112},
[2] = { 50, 3, 440, 114},
[3] = { 75, 4, 441, 114},
[4] = { 100, 5, 442, 114},
[5] = { 150, 6, 444, 114},
[6] = { 180, 7, 445, 116},
[7] = { 200, 8, 446, 115},


----------------------------
---------Reborn-------------
----------------------------
[10] = { 50, 11, 448, 114},
[11] = { 100, 12, 449, 114},
[12] = { 150, 13, 450, 114},
[13] = { 199, 14, 451, 34},
[14] = { 200, 15, 452, 112},
[15] = { 400, 16, 454, 116},

-- Goku --


}
function onSay(cid, words, param, channel)
	local time = 1 -- Quanto tempo de exausted você deseja
	local storage = 4557 -- Storage utilizada no check	
	local voc = config[getPlayerVocation(cid)]
	if getPlayerStorageValue(cid, storage) <= os.time()	then	
		if voc then
			if getPlayerLevel(cid) >= voc[1] then
			doPlayerSetVocation(cid, voc[2])
			doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "Voce Transformou!")
			local outfit = {lookType = voc[3]}
			doCreatureChangeOutfit(cid, outfit)
			doSendMagicEffect(getCreaturePosition(cid), voc[4])
			setPlayerStorageValue(cid, storage, os.time()+time)
			else
			doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "Voce precisa estar no level " .. voc[1] .. " para transformar.")
			end			
		else
		doPlayerSendCancel(cid, "Voce nao pode se Transformar!")
		end
	else
	doPlayerSendTextMessage(cid, 2, "You can't use this again right now.")
	doSendMagicEffect(getThingPos(cid),CONST_ME_POFF)
	return false
	end
return true
end

Pra configurar edite apenas isto:

 

	local time = 1 -- Quanto tempo de exausted você deseja
	local storage = 4557 -- Storage utilizada no check
Editado por login12 (veja o histórico de edições)

 

@This life is filled with hurt

When happiness doesn't work

Trust me and take my hand

When the lights go out you will understand

Link para o post
Compartilhar em outros sites
2 horas atrás, ADM Esdras disse:

irei testar

Deu?

 

@This life is filled with hurt

When happiness doesn't work

Trust me and take my hand

When the lights go out you will understand

Link para o post
Compartilhar em outros sites
Em 03/11/2016 ás 17:17, login12 disse:

Deu?

Deu funcionou Obrigado só achei estranho quando ele da o exausted ele sai o nome ex: antes o script voce falava transformar ele nao falava tipo como um flod ele esta agora quando da exausted ele fala o nome transformar sem parar acho que deve ser coisa simples de se arrumar.

Link para o post
Compartilhar em outros sites
3 minutos atrás, ADM Esdras disse:

Deu funcionou Obrigado só achei estranho quando ele da o exausted ele sai o nome ex: antes o script voce falava transformar ele nao falava tipo como um flod ele esta agora quando da exausted ele fala o nome transformar sem parar acho que deve ser coisa simples de se arrumar.

 

Não entendi nada que você falou '-'

 

@This life is filled with hurt

When happiness doesn't work

Trust me and take my hand

When the lights go out you will understand

Link para o post
Compartilhar em outros sites

só adc um return true

 

 

local config = {
--[vocation id] = { level, nova voc, looktype, efeito}
-- Goku --
[1] = { 30, 2, 439, 112},
[2] = { 50, 3, 440, 114},
[3] = { 75, 4, 441, 114},
[4] = { 100, 5, 442, 114},
[5] = { 150, 6, 444, 114},
[6] = { 180, 7, 445, 116},
[7] = { 200, 8, 446, 115},


----------------------------
---------Reborn-------------
----------------------------
[10] = { 50, 11, 448, 114},
[11] = { 100, 12, 449, 114},
[12] = { 150, 13, 450, 114},
[13] = { 199, 14, 451, 34},
[14] = { 200, 15, 452, 112},
[15] = { 400, 16, 454, 116},

-- Goku --

}
function onSay(cid, words, param, channel)
	local time = 30 -- Quanto tempo de exausted você deseja
	local storage = 4557 -- Storage utilizada no check	
	local voc = config[getPlayerVocation(cid)]
	if getPlayerStorageValue(cid, storage) <= os.time()	then	
		if voc then
			if getPlayerLevel(cid) >= voc[1] then
			doPlayerSetVocation(cid, voc[2])
			doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "Voce Transformou!")
			local outfit = {lookType = voc[3]}
			doCreatureChangeOutfit(cid, outfit)
			doSendMagicEffect(getCreaturePosition(cid), voc[4])
			setPlayerStorageValue(cid, storage, os.time()+time)
			else
			doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "Voce precisa estar no level " .. voc[1] .. " para transformar.")
			end			
		else
		doPlayerSendCancel(cid, "Voce nao pode se Transformar!") return true
		end
	else
	doPlayerSendTextMessage(cid, 2, "You can't use this again right now.")
	doSendMagicEffect(getThingPos(cid),CONST_ME_POFF)
	return true
	end
return true
end

 

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
22 minutos atrás, Vodkart disse:

só adc um return true

 

 


local config = {
--[vocation id] = { level, nova voc, looktype, efeito}
-- Goku --
[1] = { 30, 2, 439, 112},
[2] = { 50, 3, 440, 114},
[3] = { 75, 4, 441, 114},
[4] = { 100, 5, 442, 114},
[5] = { 150, 6, 444, 114},
[6] = { 180, 7, 445, 116},
[7] = { 200, 8, 446, 115},


----------------------------
---------Reborn-------------
----------------------------
[10] = { 50, 11, 448, 114},
[11] = { 100, 12, 449, 114},
[12] = { 150, 13, 450, 114},
[13] = { 199, 14, 451, 34},
[14] = { 200, 15, 452, 112},
[15] = { 400, 16, 454, 116},

-- Goku --

}
function onSay(cid, words, param, channel)
	local time = 30 -- Quanto tempo de exausted você deseja
	local storage = 4557 -- Storage utilizada no check	
	local voc = config[getPlayerVocation(cid)]
	if getPlayerStorageValue(cid, storage) <= os.time()	then	
		if voc then
			if getPlayerLevel(cid) >= voc[1] then
			doPlayerSetVocation(cid, voc[2])
			doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "Voce Transformou!")
			local outfit = {lookType = voc[3]}
			doCreatureChangeOutfit(cid, outfit)
			doSendMagicEffect(getCreaturePosition(cid), voc[4])
			setPlayerStorageValue(cid, storage, os.time()+time)
			else
			doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "Voce precisa estar no level " .. voc[1] .. " para transformar.")
			end			
		else
		doPlayerSendCancel(cid, "Voce nao pode se Transformar!") return true
		end
	else
	doPlayerSendTextMessage(cid, 2, "You can't use this again right now.")
	doSendMagicEffect(getThingPos(cid),CONST_ME_POFF)
	return true
	end
return true
end

 

Ohh!

Entendi agora. Juro que esqueci disso, obrigado pela correção @Vodkart!

 

@This life is filled with hurt

When happiness doesn't work

Trust me and take my hand

When the lights go out you will understand

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.

  • Conteúdo Similar

    • Por LeoTK
      Salve galera neste tópico irei postar algumas prints do mapa do servidor para quem queira acompanhar e quem sabe até utilizar de inspiração para mapear o seu NTO.
       
      #Att 11/08/2022

       
       
       
       
      Konoha (Em Desenvolvimento)
       
       
       
       
    • Por DiigooMix
      Como o título já diz, será que alguém possui sprite do hitto e se possível as transformações dele?
    • Por OmegaZero
      Olá gostaria que alguém me ajudasse com uma "scripting" não sei se é pela mesma, seria o seguinte uma determinada arma teria a chance de dar double hit e não sei oque fazer alguem poderia ajudar?

      OBS:não sei se é o local correto se não for mova, desculpe
    • Por Madarasenju
      Olá galera do Tibia King, queria por uns npc's no meu server que não tem função de trade nem nada do tipo, queria que eles só andassem como enfeite, Rep+ Pra quem me ajudar... grato desde já.
    • Por SilenceRoot
      A magia é assim o você usa a a magia e ela ficará ativado por 10 segundos, até que o inimigo lance a primeira magia ou todos de uma vez, quando ele lançar a primeira magia, ele não lhe acertará ou seja esquivando dela, e logo em seguida será teletransportado aleatoriamente ao redor do inimigo que usou.
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo