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!

I need help on how to put GM System in this template

Status
Not open for further replies.
-( . ) ( . )-
Loyal Member
Joined
Mar 28, 2012
Messages
1,356
Reaction score
68
I need help on how to put GM System in this template?? cause i want to show whos GM is online in my template and we cannot click tha GM system Module in template menu...

this is my template pictures..

clerigz - I need help on how to put GM System in this template - RaGEZONE Forums


clerigz - I need help on how to put GM System in this template - RaGEZONE Forums
 
Newbie Spellweaver
Joined
Jul 10, 2012
Messages
33
Reaction score
3
Code:
<table>
              <?
			$Queryadms = mssql_query("select name,accountid from character where ctlcode>=8 order by name");
			for($b=0;$b<mssql_num_rows($Queryadms);$b++) {
				$Gm = mssql_fetch_row($Queryadms);
				$status = mssql_fetch_row(mssql_query("select connectstat from memb_stat where memb___id='".$Gm[1]."'"));
				switch($status[0]) {
					case 0: $statusfinal = 'offline'; break;
					case 1: $statusfinal = 'online'; break;
				}
				?>
              <tr>
			  <td width="20"> </td>
                <td width="20" align="left"><strong><b><font color="#758bd0"><h4>
                  <?=$Gm[0]?>
          </h4>  </b> </font>   </strong></td>
                <td width="20" align="left"><font color="#009900">
                    <?=$statusfinal?>
                </font></td>
              </tr>
              <? } ?>
            </table>
 
Upvote 0
Status
Not open for further replies.
Back
Top