• Bem vindo à nossa comunidade - Quer se juntar ao resto dos nossos membros? Registre-se*Registros aprovados pela adminitração

Codigo do Sistema de Game Master

Status
Não esta aberto para novas mensagens.

conexaoinfo

Honrado XPZ
<!-- CODIGO DO SISTEMA DE GAME MASTER -->

Olha Gente Pedido desse Sistema ai ^^
achei ele legal mais ta dificil e acha ele!

qXTsHeU.png
 

Nicke

Honrado XPZ
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>GameMasters</title>
</head>
<body>
<h3>
<center>
<font color="#00FF00" face="Georgia, Times New Roman, Times, serif">
GAME MASTER
</font>
</center>
</h3>
<table align="center" width="200" border="0" cellspacing="1" cellpadding="1">
<tr>
<th scope="col"><font face="Courier New, Courier, monospace" color="#666666"><b>NOME</b></font></th>
<th scope="col"><font face="Courier New, Courier, monospace" color="#666666"><b>STATUS</b></font></th>
</tr>
<?php
@ini_set('display_errors',0);
// SCRIPT DESENVOLVIDO POR NICKE - 05/11/2013 - XPZONE.net
/*
___ ___ ___ ___
/ /__ /| | /__
: ___ /:/ / |:| | /:/ _/_
: /__ /:/ / |:| | /:/ /__
_____: /:/__/ /:/ / ___ __|:| | /:/ /:/ _/_
/::::::::__ /:: /:/__/ /__ / |:|__|____ /:/_/:/ /__
:~~~~/__/ /: __ : /:/ / :/:::::/__/ :/:/ /:/ /
: ~~:/__ : /:/ / ::/~~/~ ::/_/:/ /
: ::/ / :/:/ / :~~ :/:/ /
:__ /:/ / ::/ / :__ ::/ /
/__/ /__/ /__/ /__/ /__/

*/
// DEFINIR CONEXAO COM BANCO DE DADOS
$Host = '???';
$Usuario = '???';
$Senha = '???';
$Conexao = mssql_connect($Host, $Usuario, $Senha);
if (!$Conexao) die ("ERRO AO CONECTAR COM O BANCO DE DADOS !");
//////////////////////////////////////

$Qr1 = mssql_query("SELECT * FROM SERVER01.dbo.cabal_character_table WHERE Nation = '3' and AusGMOn = '1'");
if ($Qr1 == FALSE) {
echo'<meta http-equiv="refresh" content="5"><h3><center>INSERINDO COLUNA NA TABELA, AGUARDE...</center></h3>';
$execQuery = "ALTER TABLE SERVER01.dbo.cabal_character_table ADD AusGMOn int";
$result = mssql_query($execQuery) or die("MS-Query ERROR");
exit;
}
else {
for ($gms=1;$gms<=mssql_num_rows($Qr1);$gms++) {
$asGM = mssql_fetch_array($Qr1);
?>
<tr>
<td align="center"><?=$asGM['Name']?></td>
<td align="center">
<?php switch($asGM['Login']) {
case 0 : echo'<font color="#FF0000" face="Tahoma, Geneva, sans-serif">Offline</font>'; break;
case 1 : echo'<font color="#00FF00" face="Tahoma, Geneva, sans-serif">Online</font>'; break;
}
?>
</td>
</tr>
<?php
}
}
mssql_close();
?>
</table>
</body>
</html>


Instrução Adicional

  • Adapte como preferir ao site que você utiliza.
  • O script gera automaticamente uma coluna INT denominada "AusGMOn", onde define os GMs que devem ou não aparecer no Rank, basta entrar na tabela, cabal_character_table e definir o valor dessa coluna no char(GM) que quiser que apareça para "1".
  • O SCRIPT seleciona automaticamente todos os chars com nação 3 (GM) e lista em sua tabela, basta proceder à dica acima.


Criado por Nicke - 05/11/2013 17:50 PM
 
Status
Não esta aberto para novas mensagens.
Topo Bottom