• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Lua Rookgaard

Arctic

Heat
Joined
Jun 8, 2008
Messages
8
Reaction score
0
Hello,

Can anyone tell me, how do I deactivate rookgaard in a tfs?
Thanks in advance ;)
 
just remembering, in account manager you can change the position of the CREATED PLAYERS to the main temple instead of rookgaard, like this:
LUA:
        accountManager = true
	namelockManager = true
	newPlayerChooseVoc = true *<--
	newPlayerSpawnPosX = 1218 <<---
	newPlayerSpawnPosY = 1038 <<---
	newPlayerSpawnPosZ = 7 <<---
	newPlayerTownId = 1
	newPlayerLevel = 15
	newPlayerMagicLevel = 0
	generateAccountNumber = false
	generateAccountSalt = false
	minPasswordLength = 6
	minAccountNameLength = 3
	maxAccountNameLength = 25
	newCharacterMinNameLength = 3
	newCharacterMaxNameLength = 25
*<-- you can put it true, so players can choose vocations instead of None, and in <<--- you can change the new temple coordinates, but remember you will change the created characters positions, if you want to change where the player account manager, the one you connect with 1/1 or just enter, you need to find this in config.lua:
LUA:
	sqlType = "mysql" <<--
	sqlHost = "localhost"
the mysql, will tell you if you need to use the localhost/phpmyadmin to change the players configurations, if it is SqlLite you need to download the sqlite studio, in order to change where the player account manager will be, so select table players and edit account manager =P
 
Back
Top