Ir para conteúdo

Configuração Da Bless


luposlps

Posts Recomendados

No meu ot 8.6 Queru configurar a bless pq quando um player compra a bless no comandop !buybless e ele morre ele perde 3 lvl e quando morre de aol perde 6 leveis com bless era pra ele nao perder nem um level Alguem pode me ajudar a configurar isso ?

Obrigado

 

Esta aki o Script

 

-- [( Script edited by: DoidinMapper )] --

function onSay(cid, words, param)

if getPlayerBlessing(cid, 1) or getPlayerBlessing(cid, 2) or getPlayerBlessing(cid, 3) or getPlayerBlessing(cid, 4) or getPlayerBlessing(cid, 5) then

doPlayerSendCancel(cid,'You have already got one or more blessings!')

else

if doPlayerRemoveMoney(cid, 50000) == TRUE then

doPlayerAddBlessing(cid, 1)

doPlayerAddBlessing(cid, 2)

doPlayerAddBlessing(cid, 3)

doPlayerAddBlessing(cid, 4)

doPlayerAddBlessing(cid, 5)

doSendMagicEffect(getPlayerPosition(cid), 28)

doPlayerSendTextMessage(cid,MESSAGE_EVENT_ADVANCE, 'You have been blessed by the gods!')

else

doPlayerSendCancel(cid, "You need 50.000 gold coins to get blessed!")

end

end

return TRUE

end

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

acho que a configuração do bless é no config.lua

 


-- Blessings
-- NOTE: blessingReduction* regards items/containers loss.
-- eachBlessReduction is how much each bless reduces the experience/magic/skills loss.
blessingOnlyPremium = true
blessingReductionBase = 30
blessingReductionDecreament = 5
eachBlessReduction = 8

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...