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

Lua [SQLite] -=[TFS]=- 0.4 8.60 if you know put this script to use only level 717217 and with vip storage 13545 and only if you have premium

samuel157

/root
Joined
Mar 19, 2010
Messages
447
Solutions
3
Reaction score
49
Location
São Paulo, Brazil
GitHub
Samuel10M
Lua:
function onSay(cid, words, param)
    local playerLevel = getPlayerLevel(cid)
    local playerStorageVip = getCreatureStorage(cid, 13545)
    local playerPremium = isPremium(cid)
    
    if playerLevel == 717217 and playerStorageVip == 1 and playerPremium then
        if doPlayerRemoveMoney(cid, 0) == TRUE then
            local bp = doPlayerAddItem(cid, 5805, 1)
            doCreatureSay(cid, "Você Comprou um Item para Desbugar a CAP.", TALKTYPE_ORANGE_1)
        else
            doCreatureSay(cid, "Item Grátis", TALKTYPE_ORANGE_1)
            doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF)
        end
    else
        doCreatureSay(cid, "Desculpe, você não atende aos requisitos.", TALKTYPE_ORANGE_1)
    end
end

no function
 
Last edited:

Similar threads

Back
Top