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

Solved Need help making a god char

God characters are created by assigning the player a group id of 6, once the character is created you would go into the players table of the database and edit the colum group_id of the player.
PHP:
<?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="68736352256" 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>
https://github.com/Jo-Tran/cryingda...a8ff21b5602cde8a6771a2f4d/data/XML/groups.xml

This is the section of code which handles the account management ingame, I am not expecting you to understand the code, however there is text in there, please provide us with the line number of the error you are receiving so we can find you a solution.
https://github.com/Jo-Tran/cryingda...f21b5602cde8a6771a2f4d/player.cpp#L4150-L4684
 
I figured that out now im just trying to make a new character through myphp. Already made a new account but when i try to make the char in game it says it cant make the char at this time. Anyone happen to know what id type in my sql to make a char?
 
I figured that out now im just trying to make a new character through myphp. Already made a new account but when i try to make the char in game it says it cant make the char at this time. Anyone happen to know what id type in my sql to make a char?
See above
 
Back
Top