Jump to content
GIGN Forum

KeeP oFf

Mirstīgais
  • Posts

    177
  • Joined

  • Last visited

Everything posted by KeeP oFf

  1. Izmanto Appserv 2.5.7 vai 2.5.8 ! Citām versijām šādi murgi ir.
  2. Koderi. Zināji ka vārdam koderis ir vairākas nozīmes. Ja tu domā web tad bezmaksas koderi "Programētāju" diez vai kur atradīsi. Kautko ļēvu vēl uztaisīs bez maksas, bet kautko nopietnu tikai par naudu.
  3. Cirvis. Ko lai vairāk pasaku. Tas ir HLTV kas uzņem .dem failus kuri parasti glabājās mājaslapās/serveru failos.
  4. Neēsi norādijis pareizi acīm redzot. Jābūt ir šādi: zp_surv_weapon "weapon_m249" // Survivor's weapon (given by default)
  5. Ebbyyam - Ieraksti amx_reloadadmins server.cfg Elwiss - Ar user.ini tev nāv jāčakarējās. Adminus liec caur amxban mājaslapu, ko uzmeti sev uz PC.
  6. Tas varētu laikam būt šis. http://forums.alliedmods.net/showthread.php?p=1043977
  7. <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <?php $cfg['forum_path'] = 'forums'; //--- forum path $cfg['forums_id'][] = 2; //--- forum id $cfg['latest_pos'] = 'DESC'; //--- asc/desc $cfg['per_page'] = 3; //--- per page $cfg['news_limit'] = 0; //--- news limit $cfg['no_news'] = 'Nav pašlaik jaunumu'; //--- no news message $cfg['page_select'] = true; //--- pager $cfg['debug'] = false; //--- debug require_once($cfg['forum_path']."/conf_global.php" ); $mysql = mysql_connect($INFO['sql_host'], $INFO['sql_user'], $INFO['sql_pass']); if (!$mysql) { die("<b>mysql_connect()</b>: ".mysql_error()); } $select_db = mysql_select_db($INFO['sql_database'], $mysql); if (!$select_db) { die("<b>mysql_select_db()</b>: ".mysql_error()); } for ($i = 0; $i < count( $cfg['forums_id'] ); $i++ ) { $cfg['forum_id'] = $cfg['forums_id'][$i]; if ( $cfg['news_limit'] != "0" ) { $query = mysql_query( "SELECT t.tid, t.title, t.topic_firstpost, p.pid, p.topic_id, p.post_date, p.author_id, m.id, m.name, p.post, t.posts FROM ". $INFO['sql_tbl_prefix'] ."topics t, ". $INFO['sql_tbl_prefix'] ."posts p, ". $INFO['sql_tbl_prefix'] ."members m WHERE t.forum_id = '". $cfg['forum_id'] ."' AND t.tid = p.topic_id AND p.author_id = m.id AND p.pid = t.topic_firstpost ORDER BY p.post_date ". $cfg['latest_pos'] ." LIMIT ". $cfg['news_limit'] ); } else { $query = mysql_query( "SELECT t.tid, t.title, t.topic_firstpost, p.pid, p.topic_id, p.post_date, p.author_id, m.id, m.name, p.post, t.posts FROM ". $INFO['sql_tbl_prefix'] ."topics t, ". $INFO['sql_tbl_prefix'] ."posts p, ". $INFO['sql_tbl_prefix'] ."members m WHERE t.forum_id = '". $cfg['forum_id'] ."' AND t.tid = p.topic_id AND p.author_id = m.id AND p.pid = t.topic_firstpost ORDER BY p.post_date ". $cfg['latest_pos'] ); } if ( !$query ) { die( "<b>mysql_query()</b>: ". mysql_error() ); } $iNews = mysql_num_rows( $query ); $iRun = 0; $iCurrent = 0; if ( $iNews == 0 ) { echo "<center><span style=\"font-family: Tahoma; font-size: 13px\">". $cfg['no_news'] ."</span></center><br>"; } while ( $row = mysql_fetch_array( $query, MYSQL_NUM ) ) { if ( $cfg['debug'] == "true" ) { print_r( $row ); } $iRun++; if ( $iRun > ( $_GET['page'] - 1 ) * $cfg['per_page'] && $iCurrent < $cfg['per_page'] ) { $sTemplate = <<<EOT <table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline"> <tr> <th class="thTop" height="20"><A NAME="<!-- TOPIC -->" title="<!-- TITLE -->"><FONT class="topic_title"><!-- TITLE --></FONT></a></th> </tr> <tr> <td class="row1" align="left" width="100%"> <font size="2px"> <B><!-- TIME --></B> Pievienoja <a href="<!-- FORUM -->/index.php?showuser=<!-- USER -->" title="Click Here For <!-- AUTHOR -->'s Profile!"><B><!-- AUTHOR --></B></a> <HR size="1" class="hr" /> <div align="left"><!-- POST --></div> </font> <HR size="1" class="hr" /> <span class="gensmall"> <div class="hrr"></div><div style="background-color: #fff;"><font size="1px"> <a href="<!-- FORUM -->/index.php?showtopic=<!-- TOPIC -->" title="View This Topic">» Lasīt vairāk «</a> [<!-- REPLIES -->] | <a href="<!-- FORUM -->/index.php?act=post&do=reply_post&f=6&t=<!-- TOPIC -->" title="Add A Reply To: <!-- TITLE -->" >» Pievienot komentāru «</a> | <a href="<!-- FORUM -->/index.php?showtopic=<!-- TOPIC -->&view=getlastpost" title="Click For Last Post Made!">» <IMG src="<!-- FORUM -->/style_images/1/lastpost.gif" alt="Click For Last Post Made!" valign="top" border="0" /> «</a> | <A HREF="java script:scroll(0,0);" title="Top Of Page">» Top «</A> </div></font> <HR size="1" class="hr" /> </span> </td> </tr> </table> <BR /> EOT; $sParsed = str_replace( array( "<!-- TITLE -->", "<!-- POST -->", "<!-- TIME -->", "<!-- AUTHOR -->", "<!-- REPLIES -->", "<!-- FORUM -->", "<!-- TOPIC -->", "style_emoticons/<#EMO_DIR#>", //SMILEY FIX "<!-- USER -->", "[indent]", "[/indent]", "class='quotetop'", "class='quotemain'", "class='codetop'", "class='codemain'" ), array( $row[1], $row[9], //date( "l, F j, Y h:i A", $row[5] ), date( "F m, Y", $row[5] ), $row[8], $row[10], $cfg['forum_path'], $row[0], $cfg['forum_path'] ."/style_emoticons/default", $row[7], "<blockquote>", "</blockquote>", "style='background: #E4EAF2; border: 1px dotted #000; border-bottom: 0; border-left: 4px solid #8394B2; color: #000; font-weight: bold; font-size: 10px; margin: 8px auto 0 auto; padding: 3px;'", "style='background: #FAFCFE; border: 1px dotted #000; border-left: 4px solid #8394B2; border-top: 0; color: #465584; padding: 4px; margin: 0 auto 8px auto;'", "style='background: #FDDBCC; color: #000; font-weight: bold; margin: 0 auto 0 auto; padding: 3px; width: 98%;'", "style='background: #FAFCFE; border: 1px dotted #000; color: #465584; font-family: Courier, Courier New, Verdana, Arial; margin: 0 auto 0 auto; padding: 2px; width: 98%;'" ), $sTemplate ); if ( $cfg['debug'] != "true" ) { echo $sParsed; } $iCurrent++; } } mysql_free_result( $query ); } mysql_close($mysql); if ( $cfg['page_select'] == "true" ) { if ( $_GET['page'] == "1" || $_GET['page'] == "" ) { echo "<span style=\"font-family: Tahoma; font-size: 13px\"><center><b><a style=\"text-decoration: none\" href=\"". $_SERVER['PHP_SELF'] ."?page=1\"></a></b>"; } else { echo "<span style=\"font-family: Tahoma; font-size: 13px\"><center><b><a style=\"text-decoration: none\" href=\"". $_SERVER['PHP_SELF'] ."?page=". ( $_GET['page'] - 1 ) ."\"></a></b>"; } for ( $i = 0; $i < $iNews / $cfg['per_page']; $i++ ) { if ( $i == $_GET['page'] - 1 || ( $i == 0 && $_GET['page'] == "" ) ) { echo " <u>". ( $i + 1 ) ."</u> "; } else { echo " <a style=\"text-decoration: none\" href=\"". $_SERVER['PHP_SELF'] ."?page=". ( $i + 1 ) ."\">". ( $i + 1 ) ."</a> "; } } if ( $_GET['page'] == $i ) { echo "<b><a style=\"text-decoration: none\" href=\"". $_SERVER['PHP_SELF'] ."?page=". $_GET['page'] ."\"></a></b>"; } else if ( $i > 1 && $_GET['page'] == "" ) { echo "<b><a style=\"text-decoration: none\" href=\"". $_SERVER['PHP_SELF'] ."?page=". ( $_GET['page'] + 2 ) ."\"></a></b>"; } else if ( $i <= 1 && $_GET['page'] == "" ) { echo "<b><a style=\"text-decoration: none\" href=\"". $_SERVER['PHP_SELF'] ."?page=". ( $_GET['page'] + 1 ) ."\"></a></b>"; } else { echo "<b><a style=\"text-decoration: none\" href=\"". $_SERVER['PHP_SELF'] ."?page=". ( $_GET['page'] + 1 ) ."\"></a></b>"; } } ?> Šis nav takā tur. Taču ja pēc stila piestrādāsi, dabūsi arī smuku rezultātu.
  8. Neēsi slinks un pārbaudi. Vajadzētu uzradīt visiem.
  9. http://bizinformation.org/lv/www.ert.ctts.lv kā tad 5k vērtība. Es viņu veidoju un maksimālā vērtība tam webam ir tikai 1Ls
  10. Varētu neiet jo viņš varbūt bija kopā ar .amxx failu.
  11. Ieraksti amx_realodadmins / server.cfg failā. Pēc būtības, viņš startējot serveri nolasīs, server.cfg atradīs šo komandu, un katru mapi viņš amx_realodadmins taisīs. EDIT: Ja neaiziet, tad paņem gatavu pub serveri no filer.lv
  12. war3.sma nokompilēji ? war3.amxx iemeti plugins mapē ?
  13. Viss ir bumbās, anti vīrus nebrēc. Anti virus var brēkt dēļ tā ka faila formāts ir .gz. Aceros veco anti virusu kurš pie katra .gz faila brēca. Tnx lvhostings.
  14. Pēc datumiem sanāk ka man būtu šodien jāmaksā - 20Ls. Bet nu pēc šī pēdējā 100% negribās pie viņiem.
  15. Nu jā mans - ERT projekts arī ir uzlauzts. Jau nākam nedēļ domājam iet pie LHC. Visi servera faili ir izdzēsti - VISI
  16. Tu izlasīji šo topic un domā ka viņiem ir savs hostings ? Tas ir lvhosting.lv. Un ja kļūdos, tad pirmā dzirdēšana ka viņi piedāva hosting.
  17. 1. Vai kāds nevar pateikt kā php-fusion 7 dabūt kreiso paneli labajā pusē. 2. Vai kāds nevar pateikt kā php-fusion 7 noņemt forumam kreiso un labo malu. Skatīt bildi - Šī lieta atrisināta. EDIT: Tagad mani interesē tikai pirmais punkts.
  18. Ej uz scripting mapi. Atver failu - zp_zclasses40.sma. Tur tu redzēsi zm klases un katrai klasei pieraksti jauno claws nosaukumu: Parādišu priekšā: new const zclass1_clawmodel[] = { "v_knife_zombie.mdl" } Tad saglab', nokompilē, paņem jauno zp_clas...amxx un ieliec plugins. Viss.
  19. Otrais ir efektīvs. Uztaisi configs mapē - serverlist.ini, un tajā ieraksti: [servera nosaukums] address=servera ip port=ports cmdbackup=5 noauto=1 nomanual=0 nodisplay=0 [servera nosaukums] address=servera ip port=ports cmdbackup=5 noauto=1 nomanual=0 nodisplay=0 Tad šo šitu taisi ciet. Atver AMXX.CFG un pašā apakšā ieraksti: //xRedirect redirect_active 1 redirect_manual 1 redirect_follow 1 redirect_check_method 2
  20. Vajadzēja uzmanīgāk visu lasīt. Iemēt šo te amxx.cfg failā. amx_demo_name "Tava demo vārds" Un teksta dokumetu ieliki data/lang mapē ?
  21. Skinus iegūt vari šeit. Ieliec viņus Valve/Cstrike/Models mapē. Kā arī tēmai nevajadzēja būt counter-strike sadaļā ?
  22. Varbūt tas ir cits lāzeris un tādēļ viņš nedarbojas. Pameiģini serverī uzrakstīt /lm un tad tev nopirksies lāzeri, un tad tev uzrkadtīs ka tu vari uzlikt. Ja tas ir Zombie Plague tad tev ir pa ammo pakām tas jānopērk, un jātur poga P.
×
×
  • Create New...