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

[Request] Infinite Scroll + NPC Vendor

president vankk

Web Developer & AuraOT Owner
Joined
Jul 10, 2009
Messages
5,719
Solutions
9
Reaction score
339
I wanted a npc that like, you buy the scroll and it takes you to the city vip
and this would be infinite scroll
would do that?
rep + +
I have 3 accounts
 
make vip a storage value..makes life much easier :D

use item storage value set to 1..item disappear.

if u dont know how i will send u script
 
oops this is a "VIP lever"

its what i use..

LUA:
local storage = 11551

function onUse(cid, item, frompos, item2, topos)

    if item.itemid == 1945 or item.itemid == 1946 and item.actionid == 23233 then

        if getPlayerStorageValue(cid, storage) == TRUE then

            doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You are already a VIP Member.")

        else

            setPlayerStorageValue(cid, storage, 1)

            doPlayerSendTextMessage(cid, 21, "You are a now VIP Member.")

        end

    elseif item.itemid == 1946 then

        doSendMagicEffect(getCreaturePosition(cid), CONST_ME_POFF)

    end

    return TRUE

end
 
Back
Top