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

AAC [MyACC] Problem

nowitsky

Member
Joined
Jun 26, 2016
Messages
88
Solutions
2
Reaction score
13
aftert select server direction i have something like that.
i use it before on older TFS version, now i have last one TFS 1.3 and i see something like that.

MyACC:
myacc problem.png

Gesior:
 
Last edited:
Solution
This is happening because MyAac parsing of the config file isn't very advanced.
Its hitting the experienceStages and breaking.

as a temporary fix, try putting it all on the same line.
change
Lua:
experienceStages = {
    { minlevel = 1, maxlevel = 8, multiplier = 7 },
    { minlevel = 9, maxlevel = 20, multiplier = 6 },
    { minlevel = 21, maxlevel = 50, multiplier = 5 },
    { minlevel = 51, maxlevel = 100, multiplier = 4 },
    { minlevel = 101, multiplier = 3 }
}

to
Lua:
experienceStages = { { minlevel = 1, maxlevel = 8, multiplier = 7 }, { minlevel = 9, maxlevel = 20, multiplier = 6 }, { minlevel = 21, maxlevel = 50, multiplier = 5 }, { minlevel = 51, maxlevel = 100, multiplier = 4 },    { minlevel = 101, multiplier = 3 }}
It...
This is happening because MyAac parsing of the config file isn't very advanced.
Its hitting the experienceStages and breaking.

as a temporary fix, try putting it all on the same line.
change
Lua:
experienceStages = {
    { minlevel = 1, maxlevel = 8, multiplier = 7 },
    { minlevel = 9, maxlevel = 20, multiplier = 6 },
    { minlevel = 21, maxlevel = 50, multiplier = 5 },
    { minlevel = 51, maxlevel = 100, multiplier = 4 },
    { minlevel = 101, multiplier = 3 }
}

to
Lua:
experienceStages = { { minlevel = 1, maxlevel = 8, multiplier = 7 }, { minlevel = 9, maxlevel = 20, multiplier = 6 }, { minlevel = 21, maxlevel = 50, multiplier = 5 }, { minlevel = 51, maxlevel = 100, multiplier = 4 },    { minlevel = 101, multiplier = 3 }}
It allows the error to be bypassed. I haven't tested on a server but I don't see why it wouldn't work as the array is still valid.
 
Solution
This is happening because MyAac parsing of the config file isn't very advanced.
Its hitting the experienceStages and breaking.

as a temporary fix, try putting it all on the same line.
change
Lua:
experienceStages = {
    { minlevel = 1, maxlevel = 8, multiplier = 7 },
    { minlevel = 9, maxlevel = 20, multiplier = 6 },
    { minlevel = 21, maxlevel = 50, multiplier = 5 },
    { minlevel = 51, maxlevel = 100, multiplier = 4 },
    { minlevel = 101, multiplier = 3 }
}

to
Lua:
experienceStages = { { minlevel = 1, maxlevel = 8, multiplier = 7 }, { minlevel = 9, maxlevel = 20, multiplier = 6 }, { minlevel = 21, maxlevel = 50, multiplier = 5 }, { minlevel = 51, maxlevel = 100, multiplier = 4 },    { minlevel = 101, multiplier = 3 }}
It allows the error to be bypassed. I haven't tested on a server but I don't see why it wouldn't work as the array is still valid.

what the fck XD it's working.
Bless you :D
 
Both me and Slawkens have been looking into a new parser but I haven't had much time to work on it, so looked at a temporary fix.
Glad to see its working for you.
 
Last edited:
It seems you are using tibiarl template, not tibiacom (which is included with myaac)

If so, you need then to remove the same, but in file: templates/tibiarl/initialize.js
 
It seems you are using tibiarl template, not tibiacom (which is included with myaac)

If so, you need then to remove the same, but in file: templates/tibiarl/initialize.js

LoadMenu(); removed, server rebooted and nothing changed.
maybe i did something wrong. if it's problem for you, don't waste your time :)

problem 1.png

problem 2.png
 
Back
Top