Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Displaying Proper credits on mucore

Elite Diviner
Joined
Apr 4, 2011
Messages
464
Reaction score
69
Anyone know how to change these to display credits instead of goblin points

Code:
$acc_monedas = mssql_fetch_row(mssql_query("SELECT * from CashShopData where AccountID = '$user_auth_id'"));

  echo '
 <div class="white-box">
    <ul class="acc-list">
      <li><span><img src="template/'.$core['config']['template'].'/images/cred.png"> Goblin Points:</span> '.$acc_monedas[3].'</li>
      <li><span><img src="template/'.$core['config']['template'].'/images/gold.png"> W Coin P:</span> '.$acc_monedas[2].'</li>
      <li><span><img src="template/'.$core['config']['template'].'/images/wcoins.png"> W Coins C:</span> '.$acc_monedas[1].'</li>

    </ul>
  </div>

I'm using MUcore, and I want it to pull the credits from MEMB_INFO


EDIT: Nevermind I figured it out, for anyone that wants to know its this

$acc_monedas = mssql_fetch_row(mssql_query("SELECT * from MEMB_CREDITS where memb___id = '$user_auth_id'"));
 
Last edited:
Back
Top