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

Vip Iten

xLosT

Member
Joined
Jan 11, 2010
Messages
1,021
Reaction score
13
Location
Brasil, Rio Grande do Sul
need add 30 days and just vip

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

if item.itemid == 5785 then
if getPlayerLevel(cid) > 0 then
getPlayerStorageValue(cid, 11551)
doSendAnimatedText(getPlayerPosition(cid), "Welcome!", TEXTCOLOR_RED) 
doCreatureSay(cid, "CONGRATULATIONS! You are now a VIP! You can now enter the VIP-area and use unique features!. ", TALKTYPE_ORANGE_1)
setPlayerStorageValue(cid, 11551, 1)
doRemoveItem(item.uid, 1)
else
doPlayerSendCancel(cid,'You are not a donator.')
doRemoveItem(item.uid, 1)
end
else
end
return 1
end
 
PHP:
function onUse(cid, item, frompos, item2, topos)

if item.itemid == 5785 then
 if getPlayerLevel(cid) > 0 then
  getPlayerStorageValue(cid, 11551)
    doSendAnimatedText(getPlayerPosition(cid), "Welcome!", TEXTCOLOR_RED) 
      doCreatureSay(cid, "CONGRATULATIONS! You are now a VIP! You can now enter the VIP-area and use unique features!. ", TALKTYPE_ORANGE_1)
         doAddVipDays(cid, 30)
               setPlayerStorageValue(cid, 11551, 1)
                        doRemoveItem(item.uid, 1)
                              else
                                      doPlayerSendCancel(cid,'You are not a donator.')
                                            doRemoveItem(item.uid, 1)
                                         end
                                   else
                            end
        return TRUE
end
 
Back
Top