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

how to make second promotion

Nefs

Nefs Staff
Joined
Jul 15, 2009
Messages
521
Reaction score
7
Location
Barcelona (Spain)
hello, how i can make and script on my shop for when any guy want to buy the second promotion, he will be promoted to epic knight, epic druid, epic etc....

or any rune for promote that

i use 0.3.5
 
hello, how i can make and script on my shop for when any guy want to buy the second promotion, he will be promoted to epic knight, epic druid, epic etc....

or any rune for promote that

i use 0.3.5

I Strong Recomending Its Easy Script Make It Self becouse How I see U Only Requisting Something... Try Make Self... Learn IT ! Nobody WIll make Allways For you.
 
Well, this is a scroll that you can click:

Lua:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	if getPlayerPromotionLevel(cid) == 1 then
		setPlayerPromotionLevel(cid, 2)
		doPlayerSendTextMessage(cid, 22, "You've been promoted to a "..getPlayerVocationName(cid).."!")
		doRemoveItem(item.uid, 1)
	else
		doPlayerSendTextMessage(cid, 22, "Sorry, you need your first promotion!")
	end
	return true
end
 
Well, this is a scroll that you can click:

Lua:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	if getPlayerPromotionLevel(cid) == 1 then
		setPlayerPromotionLevel(cid, 2)
		doPlayerSendTextMessage(cid, 22, "You've been promoted to a "..getPlayerVocationName(cid).."!")
		doRemoveItem(item.uid, 1)
	else
		doPlayerSendTextMessage(cid, 22, "Sorry, you need your first promotion!")
	end
	return true
end

and how to make for this rune only can be used by vip player?

@This script got bugs, when a player sue it say you are ptomote to a .!

and when u look the player say, You see "name. He is a . why?
 
Last edited:
Back
Top