Ir para conteúdo
  • Cadastre-se

Stamina refil e Item que entrega todas bless


Posts Recomendados

Olá,

 

Alguem me ajuda com script preciso de um code pro player usar e recuperar toda stamina dele e outro pro item dar todas as bless ao player.

E tem um detalhe, o item de stamina só pode usa 1x e o de bless infinito.

 

obrigado :D

Antica Global - Server Online

 

SITE: http://anticaglobal.com/

IP: anticaglobal.com
EXP: 999x [sTAGES]
ML: 300x
SKILL: 500x
LOOT: 10x
 
VERSÃO: 10.77
PORTA: 7171
 
Stages:
1 - 8 level, 999x
9 - 20 level, 950x
21 - 50 level, 800x
51 - 100 level, 750x
101 - 130 level, 650x
131 - 180 level, 550x
181 - 230 level, 450x
231 - 300 level, 350x
301+ level, 300x
 
Link para o post
Compartilhar em outros sites

DAFUCK BUSCA no Data/lib 

By : Overlord   

 Ovelord%2B2%2BFull%2BHD.jpg

 

 

Si quieres hacer tutoriales y ganar dinero , acorta tus URL por AdFly -  

http://adf.ly/?id=7342566

AdFly

 
Link para o post
Compartilhar em outros sites

DAFUCK BUSCA no Data/lib 

 

Não entendi..

Antica Global - Server Online

 

SITE: http://anticaglobal.com/

IP: anticaglobal.com
EXP: 999x [sTAGES]
ML: 300x
SKILL: 500x
LOOT: 10x
 
VERSÃO: 10.77
PORTA: 7171
 
Stages:
1 - 8 level, 999x
9 - 20 level, 950x
21 - 50 level, 800x
51 - 100 level, 750x
101 - 130 level, 650x
131 - 180 level, 550x
181 - 230 level, 450x
231 - 300 level, 350x
301+ level, 300x
 
Link para o post
Compartilhar em outros sites

Brother, fiz agora o da stamina, qualquer erro me avise.

 

 

 

data/actions/scripts crie absolutestamina.lua e adicione dentro:

function onUse(cid, item, fromPosition, itemEx, toPosition)
	local cfg = {}
	cfg.refuel = 42 * 60 * 1000
	if(getPlayerStamina(cid) >= cfg.refuel) then
		doPlayerSendCancel(cid, "Your stamina is already full.")
	else
		doPlayerSetStamina(cid, cfg.refuel)
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Your stamina has been refilled.")
                doPlayerRemoveItem(cid, 16999, 1)
	end
	return true
end

Em actions.xml:

<action itemid="16999" event="script" value="absolutestamina.lua"/>

Aqui em doPlayerRemoveItem(cid, 16999, 1) = 16999 é o ID do item da stamina que vai ser removido

YDmXTU2.png

 

Entenda tudo sobre VPS, DEDICADOS & HOSPEDAGENS. => Clique aqui

Global Full Download 10.9x - TFS 1.2/FERUMBRAS/KRAILOS. => Clique aqui

 

Muitos querem aquilo que você tem, 
mas vão desistir quando souberem o preço que você pagou.

 

skype-favicon.png lu.lukinha

message-16.png [email protected]

Link para o post
Compartilhar em outros sites

Brother, fiz agora o da stamina, qualquer erro me avise.

 

 

 

data/actions/scripts crie absolutestamina.lua e adicione dentro:

function onUse(cid, item, fromPosition, itemEx, toPosition)
	local cfg = {}
	cfg.refuel = 42 * 60 * 1000
	if(getPlayerStamina(cid) >= cfg.refuel) then
		doPlayerSendCancel(cid, "Your stamina is already full.")
	else
		doPlayerSetStamina(cid, cfg.refuel)
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Your stamina has been refilled.")
                doPlayerRemoveItem(cid, 16999, 1)
	end
	return true
end

Em actions.xml:

<action itemid="16999" event="script" value="absolutestamina.lua"/>

Aqui em doPlayerRemoveItem(cid, 16999, 1) = 16999 é o ID do item da stamina que vai ser removido

 

Não funcionou aqui não

Link para o post
Compartilhar em outros sites

Brother, fiz agora o da stamina, qualquer erro me avise.

 

 

 

data/actions/scripts crie absolutestamina.lua e adicione dentro:

function onUse(cid, item, fromPosition, itemEx, toPosition)
	local cfg = {}
	cfg.refuel = 42 * 60 * 1000
	if(getPlayerStamina(cid) >= cfg.refuel) then
		doPlayerSendCancel(cid, "Your stamina is already full.")
	else
		doPlayerSetStamina(cid, cfg.refuel)
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Your stamina has been refilled.")
                doPlayerRemoveItem(cid, 16999, 1)
	end
	return true
end

Em actions.xml:

<action itemid="16999" event="script" value="absolutestamina.lua"/>

Aqui em doPlayerRemoveItem(cid, 16999, 1) = 16999 é o ID do item da stamina que vai ser removido

da esse erro ai

[C]: in function 'getPlayerStamina'
        data/actions/scripts/absolutestamina.lua:4: in function <data/actions/scripts/absolutestamina.lua:1>
Editado por mauriciooz (veja o histórico de edições)
Link para o post
Compartilhar em outros sites

Tente:

function onUse(cid, item, fromPosition, itemEx, toPosition)
	local cfg = {}
	cfg.refuel = 42 * 60 * 1000
	if(getPlayerStamina(cid) >= cfg.refuel) then
		doPlayerSendCancel(cid, "Your stamina is already full.")
	else
		doPlayerSetStamina(cid, cfg.refuel)
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Your stamina has been refilled.")
	end
	return true
end

YDmXTU2.png

 

Entenda tudo sobre VPS, DEDICADOS & HOSPEDAGENS. => Clique aqui

Global Full Download 10.9x - TFS 1.2/FERUMBRAS/KRAILOS. => Clique aqui

 

Muitos querem aquilo que você tem, 
mas vão desistir quando souberem o preço que você pagou.

 

skype-favicon.png lu.lukinha

message-16.png [email protected]

Link para o post
Compartilhar em outros sites

 

Tente:

function onUse(cid, item, fromPosition, itemEx, toPosition)
	local cfg = {}
	cfg.refuel = 42 * 60 * 1000
	if(getPlayerStamina(cid) >= cfg.refuel) then
		doPlayerSendCancel(cid, "Your stamina is already full.")
	else
		doPlayerSetStamina(cid, cfg.refuel)
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Your stamina has been refilled.")
	end
	return true
end

Não deu certo não o tfs aqi e 1.0

ALGUÉM?

Link para o post
Compartilhar em outros sites

Eu usava esse script em TFS 1.0 e funcionava,acontece algum erro ?

[C]: in function 'getPlayerStamina'
        data/actions/scripts/absolutestamina.lua:4: in function <data/actions/scripts/absolutestamina.lua:1>
Link para o post
Compartilhar em outros sites
  • 1 year later...
Em 24/07/2014 10:22:10, mauriciooz disse:
[C]: in function 'getPlayerStamina'
        data/actions/scripts/absolutestamina.lua:4: in function <data/actions/scripts/absolutestamina.lua:1>

Tenho um script de stamina refil(infinito) e Outro que so e 1x Cé Quiser Só Falar!

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