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

[help] !promotion for tfs 0.2.2

Code:
local config = {
	promotion = 1,	-- promotion level, default = 1 . Ignore if you don't have new vocations.
	minLevel = 20,	-- Level needed to buy promotion
	cost = 20000 	-- Promotion cost in gp
}

function onSay(cid, words, param)
	if(getPlayerPromotionLevel(cid) >= config.promotion) then
		doPlayerSendCancel(cid, "You are already promoted.")
	elseif(getPlayerLevel(cid) < config.minLevel) then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "You need " .. config.minLevel .. " to get promotion.")
	elseif(doPlayerRemoveMoney(cid, config.cost) ~= TRUE) then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "You do not have enought money! (Promotion cost " .. config.cost .. " gp.")
	else
		setPlayerPromotionLevel(cid, config.promotion)
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "You have been succesful promoted to " .. getVocationInfo(getPlayerVocation(cid)).name .. ".")
	end
	return TRUE
end
 
Back
Top