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

Donate and get promotion

Rizzla

Donator / Photoshop
Joined
Sep 7, 2008
Messages
1,335
Reaction score
2
Location
Sweden -> Stockholm
Hello, I want a script that make it possible to buy promotion from the shop. Like donation promotion.

Can anyone help me?
 
Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	local v = getPlayerVocation(cid)
	if v > 0 and v < 5 then
		doPlayerSetVocation(cid, v + 4)
		doCreatureSay(cid, "You are now " .. getVocationInfo(v + 4).description .. "!", TALKTYPE_ORANGE_1)
		doRemoveItem(item.uid, 1)
	else
		doPlayerSendCancel(cid, "You're already promoted!")
	end
	return true
end
 
Back
Top