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

auto-promotion and script item vip (title)

Lua:
function onUse(cid, item, fromPosition, itemEx, toPosition)
local promoteablevocs = {4, 5, 6, 7} -- IDs of the vocs that can be promoted
if(isInArray(promoteablevocs, getPlayerVocation(cid)) == true then
doPlayerSetVocation(cid, getPromotedVocation(getPlayerVocation(cid)))
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You are now promoted.")
else
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You can not be promoted right now.")
end
end
 
Back
Top