• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved How can i remove potion 'on use' in this script

1268995

Member
Joined
Sep 9, 2010
Messages
422
Reaction score
13
Hello guys, i have this potion script:

Code:
local config = {
        removeOnUse = "yes",
        usableOnTarget = "yes", -- can be used on target? (fe. healing friend)
        splashable = "no",

        realAnimation = "no", -- make text effect visible only for players in range 1x1
        healthMultiplier = 1.0,
        manaMultiplier = 1.0
}

config.removeOnUse = getBooleanFromString(config.removeOnUse)
config.usableOnTarget = getBooleanFromString(config.usableOnTarget)
config.splashable = getBooleanFromString(config.splashable)
config.realAnimation = getBooleanFromString(config.realAnimation)
local POTIONS =
{
        [127] = {empty = 0, splash = 2, health = {1800, 2200}, level = 1, vocations = {1, 2, 5, 6}, vocStr = "sorcerers and druids"}, -- mage pot
        [128] = {empty = 0, splash = 2, health = {2600, 3100}, level = 1, vocations = {4, 8}, vocStr = "knights"}, -- kina pot
        [129] = {empty = 0, splash = 3, health = {2100, 2400}, mana = {500, 760}, vocStr = "paladins"} -- pala pot
}

local exhaust = createConditionObject(CONDITION_EXHAUST)
setConditionParam(exhaust, CONDITION_PARAM_TICKS, (getConfigInfo('timeBetweenExActions') - 100))
function onUse(cid, item, fromPosition, itemEx, toPosition)
        local potion = POTIONS[item.itemid]
        if(not potion) then
                return false
        end
        if(not isPlayer(itemEx.uid) or (not config.usableOnTarget and cid ~= itemEx.uid)) then
                if(not config.splashable) then
                        return false
                end
                if(toPosition.x == CONTAINER_POSITION) then
                        toPosition = getThingPos(item.uid)
                end
                doDecayItem(doCreateItem(2016, potion.splash, toPosition))
                doTransformItem(item.uid, potion.empty)
                return TRUE
        end
        if(hasCondition(cid, CONDITION_EXHAUST)) then
                doPlayerSendDefaultCancel(cid, RETURNVALUE_YOUAREEXHAUSTED)
                return TRUE
        end
        if(((potion.level and getPlayerLevel(cid) < potion.level) or (potion.vocations and not isInArray(potion.vocations, getPlayerVocation(cid)))) and
                not getPlayerCustomFlagValue(cid, PLAYERCUSTOMFLAG_GAMEMASTERPRIVILEGES))
        then
                doCreatureSay(itemEx.uid, "Só " .. potion.vocStr .. (potion.level and (" de level " .. potion.level) or "") .. " ou mais podem beber essa poção!", TALKTYPE_ORANGE_1)
                return TRUE
        end
        local health = potion.health
        if(health and not doCreatureAddHealth(itemEx.uid, math.ceil(math.random(health[1], health[2]) * config.healthMultiplier))) then
                return false
        end
        local mana = potion.mana
        if(mana and not doPlayerAddMana(itemEx.uid, math.ceil(math.random(mana[1], mana[2]) * config.manaMultiplier))) then
                return false
        end
        doSendMagicEffect(getThingPos(itemEx.uid), CONST_ME_MAGIC_BLUE)
        if(not realAnimation) then
                doCreatureSay(itemEx.uid, "SkySoft..", TALKTYPE_ORANGE_1)
        else
                for i, tid in ipairs(getSpectators(getCreaturePosition(cid), 1, 1)) do
                        if(isPlayer(tid)) then
                                doCreatureSay(itemEx.uid, "SkySoft..", TALKTYPE_ORANGE_1, false, tid)
                        end
                end
        end
        doAddCondition(cid, exhaust)
        if(not potion.empty or config.removeOnUse) then
        doRemoveItem(item.uid, 1)
        return TRUE
        end
        doRemoveItem(item.uid, 0)
        doPlayerAddItem(cid, potion.empty, 0)
        doPlayerRemoveItem(cid, potion.empty, getPlayerItemCount(cid, potion.empty))
        doPlayerAddItem(cid, potion.empty, getPlayerItemCount(cid, potion.empty))
        return TRUE
end

This script only works if i right click on potion then click on me.

The thing is: i am using a item that does not have the possibility of right click.

I need that this script make i use the potion when i only give a single right click on the mousem without right click + click on me. Do u guys get what i am trying to say? sorry for very very very crap noob english.
 
It's flag that your character has gamemaster privileges.
See this page, maybe you will understand what flags are.
http://ranisalt.github.io/flags-calculator/

You can edit your flags in data/XML/groups.xml
Code:
<group id="4" name="Gamemaster" flags="3808558964575" customFlags="257215" access="3" violationReasons="19" nameViolationFlags="10" statementViolationFlags="69" depotLimit="3000" maxVips="300" outfit="75"/>

As i said, all workeeeed goood, thank yaaa, SOLVED!!!!!!!!!!!!!!! <3333333333333333333333333333333333
 
Im glad to help others even if im not really good scripter.
It's not end of my possibilities haha xD

See this modification:
Code:
-- script made by Sh4dowDan
local config = {
    manaMin = 500, -- minimum mana add
    manaMax = 760, -- maximum mana add
    removeOnUse = false -- true / false
    }

local exhaust = createConditionObject(CONDITION_EXHAUST)
setConditionParam(exhaust, CONDITION_PARAM_TICKS, (getConfigInfo('timeBetweenExActions') - 100))

function onUse(cid, item, fromPosition, itemEx, toPosition)

local k = math.ceil(math.random(config.manaMin, config.manaMax))
local p = getCreaturePosition(cid)

    if getPlayerCustomFlagValue(cid, PLAYERCUSTOMFLAG_GAMEMASTERPRIVILEGES) == false then
        if(not isKnight(cid) or getPlayerLevel(cid) < 80) then
            doCreatureSay(cid, "Only knights of level 80 or above may drink this fluid.", TALKTYPE_ORANGE_1)
            return true
        end
    end

    if(hasCondition(cid, CONDITION_EXHAUST)) then
        doPlayerSendDefaultCancel(cid, RETURNVALUE_YOUAREEXHAUSTED)
        return true
    end
   
    if not doPlayerAddMana(cid, k) then
        return false
    end
   
    if getPlayerCustomFlagValue(cid, PLAYERCUSTOMFLAG_GAMEMASTERPRIVILEGES) == true then
        doSendAnimatedText(p,""..k.."", 25)
    end
   
    if config.removeOnUse then
        doRemoveItem(item.uid, 1)
    end
        doSendMagicEffect(p, CONST_ME_MAGIC_BLUE)
        doCreatureSay(cid,"SkySoft..", TALKTYPE_ORANGE_1)
        doAddCondition(cid, exhaust)
    return true
end
 
Last edited:
Back
Top