• 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 Login problem (group_id in player)

blisher

New Member
Joined
Jan 16, 2016
Messages
13
Reaction score
0
Hello guys,
I'm trying to run my own OT server, but when I want to join game it prompts: "Your character could not be loaded". Also, in terminal I can read: "Error - IOLoginData::preloadPlayer - Account Manager has group ID 3 which doesn't exist"

Any tips, please? I've tried with group_id 1, 2, 3, 4, 5 etc...
 
Check in data/xml/groups.xml to see which groups are available.

Always include your TFS version when asking for help on the Support Board, thanks.
 
My groups is like <groups></groups> (no group at all). When i try to type some groups into, file is being reset to this state at every server start. What should I do?
 
My groups is like <groups></groups> (no group at all). When i try to type some groups into, file is being reset to this state at every server start. What should I do?

Do you know if you are using TFS 0.3.7, TFS 0.4 or TFS 1.X?
If you are unsure how to check this then just look at your server log when you're starting the server, it usually shows you on the first lines as it's loading.
 
Try using these group flags:
Source
Code:
<?xml version="1.0" encoding="UTF-8"?>
<groups>
    <group id="1" name="player" flags="0" access="0" maxdepotitems="0" maxvipentries="0" />
    <group id="2" name="gamemaster" flags="137438953471" access="1" maxdepotitems="0" maxvipentries="200" />
    <group id="3" name="god" flags="272730398714" access="1" maxdepotitems="0" maxvipentries="200" />
</groups>
 
I've tried, but when I start server file is overwritten by empty <groups></groups>
Hmm, sorry I wasn't able to help ya mate. :(
At least the information is out there and hopefully another more experienced member of the forum will be able to help you.

Only thing I could suggest is to try a fresh install of TFS 1.0 to see if the problem still persists.
 
Try it out!
Code:
<?xml version="1.0" encoding="UTF-8"?>
<groups>
<group id="1" name="player" flags="0" access="1" maxdepotitems="0" maxvipentries="0" />
<group id="2" name="gamemaster" flags="137438953471" access="1" maxdepotitems="0" maxvipentries="200" />
<group id="3" name="god" flags="272730398714" access="1" maxdepotitems="0" maxvipentries="200" />
</groups>
 
Try it out!
Code:
<?xml version="1.0" encoding="UTF-8"?>
<groups>
<group id="1" name="player" flags="0" access="1" maxdepotitems="0" maxvipentries="0" />
<group id="2" name="gamemaster" flags="137438953471" access="1" maxdepotitems="0" maxvipentries="200" />
<group id="3" name="god" flags="272730398714" access="1" maxdepotitems="0" maxvipentries="200" />
</groups>
Read upper posts mate, I've tried
 
It will works prefect :D
Code:
<?xml version="1.0" encoding="UTF-8"?>
<groups>
<group id="1" name="Player"/>
<group id="2" name="Tutor" flags="16809984" customFlags="2" access="1" violationReasons="4" nameViolationFlags="2"/>
<group id="3" name="Senior Tutor" flags="68736286720" customFlags="14" access="2" violationReasons="10" nameViolationFlags="2" statementViolationFlags="63" maxVips="200"/>
<group id="4" name="Gamemaster" flags="3808558964575" customFlags="257215" access="3" violationReasons="19" nameViolationFlags="10" statementViolationFlags="69" depotLimit="3000" maxVips="300" outfit="75"/>
<group id="5" name="Community Manager" flags="3840774348794" customFlags="781823" access="4" violationReasons="23" nameViolationFlags="42" statementViolationFlags="213" depotLimit="4000" maxVips="400" outfit="266"/>
<group id="6" name="God" flags="3845069447162" customFlags="2097151" access="5" violationReasons="23" nameViolationFlags="426" statementViolationFlags="469" depotLimit="5000" maxVips="500" outfit="302"/>
</groups>
 
Guys isnt it more helpful if you guys check first if its working well? instead of posting random xml groups o_O? isnt a hate... just saying.
 
Back
Top