• 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 Problem with account status in characters

tim26

Member
Joined
Aug 12, 2008
Messages
618
Reaction score
11
Location
Poland
It shows me premium status everywhere, but when I choose a character, even though ko0nto has premium, it shows me a free account and from what I can see in characters php there is no function at all, it is only free premium. The following functions responsible for this will help you what code to add?

ikona Zweryfikowane przez społeczność

if ($account->isVip()) {
$main_content .= '
<tr >
<td>Account Status:</td>
<td>VIP Account</td>
</tr>';
/* } else if ($config['server']['freePremium'] == "yes") {
$main_content .= '
<tr >
<td>Account Status:</td>
<td>Free Premium Account</td>
</tr>'; */
} else {
$main_content .= '
<tr >
<td>Account Status:</td>
<td>Free Account</td>
</tr>';
 
Back
Top