• 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 coins that epic vocation

carlosrox

New Member
Joined
Oct 8, 2008
Messages
3
Reaction score
0
Hi, I have a question and I know how to make this item (vip coins) thats new promotion
Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)

    if getPlayerStorageValue(cid,11551) < 1 then
if getPlayerLevel(cid) > 1 then
getPlayerStorageValue(cid, 11551)
doSendAnimatedText(getPlayerPosition(cid), "Welcome!", TEXTCOLOR_RED) 
doCreatureSay(cid, "Felicidades Usted Es Vip Ahora tiene acceso a lugares vip, gracias por donar! ", TALKTYPE_ORANGE_1)
setPlayerStorageValue(cid, 11551, (getPlayerStorageValue(cid,11551) + 90))
doRemoveItem(item.uid, 1)
else
doPlayerSendCancel(cid,"You need to be at least level 2 to use this.")
doRemoveItem(item.uid, 1)
end
    else
doPlayerSendCancel(cid,"You are already a donator.")
    end    
return TRUE
end

the code (vip coins) plix help
 
Back
Top