• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

Action [REQUEST]Promotion By Item

MindFreak

Titanium Staff
Joined
Jan 18, 2009
Messages
59
Reaction score
0
Right Click on item -> Promoted.

Would me great if you scripted it, Thanks in advance.
 
here:

PHP:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	if(getPlayerPromotionLevel(cid) >= 1) then
		doPlayerSendCancel(cid, "You are already promoted.")
		else
setPlayerPromotionLevel(cid, 1)
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "You have been succesful promoted to " .. getVocationInfo(getPlayerVocation(cid)).name .. ".")
	end
	return TRUE
end


if you want to remove an 'item'
use:
PHP:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	if(getPlayerPromotionLevel(cid) >= 1) then
		doPlayerSendCancel(cid, "You are already promoted.")
		else
		setPlayerPromotionLevel(cid, 1)
                doRemoveItem(item, 1)
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "You have been succesful promoted to " .. getVocationInfo(getPlayerVocation(cid)).name .. ".")
	end
	return TRUE
end
 
Last edited:
Back
Top Bottom