• 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 Few Questions

Breakdown

Be good, or be good at it
Joined
Feb 5, 2009
Messages
334
Reaction score
9
Have not been around Ot's in a while.. so i have a few questions with all the new stuff..

First off, i'm using Modern AAC and i wanted to know how do i edit the world list? When creating a character it asks you to select a world, and the only thing on the dropdown list is "test". Also, same goes for city.

Next, how do i edit player starting level/items/location/etc.

Also..

Invalid Account Name
Encryption type in config lua = plain
Modern AAC = (Don't know where to change)
Right Protocol
Right Tibia Client
Yes, IP changer works..

However i keep getting "invalid account name" each time i try to log into the GAME but works fine on website.
 
change plain into sha1

Same issue.. just keeps saying invalid account name. Even though in phpmyadmin the account name is the same i am using..

However i did notice in phpmyadmin the password is COMPLETELY different from the one i used when i created the account.

Edit: Im also able to log into account manager perfectly fine using 1/1..
 
Last edited:
change plain in config.lua to sha1

it the problem still exist

open config-and-functions.php in your acc and search for
Code:
if(strtolower($config['server']['passwordType']) == 'sha1')
change for
Code:
if(strtolower($config['server']['encryptionType']) == 'sha1')
then run this code in sql
Code:
UPDATE accounts SET password=SHA1(password);
 
change plain in config.lua to sha1

it the problem still exist

open config-and-functions.php in your acc and search for
Code:
if(strtolower($config['server']['passwordType']) == 'sha1')
change for
Code:
if(strtolower($config['server']['encryptionType']) == 'sha1')
then run this code in sql
Code:
UPDATE accounts SET password=SHA1(password);

Sorry, but where is config-and-functions.php? As in location..

Im using modern AAC and the only config file i see is located in uniserv/www.. and i checked that but had nothing.
 
Back
Top