• 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!

refill soft boots and fire boots command.

cupcake

New Member
Joined
Jun 12, 2008
Messages
22
Reaction score
0
PHP:
local config = {
fireCost = 10000,
softCost = 10000
}

function onSay(cid, words, param, channel)

    if param == "!recharge" then
        doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Invalid param! (soft or fire).")
        return TRUE
    end
    
    if param == "soft" then
        if getPlayerItemCount(cid, 6530) >= 1 then
            if doPlayerRemoveMoney(cid, config.softCost) then
                doPlayerRemoveItem(cid, 10021, 1)
                doPlayerAddItem(cid, 6132, 1, FALSE)
                doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You recharged your soft boots for "..config.softCost.." coins.")
            else
                doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You need "..config.fireCost.." coins to recharge your soft boots.")
            end
        else
            doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You need a worn soft boots to recharge it.")
        end
    elseif param == "fire" then        
        if getPlayerItemCount(cid, 9934) >= 1 then
            if doPlayerRemoveMoney(cid, config.fireCost) then
                doPlayerRemoveItem(cid, 10022, 1)
                doPlayerAddItem(cid, 9933, 1, FALSE)
                doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You recharged your firewalker boots for "..config.fireCost.." coins.")
            else
                doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You need "..config.fireCost.." coins to recharge your firewalker boots.")
            end
        else
            doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You need a worn firewalker boots to recharge it.")
        end
    end    
            
    return TRUE
    
end


when i have worn softboots and worn firewalker boots it wont recharge them all i get is

10:12 You need a worn soft boots to recharge it.


rep ++ for anyone who helps
 
Back
Top