hi im going to try explain this as best as i can im making a mmorpg in php and i need help with script for the bank so donators get more intrest then avarage users the bank bit for intrest is as follows
BANK.php
$interest= $ir[‘bankmoney’]/100*2 ;
$interests=money_formatter($interest);
$balance=money_formatter($ir[‘bankmoney’]);
and i think to make a donator command its something like this
if($ir[‘donatordays’] == 0)
{
die(“This feature is for donators only.”);
}
print "
i need to know how to make a command to allow donators to have higher intrest then normal players can anyone help me or point me in the right direction ?