Ir para conteúdo
  • 0

Super Bless


\Mattheus ~*

Pergunta

1 resposta a esta questão

Posts Recomendados

  • 0

não testei

data\talkactions\scripts\Sbless.lua

function onSay(cid, words, param)
local fail = 0
if getPlayerLevel(cid) >= 1000 then
if getPlayerLevel(cid) < 31 then
cost = 3000
else
cost = ((getPlayerLevel(cid) - 30) * 150) + 2000
end
if cost > 30000 then
cost = 30000
end
for i = 3, 7 do
if getPlayerBlessing(cid, i) then
fail = fail + 1
else
if doPlayerRemoveMoney(cid, cost) == TRUE then
doPlayerAddBlessing(cid, i)
if i == 7 and not(fail == 7) then
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MAGIC_RED)
end
else
doPlayerSendCancel(cid, "You do not have enough money to buy all the blessings!")
break
end
end
end
if fail == 7 then
doPlayerSendCancel(cid, "You already have all the blessings!")
end
else
doPlayerSendCancel(cid, "Só Lvl 1000+ pode usa.")
end
return TRUE
end

data\talkactions\talkactions.xml

<talkaction words="!sbless" script="Sbless.lua" />

Editado por notle2012
Link para o comentário
Compartilhar em outros sites

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