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

Lua Vocations being Reset

ziggy46802

Active Member
Joined
Aug 19, 2012
Messages
418
Reaction score
27
Okay, it is happenening to all of my vocations but here is the line in vocations.xml for my druid

Code:
	<vocation id="2" name="Druid" description="a druid" 
	gaincap="12" gainhp="8" gainmana="28"
	gainhpticks="3" gainhpamount="1" gainmanaticks="2" gainmanaamount="1" 
	manamultiplier="1.1" attackspeed="800"
	soulmax="115" gainsoulticks="18" lessloss="30">
		<formula meleeDamage="1.0" distDamage="1.0" wandDamage=".6" magDamage="1.1" magHealingDamage="1.3"
		defense="1.0" armor="1.0"/>
		<skill id="0" multiplier="1.4"/>
		<skill id="1" multiplier="1.8"/>
		<skill id="2" multiplier="1.8"/>
		<skill id="3" multiplier="1.8"/>
		<skill id="4" multiplier="1.8"/>
		<skill id="5" multiplier="1.5"/>
		<skill id="6" multiplier="1.1"/>
	</vocation>

I am using TFS Crying Damson 0.3.6 V5, what do I have to put in there to make it so when I log in he's a druid, but if I log out then log back in, he has no vocation???

I took out the line

Code:
fromvoc="0"
Since the players can choose their vocation from the ACC on the website, did I do something wrong though, why are my vocations being reset when I relog in?
 
You need to configure correctly the fromvoc, you don't need to remove it.
Example: Druid ID: 2, so fromvoc = 2
and this for the first 4 vocations, but for the promotions example
Elder Druid ID: 5, so fromvoc = 2

Good Luck
 
Back
Top