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

How do i change player spawn logging?

zarw1337

Realera Hosting
Joined
Jun 22, 2008
Messages
66
Reaction score
0
Hi


How do I change the player spawn position when they logging in first time?


I have changed all samples in my databas for 32369, 32241, 7, town ID, 5

I have also changed it in my config.lua

What is wrong? Why aint it working?
 
TO set all playercoordinates on the server:

UPDATE players SET posx = 793, posy = 1014, posz = 7;

and for only SAMPLES

UPDATE `players` SET `town_id` = "5" WHERE `name` = "Sorcerer Sample";
UPDATE `players` SET `town_id` = "5" WHERE `name` = "Druid Sample";
UPDATE `players` SET `town_id` = "5" WHERE `name` = "Paladin Sample";
UPDATE `players` SET `town_id` = "5" WHERE `name` = "Knight Sample";
 
the easy way just open ur semples in the db and change town id to thais town id

if that helped you just simple rep will be enough;)
 
ok look open ur config.php and look for those lines "29,30" u will find them like this :
$config['site']['newchar_towns'][0] = array(0);
$config['site']['newchar_towns'][1] = array(0);

change to :

$config['site']['newchar_towns'][0] = array(5);
$config['site']['newchar_towns'][1] = array(5);

and then ur new char will spawn in thais.
 
Back
Top