Ir para conteúdo

Item Que Dá Exp


yaakov

Posts Recomendados

expitem.lua

local config = {
animationColor = TEXTCOLOR_LIGHTBLUE, --[[Cor da animação | Padrão = Azul Claro]]
textType = MESSAGE_INFO_DESCR, --[[Cor do Texto | Padrão = Verde]]
expGain = 100000, -- quanto vai ganhar de exp
removeOnUse = true --[[Remover no uso?]]
}

function onUse(cid, item, fromPosition, itemEx, toPosition)
doPlayerAddExp(cid, expGain)
doSendAnimatedText(getThingPosition(cid), expGain, config.animationColor)
doPlayerSendTextMessage(cid, config.textType, "You received ".. expGain .." experience")
if(config.removeOnUse == true) then
doRemoveItem(item.uid, 1)
end
return TRUE
end

 

actions.xml

 

<action itemid="ID DO ITEM" script="expitem.lua" />

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...