Dodano 08 lipiec 2011 - 16:20:
Archive translated to Polish lang
To równanie zostało stworzone przy pomocy kodu LaTeX:
Edytor LaTeX online: CodeCogs.com/latex/eqneditor.php
Witamy w Nieoficjalnym polskim support'cie AMX Mod X, jak w większości społeczności internetowych musisz się zarejestrować aby móc odpowiadać lub zakładać nowe tematy, ale nie bój się to jest prosty proces w którym wymagamy minimalnych informacji.
|
Napisane przez Jungle
w 08.07.2011 14:17
Napisane przez Jungle
w 07.06.2011 16:07
<?php require_once ("include/config.inc.php"); require_once ("include/access.inc.php"); require_once ("include/menu.inc.php"); require_once ("include/steam.inc.php"); require_once ("include/sql.inc.php"); require_once ("include/logfunc.inc.php"); require_once ("include/functions.inc.php"); $smarty = new dynamicPage; if ($config->error_handler == "enabled") { include ("$config->error_handler_path"); } $result = mysql_query("SELECT count(*), admin_nick FROM amx_bans GROUP BY admin_nick ORDER BY count(*) DESC LIMIT 5"); $l = "<head> <meta http-equiv='Content-Type' content='text/html; charset=UTF-8'> <link rel='stylesheet' type='text/css' href='templates/darkgold/css/style.css' /> </head> <div class='main'> <table frame='box' rules='groups' summary='' width='100%'> <thead> <tr style=' background: #1b1b1b ; font: bold 10pt arial; border-top:1px #3e3e3e solid; border-bottom: 1px #3e3e3e solid; color: #e3cc9a; margin-bottom: 5px; min-height: 0; margin: 0; padding: 5px 8px; overflow: hidden; clear: left; '> <th style='width:110px; color: white;'>Admin nick</th> <th style='width: 10%; color: white;' class='_right'>Bans</th> </tr> </thead> <tbody> "; while ($row = mysql_fetch_array($result)) { $admins = $row['admin_nick']; $bans = $row['count(*)']; $display = $row['admin_nick'] . $row['count(*)']; $smarty->assign("display", $display); $smarty->assign("admintopnick", $admins); $smarty->assign("admintopbans", $bans); $l .= " <tr> <td><span class='bialy'>$admins</span></td> <td class='_right'><span class='bialy'>$bans</span></td></tr>"; } echo $l .= " </tbody> </table> "; ?>Where "Admin nick" and "Bans" translate to Polish independently.
Napisane przez Jungle
w 05.05.2011 18:01
Napisane przez Jungle
w 01.05.2011 21:27
Aktualizacja ma takiego samego bug jak gm 1.51 jeżeli nie zalogowany jako admin masz opcje skasuj ban
<form method="POST" style="display:inline;"> <input class="img_input" name="del_ban" type="image" src="templates/{$design}/gfx/page_delete.png" onclick="return confirm('{"_DELBAN"|lang}{"_DATALOSS"|lang}');" border="0" title="{"_TIP_DEL"|lang}" /> <input type="hidden" name="site" value="{$site}" /> <input type="hidden" name="bid" value="{$ban_list.bid}" /> <input type="hidden" name="details_x" value="1" /> </form>change to
{if $smarty.session.bans_delete=="yes" || ($smarty.session.bans_delete=="own" && $smarty.session.uname == $ban_list.nickname || $smarty.session.uname == $ban_list.admin_nick)} <form method="POST" style="display:inline;"> <input class="img_input" name="del_ban" type="image" src="templates/{$design}/gfx/page_delete.png" onclick="return confirm('{"_DELBAN"|lang}{"_DATALOSS"|lang}');" border="0" title="{"_TIP_DEL"|lang}" /> <input type="hidden" name="site" value="{$site}" /> <input type="hidden" name="bid" value="{$ban_list.bid}" /> <input type="hidden" name="details_x" value="1" /> </form> {/if}
Napisane przez Jungle
w 01.05.2011 15:32