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

Wrong Temple pos!

kingi96

New Member
Joined
May 24, 2010
Messages
419
Reaction score
3
plz help me i dont want to change it on phpmyadmin how i can chnage the start place forvere to 5
 
Are you talking about this?
PHP:
	newPlayerSpawnPosX = 686
	newPlayerSpawnPosY = 347
	newPlayerSpawnPosZ = 7
	newPlayerTownId = 2
 
change townid and position of sorcerer sample, druid sample, knight sample, paladin sample to 4!
and change the X spawn to ; 32369, y spawn; 32241, z spawn; 7
 
In login.lua before return true
Code:
if(getPlayerTown(cid) > 1) then
	doPlayerSetTown(cid, 1)
end

In database:
Code:
UPDATE `players` SET `posx` = X, `posy` = Y, `posz` = Z;

In aac in line ~772 line:
Code:
$player->setTownId(5);

replace:
Code:
$player->setTownId(1);
 
Back
Top