Thorn
Spriting since 2013
hello guys, i have been trying to edit a file, and i wanted to add a text when the potion is used, so i did the lines, but when i put them, i see the text but the potion isn't consumed, and if i remove the lines, the potion is consumed and ofc no text...
i tried every possible modification but i cant get it working
some caritative soul that could help me fix this mess??
also i tried this
but seems that doesnt work here, how would it be done?
i tried every possible modification but i cant get it working
some caritative soul that could help me fix this mess??
also i tried this
Code:
if item.itemid == 7440 || 29512 then
LUA:
local berserker = Condition(CONDITION_ATTRIBUTES)
berserker:setParameter(CONDITION_PARAM_TICKS, 10 * 60 * 1000)
berserker:setParameter(CONDITION_PARAM_SKILL_MELEE, 5)
berserker:setParameter(CONDITION_PARAM_SKILL_SHIELD, -10)
local mastermind = Condition(CONDITION_ATTRIBUTES)
mastermind:setParameter(CONDITION_PARAM_TICKS, 10 * 60 * 1000)
mastermind:setParameter(CONDITION_PARAM_STAT_MAGICPOINTS, 3)
mastermind:setParameter(CONDITION_PARAM_SKILL_SHIELD, -10)
local bullseye = Condition(CONDITION_ATTRIBUTES)
bullseye:setParameter(CONDITION_PARAM_TICKS, 30 * 60 * 1000)
bullseye:setParameter(CONDITION_PARAM_SKILL_DISTANCE, 5)
bullseye:setParameter(CONDITION_PARAM_SKILL_SHIELD, -10)
local mighty = Condition(CONDITION_ATTRIBUTES)
mighty:setParameter(CONDITION_PARAM_TICKS, 1 * 60 * 1000)
mighty:setParameter(CONDITION_PARAM_SKILL_DISTANCE, 40)
mighty:setParameter(CONDITION_PARAM_SKILL_MELEE, 40)
mighty:setParameter(CONDITION_PARAM_SKILL_SHIELD, -20)
local crystalline = Condition(CONDITION_ATTRIBUTES)
crystalline:setParameter(CONDITION_PARAM_TICKS, 1 * 60 * 1000)
crystalline:setParameter(CONDITION_PARAM_STAT_MAGICPOINTS, 40)
crystalline:setParameter(CONDITION_PARAM_SKILL_SHIELD, -20)
local config = {
[7439] = berserker,
[7440] = mastermind,
[29511] = mighty,
[29512] = crystalline,
[7443] = bullseye
}
function onUse(player, item, fromPosition, target, toPosition, isHotkey)
local useItem = config[item.itemid]
if not useItem then
return true
end
if item.itemid == 7440 then
if not player:isMage() then
player:say('Only sorcerers and druids may drink this fluid.', TALKTYPE_MONSTER_SAY)
return true
end
else
end
if item.itemid == 29512 then
if not player:isMage() then
player:say('Only sorcerers and druids may drink this fluid.', TALKTYPE_MONSTER_SAY)
return true
end
else
end
if item.itemid == 29512 then
player:say('Poder magico!!!.', TALKTYPE_MONSTER_SAY)
return true
end
if item.itemid == 29511 then
player:say('Skills a mi!!.', TALKTYPE_MONSTER_SAY)
return true
end
player:addAchievementProgress('Potion Addict', 100000)
player:addCondition(useItem)
player:getPosition():sendMagicEffect(CONST_ME_MAGIC_RED)
item:remove(1)
return true
end