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

Windows Forgotten Server Beginner Gear

Which file???

You log into your samples, and give them equipment.

1. Start your server
2. Log into the world of Tibia
3. Log on a game master
4. Create equipment with your game master
5. Give the equipment you created to your sample characters
6. Log off the sample character
...and your done
 
And plus, I wish to give mages some runes... and their special armors since they can't wear Crown...

How do I allow all vocs to wear Crown armor?
 
And plus, I wish to give mages some runes... and their special armors since they can't wear Crown...

How do I allow all vocs to wear Crown armor?

/data/movements/movements.xml

Remove from movements.xml:
Code:
	<movevent type="Equip" itemid="2487" slot="armor" event="function" value="onEquipItem">
		<vocation name="Knight"/>
		<vocation name="Elite Knight" showInDescription="0"/>
		<vocation name="Paladin"/>
		<vocation name="Royal Paladin" showInDescription="0"/>
	</movevent>
	<movevent type="DeEquip" itemid="2487" slot="armor" event="function" value="onDeEquipItem"/>
 
Back
Top