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

Vocation 4294967295 Not Found? o.0

Alyhide

Banned User
Joined
Aug 21, 2010
Messages
1,945
Reaction score
55
Location
Switzerland
Hello, I used a script to get the second promotion, but everytime I use the item that I set it to, it says..

Code:
[08/08/2011 16:15:57] [Warning - Vocations::getVocation] Vocation 4294967295 not found.

LUA:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	local a = getPlayerPromotionLevel(cid)
	if a == 0 then
		doPlayerSendCancel(cid, 'You need to be promoted in order to use this item.')
	elseif a == 2 then
		doPlayerSendCancel(cid, 'Your\'re already promoted!')
	else
		doPlayerSetPromotionLevel(cid, 2)
		doCreatureSay(cid, 'You are now ' .. getVocationInfo(getPlayerVocation(cid)).description .. '!', TALKTYPE_ORANGE_1)
		doRemoveItem(item.uid)
	end
	return true
end
 
Back
Top