• 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 Vip status from database

therrax

Member
Joined
Jul 12, 2012
Messages
262
Solutions
1
Reaction score
11
Hi.
I am beginner..
Could someone explain to me how add VIP status in characterprofile.php?
Informations:
I am using ZnoteAAC 1.5 master and TFS 1.0 .
In database: That is in accounts/viptime
VIP status is for all characters of the account.

Can someone send me the correct code?

Thanks for any hint.
 
PHP:
$account = user_data(user_character_account_id($name), 'viptime');
<?php echo $account['viptime'] > time() ? '<font style="color: green; font-weight: bold">VIP</font>' : '<font style="color: red; font-weight: bold">FACC</font>; ?>
 
Back
Top