Druid Protection (Soul)
O que o script faz: Um druid, qualquer level, está morrendo, mas sua mana acabou e suas potions se esgotaram. Ele pode usar a proteção dos antigos druidas para encher sua vida, lhe custando 100 de alma (soul.) Se outra vocação pedir a proteção dos druidas, a mesma será punida.
Créditos: Daaniel (Luan me ajudou com 2 funções)
Obs: É meu primeiro script, como estou aprendendo, gostaria da sugestão de alguém que sabe.
Após o druid usar o comando !druidprotection:
Caso o player não for druid, acontecerá:
SCRIPT
Em data/talkactions/scripts, copie um arquivo, renomeie para druidprotection e adicione o script (PasteBin):
function onSay(cid, words, param, channel)
if isDruid(cid) then
if getPlayerSoul(cid) >= 100 then
local maxh = getCreatureMaxHealth(cid)
doCreatureAddHealth(cid, maxh)
doSendMagicEffect(getCreaturePosition(cid), CONST_ME_MAGIC_RED)
doPlayerAddSoul(cid, -100)
doPlayerSendTextMessage(cid, 22, 'You used your soul successfully!')
else
doPlayerSendCancel(cid, "You dont have 100 soul.")
end
else
doSendMagicEffect(getCreaturePosition(cid), CONST_ME_MAGIC_POFF)
doPlayerSendTextMessage(cid, 21, 'You are not druid, as punishment, the ancient gods will punish you removing you life.')
doPlayerSendTextMessage(cid, 21, 'Dont try this again!')
doCreatureAddHealth(cid, -5)
end
return true
end
Em data/talkactions/talkactions.xml adicione a tag:
<talkaction words="!druidprotection" event="script" value="druidprotection.lua"/>
Em forma de spell por: Emersonssss function onCastSpell(cid, var)
if isDruid(cid) then
if getPlayerSoul(cid) >= 100 then
local maxh = getCreatureMaxHealth(cid)
doCreatureAddHealth(cid, maxh)
doSendMagicEffect(getCreaturePosition(cid), CONST_ME_MAGIC_RED)
doPlayerAddSoul(cid, -100)
doPlayerSendTextMessage(cid, 22, 'You used your soul successfully!')
else
doPlayerSendCancel(cid, "You dont have 100 soul.")
end
else
doSendMagicEffect(getCreaturePosition(cid), CONST_ME_MAGIC_POFF)
doPlayerSendTextMessage(cid, 21, 'You are not druid, as punishment, the ancient gods will punish you removing you life.')
doPlayerSendTextMessage(cid, 21, 'Dont try this again!')
doCreatureAddHealth(cid, -5)
end
return true
end