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

Configuration Nice stages for your server

Northnorial

Member
Joined
May 30, 2009
Messages
742
Reaction score
5
Location
Germany

Before you start to open your Open Tibia server you maybe thing:

How to find out nice stages for my server?


I'm going to explain it here:

I'm going to start with a RPG server with a real Tibia map.

The start experience of a RPG server with real map should not be higher than 50x and end with 5x. It's boring if the stages are to high on a real map, because the hardest you can hunt are Demons or stuff like that. That's why you should take low stages, you won't need edit the map and add new spawns.

Something like that:

Go to your config.lua and fill in this:
Code:
	experienceStages = "yes"
	rateExperience = 50.0
	rateExperienceFromPlayers = 0
	rateSkill = 10.0
	rateMagic = 5.0
	rateLoot = 2.0
	rateSpawn = 1
Now open data/xml/stages.xml
and fill in this:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<world id="0" multiplier="1">
		<stage minlevel="1" maxlevel="8" multiplier="50"/>
		<stage minlevel="9" maxlevel="40" multiplier="45"/>
		<stage minlevel="41" maxlevel="70" multiplier="40"/>
		<stage minlevel="71" maxlevel="100" multiplier="25"/>
		<stage minlevel="101" maxlevel="130" multiplier="15"/>
		<stage minlevel="131" maxlevel="160" multiplier="10"/>
		<stage minlevel="161" multiplier="5"/>
		</world>
</stages>
You can edit world id="0" if you got more than one server online. You can also change multiplier="5" to any other like multiplier="3".



Now I start with a High Exp Server and a teleporter map, often a mana rune does exist on those servers.
A teleporter map:
- often has many hard monster
- many different hunting places
- custom monster
- and also it's often easy to get money on those server

And those server are boring with a low rate, that's why you should take a high rate.

The stages in the config.lua should be:
Code:
	experienceStages = "yes"
	rateExperience = 500.0
	rateExperienceFromPlayers = 0
	rateSkill = 45.0
	rateMagic = 25.0
	rateLoot = 3.0
	rateSpawn = 2

And the stages in data/xml/stages.xml should be:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<world id="0" multiplier="1">
		<stage minlevel="1" maxlevel="50" multiplier="500"/>
		<stage minlevel="51" maxlevel="100" multiplier="450"/>
		<stage minlevel="101" maxlevel="150" multiplier="350"/>
		<stage minlevel="151" maxlevel="200" multiplier="250"/>
		<stage minlevel="201" maxlevel="250" multiplier="200"/>
		<stage minlevel="251" maxlevel="300" multiplier="150"/>
		<stage minlevel="301" maxlevel="400" multiplier="100"/>
		<stage minlevel="401" multiplier="50"/>
	</world>
</stages>



Feel free to rep+ me if I helped you.

Yours,
Northnorial


 
Last edited:
Give him a break.
After all, tutorials are to help people who are lost, and this would help some newcomer to OTS making.
 
Back
Top