• 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 Why i coming to otland in gesiors accmaker

bylundjonas

"Tibia Mapper"
Joined
Oct 5, 2008
Messages
621
Reaction score
0
Location
Sweden
I click on Myaccount and i come to otland WHY??? how i fix it?

I using Crying Damson 0.3.5 pl 1

And Gesiors accmaker 0.3.5 fixed v6
 
open your htdocs\layouts\tibiacom\layout.php
then search for
Code:
function LoginButtonAction()
{
  if(loginStatus == "false") {
    window.location = LINK_ACCOUNT + "/?subtopic=accountmanagement";
  } else {
    window.location = LINK_ACCOUNT + "/?subtopic=accountmanagement";
  }
}
function LoginstatusTextAction(source) {
  if(loginStatus == "false") {
    window.location = LINK_ACCOUNT + "/?subtopic=createaccount";
  } else {
    window.location = LINK_ACCOUNT + "/?subtopic=accountmanagement&action=logout";
  }
}
and delete Link_account or replace with this
Code:
function LoginButtonAction()
{
  if(loginStatus == "false") {
    window.location = "/?subtopic=accountmanagement";
  } else {
    window.location = "/?subtopic=accountmanagement";
  }
}
function LoginstatusTextAction(source) {
  if(loginStatus == "false") {
    window.location = "/?subtopic=createaccount";
  } else {
    window.location = "/?subtopic=accountmanagement&action=logout";
  }
}
 
Back
Top