diff --git a/path_10_9/data/actions/scripts/liquids/strengthening_potions.lua b/path_10_9/data/actions/scripts/liquids/strengthening_potions.lua index 67b18974f..90bae797e 100644 --- a/path_10_9/data/actions/scripts/liquids/strengthening_potions.lua +++ b/path_10_9/data/actions/scripts/liquids/strengthening_potions.lua @@ -32,7 +32,7 @@ function onUse(player, item, fromPosition, target, toPosition, isHotkey) end end - player:addAchievementProgress('Potion Addict', 100000) + -- player:addAchievementProgress('Potion Addict', 100000) player:addCondition(useItem) player:getPosition():sendMagicEffect(CONST_ME_MAGIC_RED) item:remove(1) diff --git a/path_10_9/data/actions/scripts/other/firebug.lua b/path_10_9/data/actions/scripts/other/firebug.lua index a6c1b05ad..9a63c3dd3 100644 --- a/path_10_9/data/actions/scripts/other/firebug.lua +++ b/path_10_9/data/actions/scripts/other/firebug.lua @@ -1,12 +1,4 @@ function onUse(player, item, fromPosition, target, toPosition, isHotkey) - --Dreamer Challenge Quest - if target.uid == 2243 then - target:transform(1387) - toPosition:sendMagicEffect(CONST_ME_FIREAREA) - item:remove() - return true - end - local random = math.random(10) if random >= 4 then --success 6% chance if target.itemid == 7538 then --Destroy spider webs/North - South diff --git a/path_10_9/data/actions/scripts/other/musicbox.lua b/path_10_9/data/actions/scripts/other/musicbox.lua index b6f0832d0..7d1f1f1a2 100644 --- a/path_10_9/data/actions/scripts/other/musicbox.lua +++ b/path_10_9/data/actions/scripts/other/musicbox.lua @@ -11,9 +11,7 @@ local config = { } function onUse(player, item, fromPosition, target, toPosition, isHotkey) - if not target:isCreature() - or not target:isMonster() - or target:getMaster() then + if not target:isCreature() or not target:isMonster() or target:getMaster() then return false end