Ir para conteúdo
  • 0

Queria Um Sistema De Ver A Vida E A Mana


SamueLGuedes

Pergunta

6 respostass a esta questão

Posts Recomendados

  • 0

bem, vou postar o script q eu uso, e ate hj sempre funcionou.

 

vai em talkactions e cola:

    <talkaction words="!mana;!life" script="manalife.lua"/>

 

em scripts copia qualquer um e renomeia para manalife e cola:

 

function onSay(cid, words, param)
if(words == "!mana") then
doPlayerSendTextMessage(cid,22,"You have " .. getCreatureMana(cid) .. " mana now\nYou have " .. getCreatureMaxMana(cid) .. " mana to the total")
return TRUE
elseif(words == "!life") then
doPlayerSendTextMessage(cid,22,"You have " .. getCreatureHealth(cid) .. " of life now\nYou have " .. getCreatureMaxHealth(cid) .. " of the total life")
return TRUE
end
end

 

testa ae!

 

--

 

Ajudei: +Rep mdr.gif

Link para o comentário
Compartilhar em outros sites

  • 0

vá em data>talkaction>scripts crie 1 arquivo vida.lua e cole isso

 

function onSay(cid, words, param)
local health = getCreatureHealth(cid)
doPlayerSendTextMessage(cid,MESSAGE_STATUS_CONSOLE_ORANGE, "Voce tem "..health.." health points.")
end

 

vá em talkactions.xml e cole isso

<talkaction words="!vida" script="vida.lua"/>

 

agora mana

va em data>talkactions>scripts crie 1 arquivo mana.lua e cole isso.

 

function onSay(cid, words, param)
local mana = getCreatureMana(cid)
doPlayerSendTextMessage(cid,MESSAGE_STATUS_CONSOLE_BLUE, "Voce tem "..mana.." mana points.")
end

 

agora e talkactions.xml cole isso

 

<talkaction words="!mana" script="mana.lua"/>

 

AJUDEI? REP+

Link para o comentário
Compartilhar em outros sites

Visitante
Este tópico está impedido de receber novos posts.
×
×
  • Criar Novo...