Skocz do zawartości

Witamy w Nieoficjalnym polskim support'cie AMX Mod X

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.
  • Rozpoczynaj nowe tematy i odpowiedaj na inne
  • Zapisz się do tematów i for, aby otrzymywać automatyczne uaktualnienia
  • Dodawaj wydarzenia do kalendarza społecznościowego
  • Stwórz swój własny profil i zdobywaj nowych znajomych
  • Zdobywaj nowe doświadczenia

Dołączona grafika Dołączona grafika

Guest Message by DevFuse
 

Zdjęcie

Dużo pytań/problemów każdej maści :)


  • Zamknięty Temat jest zamknięty
9 odpowiedzi w tym temacie

#1 Myszax

    Początkujący

  • Użytkownik

Reputacja: 1
Nowy

  • Postów:18
  • Lokalizacja:Stw
Offline

Napisano 30.09.2008 18:37

Witam! (powrót po długiej przerwie)
Kupiłem serwer z kumplami na Gamepad.pl i mam do was pytania.

1. Mam na serwerze plugin bomba_explode_sound
/* 
Bomb Countdown HUD Timer v0.2 by SAMURAI 

* Plugin Details 
With this plugin enabled, you can see an colored Hud Message with the c4 time left, until explode 
Remeber : if until explode remains less than 8 seconds, hudmessage color will be red, if > 7 will be yellow and > 13 will be green. 

* Required Modules: 
- CSX 

* Credits: 
- Emp` for various indicates 
- Alka for full tests 

* Changelog 
- Fixed Events problems 
- Pcvars 
- Fixed any bug on plugin 

*/ 


#include <amxmodx> 
#include <csx> 

#define PLUGIN "Bomb Countdown HUD Timer" 
#define VERSION "0.2" 
#define AUTHOR "SAMURAI" 

// 
// KONFIGURACJA TUTAJ 
// 
#define muzyczka "sound/misc/bomba.wav" 
#define czas 10 
// 

// 

new g_c4timer, pointnum; 
new bool:b_planted = false; 

new g_msgsync; 

public plugin_init() 
{ 
register_plugin(PLUGIN,VERSION,AUTHOR); 

pointnum = get_cvar_pointer("mp_c4timer"); 

register_logevent("newRound", 2, "1=Round_Start"); 
register_logevent("endRound", 2, "1=Round_End"); 
register_logevent("endRound", 2, "1&Restart_Round_"); 

g_msgsync = CreateHudSyncObj(); 
} 

public newRound() 
{ 
g_c4timer = -1; 
remove_task(652450); 
b_planted = false; 
} 

public endRound() 
{ 
g_c4timer = -1; 
remove_task(652450); 
} 

public bomb_planted() 
{ 
b_planted = true; 
g_c4timer = get_pcvar_num(pointnum); 
dispTime() 
set_task(1.0, "dispTime", 652450, "", 0, "b"); 
} 

public bomb_defused() 
{ 
if(b_planted) 
{ 
remove_task(652450); 
b_planted = false; 
} 

} 

public bomb_explode() 
{ 
if(b_planted) 
{ 
remove_task(652450); 
b_planted = false; 
} 

} 

public dispTime() 
{ 
if(!b_planted) 
{ 
remove_task(652450); 
return; 
} 


if(g_c4timer >= 0) 
{ 
if(g_c4timer > 13) { 
set_hudmessage(0, 150, 0, -1.0, 0.80, 0, 1.0, 1.0, 0.01, 0.01, -1); 
} 
else if(g_c4timer > 7) { 
set_hudmessage(150, 150, 0, -1.0, 0.80, 0, 1.0, 1.0, 0.01, 0.01, -1); 
if(g_c4timer == czas) { 
client_cmd(0, "spk %s", muzyczka) 
} 
} 
else { 
set_hudmessage(150, 0, 0, -1.0, 0.80, 0, 1.0, 1.0, 0.01, 0.01, -1); 
} 

ShowSyncHudMsg(0, g_msgsync, "C4: %d", g_c4timer); 

--g_c4timer; 
} 

} 

public plugin_precache() 
{ 
precache_sound("misc/bomba.wav") 

return PLUGIN_CONTINUE 
}
I mam z nim problemy: Gdy paka jest podłożona i TT zabije CT to paka znika (to jest OK), ale czasem jest tak, że paka podłożona TT zabija CT i ta paka przechodzi do następnej rundy i pika dalej, a potem wybucha.

2. Szukam pluginu, że tylko admin może patrzeć na każdą drużynę i z każdej kamery.

3. Co dopisać do server.cfg żeby można było patrzeć tylko z jednej kamery "First Person"

4. Czego tylko 1 osoba w z ct może mieć defuse kita??

5. Mam na serwerze ATAC 3.0.1 i chciałbym żeby ktoś napisał mi taki plugin np: wpisuje a konsoli atac_menu i wyświetla mi się menu po lewej stronie (tak jak amxmodmenu) i tak wybieram nick(jednego z graczy online na serwerze) i przechodzi do następnego "okienka" z karami czyli jaką kare mu chce dać.

6. Gdy włączam serwer (przypominam, że mam serwer na Gamepad.pl) to mapy ładują mi się z mapcycle - prawie. Chodzi o to, że w cstrike/mapcycle.txt na pierwszą mapę mam ustawiony aim_map, a przy ładowaniu serwer w gamepadowej konsoli piszę mi tak:
Auto detecting CPU
Using AMD Optimised binary.

Console initialized.
scandir failed:/home/panel/user_files/s17626/CS_v1.6/./valve/SAVE
scandir failed:/home/panel/user_files/s17626/CS_v1.6/./platform/SAVE
Protocol version 47
Exe version 1.1.2.5/Stdio (cstrike)
Exe build: 20:02:44 Oct 24 2006 (3651)
STEAM Auth Server
couldn't exec language.cfg
Server IP address 91.204.163.221:27231

   Metamod version 1.19  Copyright (c) 2001-2006 Will Day 
   Metamod comes with ABSOLUTELY NO WARRANTY; for details type `meta gpl'.
   This is free software, and you are welcome to redistribute it
   under certain conditions; type `meta gpl' for details.


   AMX Mod X version 1.8.1.3746 Copyright (c) 2004-2006 AMX Mod X Development Team
   AMX Mod X comes with ABSOLUTELY NO WARRANTY; for details type `amxx gpl'.
   This is free software and you are welcome to redistribute it under
   certain conditions; type 'amxx gpl' for details.

scandir failed:/home/panel/user_files/s17626/CS_v1.6/./valve/SAVE
scandir failed:/home/panel/user_files/s17626/CS_v1.6/./platform/SAVE
L 09/28/2008 - 20:07:32: -------- Mapchange to de_dust --------
stray key in process_key: item_getiteminfo 63
[AMXX] Zaladowano 7 adminow z pliku
Last man bets version 0.9.3 initialized.
L 09/28/2008 - 20:07:32: [M_Antirusher.amxx]  

        Admin Spectator ESP v1.3, Copyright (C) 2006 by KoST


Executing AMX Mod X Configuration File
Czestotliwosc wyswietlania wiadomosci: 10:00 minut
[PTB] Ptb.cfg is being executed
PTB: (limitjoin) WTJ prevention is ON.
PTB: (limitafter) Team limiting starts after 0 round(s).
PTB: (limitmin) Team limiting needs at least 0 player(s).
PTB: (maxsize) Maximum team size is 11 player(s).
PTB: (maxdiff) Maximum team size difference is 2.
PTB: (autorounds) First 3 rounds no free team choice.
PTB: (wtjauto) Auto-joining WTJ after 3 tr(y/ies).
PTB: (wtjauto) Auto-kicking WTJ after 5 tr(y/ies).
PTB: (kick) WTJ kicking is OFF.
PTB: (savewtj) Saving to wtj.log is OFF.
PTB: (switch) Team switching is ON.
PTB: (switchafter) Switching starts after 3 round(s).
PTB: (switchmin) Switching needs at least 5 player(s).
PTB: (switchfreq) Switch occurs every 1 round(s) at maximum.
PTB: (playerfreq) Individual players are switched every 7 round(s) at maximum.
PTB: (forceswitch) Forcing switch after 0 unsuccessful switch(es).
PTB: (deadonly) Switching dead only is ON.
PTB: (tellwtj) Telling about WTJ tries is OFF.
PTB: (announce) Announcements are OFF.
PTB: (sayok) "OK" announcements are ON.
PTB: (typesay) typesay usage is OFF.
PTB: (maxstreak) Maximum accepted win streak is 3.
PTB: (maxscore) Maximum accepted team score difference is 2.
PTB: (minrating) Minimum critical strength rating is 1.49.
PTB: (maxrating) Maximum critical strength rating is 2.00.
PTB: (superrating) Super critical strength rating is 3.00.
PTB: (maxincidents) Maximum incidents before internal player score scale down is 50.
PTB: (scaledown) Integer scale down factor for player scores is 2.
Menu item 17 added to Menus Front-End: "Plugin Cvars" from plugin "pluginmenu.amxx"
Menu item 18 added to Menus Front-End: "Plugin Commands" from plugin "pluginmenu.amxx"
   VAC secure mode disabled.
(to co na czerwono to właśnie o to mi chodzi) po zatrzymaniu i uruchomieniu serwera jest mapa de_dust (gdy wpisuję nextmap to piszę aim_map), a pierwsza mapa w mapcycle jest aim_map , a de_dust chyba 5 z kolei. I do amxx.cfg dopisałem
//Skad zmieniac mapy
//0-folder z mapami 1- mapcycle 2-plik maps.ini
amx_mapchooser_mapsloc 1

//Skad brac mapy do amxmodmenu
amx_mapsmenu_mapsloc 1
amx_mapmenu_mapsloc 1
i nic. - POMOCY! :P

7. Problem z motd: Wyświetla się lecz nie cały :/ Pomoże ktoś? (mój motd w załączniku)

Proszę o POMOC.
Z góry bardzo dziękuję i jestem wdzięczny.
  • +
  • -
  • 0

#2 choyrack

    Wszechpomocny

  • Użytkownik

Reputacja: 64
Pomocny

  • Postów:369
  • GG:
  • Lokalizacja:Wrocław
Offline

Napisano 30.09.2008 18:40

2. Szukam pluginu, że tylko admin może patrzeć na każdą drużynę i z każdej kamery.

http://amxx.pl/viewtopic.php?t=1485
  • +
  • -
  • 0

#3 zer0.

    Godlike

  • Przyjaciel

Reputacja: 429
Wszechobecny

  • Postów:2 116
  • Steam:steam
  • Lokalizacja:Kw
Offline

Napisano 30.09.2008 18:40

(mój motd w załączniku)

Nic nie widze ?!

(to co na czerwono to właśnie o to mi chodzi)

Nic czerwonego nie widze ?!
  • +
  • -
  • 0

#4 choyrack

    Wszechpomocny

  • Użytkownik

Reputacja: 64
Pomocny

  • Postów:369
  • GG:
  • Lokalizacja:Wrocław
Offline

Napisano 30.09.2008 18:41

3. Co dopisać do server.cfg żeby można było patrzeć tylko z jednej kamery "First Person"

mp_forcecamera "1" 
mp_forcechasecam "2"


[ Dodano: 30-09-2008, 19:42 ]

4. Czego tylko 1 osoba w z ct może mieć defuse kita??

Daj plugins.ini

[ Dodano: 30-09-2008, 19:43 ]

6. Gdy włączam serwer (przypominam, że mam serwer na Gamepad.pl) to mapy ładują mi się z mapcycle - prawie. Chodzi o to, że w cstrike/mapcycle.txt na pierwszą mapę mam ustawiony aim_map, a przy ładowaniu serwer w gamepadowej konsoli piszę mi tak:

Pierwa mapa jest ustawiona w komendzie startowej serwera i to nie ma nic do tego jaką masz kolejność w mapcycle.txt :-) daj w mapcycle.txt pierwszego dusta i będzie ok leciało lub poproś admina z GajPadu żeby Ci zmienił mapę w komendzie startowej (o ile w ogóle to robią)

[ Dodano: 30-09-2008, 19:44 ]

7. Problem z motd: Wyświetla się lecz nie cały :/ Pomoże ktoś? (mój motd w załączniku)

Nie ma załącznika...
  • +
  • -
  • 0

#5 Myszax

    Początkujący

  • Autor tematu
  • Użytkownik

Reputacja: 1
Nowy

  • Postów:18
  • Lokalizacja:Stw
Offline

Napisano 30.09.2008 19:04

Choyrack dostałeś pomógł.
Z tym czerwobym to chodziło mi o
L 09/28/2008 - 20:07:32: -------- Mapchange to de_dust --------
, bo w kodzie nie da się kolorem :/
A załącznika z rozszerzeniem txt się nie da więc:
<html>
<head>
<title>Nazwa Serwera | [FFA] | www.adres.pl</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">
<style type="text/css">
body{font-family:verdana,arial;background:#000000;margin:0px;}
img{border:0px none;}
.at{font-size:9px;color:red;}
.green{font-size:11px;color:#00FF00;}
.white{font-size:11px;color:#FFFFFF;}
.red{font-size:11px;color:#FF0000;}
.blue{font-size:11px;color:#0000FF;}
.yellow{font-size:11px;color:#FFFF00;}
</style>
</head>
<body>

<center>
<table cellspacing=10 cellpadding=0>
<tr><td colspan=2 align="center"><span class="red"></span><span class="green"><big>[b]Serwer klanu T.N.T | [<img src='https://amxx.pl/public/style_emoticons/<#EMO_DIR#>/naughty.gif' class='bbc_emoticon' alt='^^' />] | www.tnt.y0.pl[/b]</big></span><span class="red"></span>

</td></tr>
<tr><td align="center"><span class="white">[b]Head Admin:[/b]</span></td>
<td align="center"><span class="red">[b]Myszax | GG: 1953066[/b]</span></td></tr>
<tr><td align="center"><span class="white">[b]Admin:[/b]</span></td>
<td align="center"><span class="red">[b]* Mario *
Lion
Jaco
Przemo
Baerok
Subarek[/b]</span></td></tr>
<tr><td colspan=2 align="center">
<span class="red"></span><span class="red"><font size="4">Zasady Serwera:</font></span><span class="red"></span></td></tr><tr><tr><td colspan=2 align="center"><span class="green">1. </span><span class="white">[b]Nie raszujemy![/b]<tr><td colspan=2 align="center"><span class="green">2. </span><span class="white">[b]Nie czitujemy![/b]<tr><td colspan=2 align="center"><span class="green">3. </span><span class="white">[b]Nie krzyczymy do mikrofonu![/b]<tr><td colspan=2 align="center"><span class="green">4. </span><span class="white">[b]Można puszczać muzykę, ale taką żeby było ją słychać, a nie jakieś "buczenie".[/b]<tr><tr><tr><td colspan=2 align="center"><span class="red"><font size="4">Zasady Admina: </font></span><span class="white">[b][/b]<tr><tr><td colspan=2 align="center"><span class="green">1. </span><span class="white">[b]Admin może zmieniać mapy bez pytanie raz na trzy mapy i ta mapa nie morzę się powtarzać.[/b]<tr><td colspan=2 align="center"><span class="green">2. </span><span class="white">[b]Admin nie może kikować, banować bez powodu.[/b]<tr><td colspan=2 align="center"><span class="green">3. </span><span class="white">[b]Admin może zrobić głosowanie na mapy kiedy mu się to podoba i nie musi zaakceptować rezultatu głosowania.[/b]<tr><td colspan=2 align="center"><span class="green">3. </span><span class="white">[b]Admin może slapować, slayować, kikować, banować za nie przestrzeganie zasad serwera.[/b]<tr><tr><td colspan=2 align="center">
<span class="blue"><font size="6">! </font></span><span class="yellow"><font size="4">Za nie dostosowanie się do zasad serwera Admina może wyciągnąć konsekwencje.</font></span><span class="blue"><font size="6"> !</font></span></td></tr></td></tr>
</table>
</body>
</html>

  • +
  • -
  • 0

#6 Gość__*

  • Gość

Reputacja: 0

Offline

Napisano 30.09.2008 19:08

Nazwa Serwera | [<acronym title='Free For All' class='bbc ipSeoAcronym'>FFA</acronym>] | <a href='http://www.adres.pl' class='bbc_url' title='Zewnętrzny odnośnik' rel='nofollow external'>www.adres.pl</a>

Po co Ci </strong> jak to nie jest żaden index <span rel='lightbox'><img class='bbc_img' src='https://amxx.pl/public/style_emoticons/default/angel.gif' class='bbc_emoticon' alt='O:)' /></span> Usuń to zbędne ... Co od <strong class='bbc'>motd</strong> to nie można przewijać go w dół? <br /> </div> <script type='text/javascript'> ipb.global.registerReputation( 'rep_post_17612', { domLikeStripId: 'like_post_17612', app: 'forums', type: 'pid', typeid: '17612' }, parseInt('0') ); </script> <ul id='postControlsNormal_17612' class='post_controls clear clearfix' > <li class='top hide'><a href='#ipboard_body' class='top' title='Do góry'>Do góry</a></li> </ul> </div> </div> </div> <hr /> <script type="text/javascript"> var pid = parseInt(17612); if ( pid > ipb.topic.topPid ){ ipb.topic.topPid = pid; } // Show multiquote for JS browsers if ( $('multiq_17612') ) { $('multiq_17612').show(); } if( $('toggle_post_17612') ) { $('toggle_post_17612').show(); } // Add perm data ipb.topic.deletePerms[17612] = { 'canDelete' : 0, 'canSoftDelete' : 0 }; </script> <!--post:17624--> <div class='post_block hentry clear clearfix ' id='post_id_17624'> <a id='entry17624'></a> <div class='post_wrap' > <h3 class='row2'> <span class='post_id right ipsType_small desc blend_links'> <a itemprop="replyToUrl" data-entry-pid='17624' href='https://amxx.pl/topic/2955-dużo-pytańproblemów-każdej-maści/#entry17624' rel='bookmark' title='Dużo pytań/problemów każdej maści :): post #7'> #7 <img src='https://amxx.pl/public/style_images/tctc91_luminous/icon_share.png' class='small' title='Dużo pytań/problemów każdej maści :): post #7' /> </a> </span> <span itemprop="creator name" class="author vcard"><a hovercard-ref="member" hovercard-id="2124" data-ipb="noparse" class="_hovertrigger url fn name " href='https://amxx.pl/user/2124-myszax/' title='Wyświetl profil'><span itemprop="name"><span style='font-weight: bold;'>Myszax</span></span></a></span> </h3> <div class='author_info'> <div class='user_details'> <ul class='basic_info'> <p class='desc member_title'>Początkujący</p> <li class='title'><span style='font-weight:bold; color:green;'>Autor tematu</span></li><li class='avatar'> <a href="https://amxx.pl/user/2124-myszax/" title="Wyświetl profil" class='ipsUserPhotoLink'> <img src='https://amxx.pl/public/style_images/tctc91_luminous/profile/default_large.png' class='ipsUserPhoto ipsUserPhoto_large' /> </a> </li> <li class='group_title'> <span style='font-weight: bold;'>Użytkownik</span> </li> </ul> <br /> <div class='reputation positive' ><div style='font-size:1.1em'>Reputacja: 1</div> <span class='title'>Nowy</span> </div> <br /> <div class='author_info2'> <ul class='custom_fields'> <li> <span class="ft">Postów:</span>18 </li> <li> <span class='ft'>Lokalizacja:</span><span class='fc'>Stw</span> </li> </ul> <span class='ipsBadge ipsBadge_grey'>Offline</span> </div> </div> </div> <div class='post_body'> <p class='posted_info desc lighter ipsType_small'> Napisano <abbr class="published" itemprop="commentTime" title="2008-09-30T18:42:44+00:00">30.09.2008 19:42</abbr> </p> <div itemprop="commentText" class='post entry-content '> <blockquote class='ipsBlockquote' data-author="kur3k"><p><blockquote class='ipsBlockquote' ><p><title>Nazwa Serwera | [<acronym title='Free For All' class='bbc ipSeoAcronym'>FFA</acronym>] | <a href='http://www.adres.pl' class='bbc_url' title='Zewnętrzny odnośnik' rel='nofollow external'>www.adres.pl</a>

Po co Ci </strong> jak to nie jest żaden index <span rel='lightbox'><img class='bbc_img' src='https://amxx.pl/public/style_emoticons/default/angel.gif' class='bbc_emoticon' alt='O:)' /></span> Usuń to zbędne ... Co od <strong class='bbc'>motd</strong> to nie można przewijać go w dół?</p></blockquote>Ok usunąłem. Tak właśnie nie mogę przewijać w dół.<br />P.S. Pousuwałem troszkę zbędnych pluginów na serwerze i już defusa może kupować każdy z ct. <br /> </div> <div class='rep_bar clearfix right' id='rep_post_17624'> <ul class='ipsList_inline'> <li style="display:none"> <a href='https://amxx.pl/index.php?s=3b410cbabe300a8907ffeef369100bed&app=core&module=global&section=reputation&do=add_rating&app_rate=forums&type=pid&type_id=17624&rating=1&secure_key=880ea6a14ea49e853634fbdc5015a024&post_return=17624' class='rep_up' title='Oceń post pozytywnie (dodaj punkt)'><img src='https://amxx.pl/public/style_images/tctc91_luminous/rep_up.png' alt='+' /></a> </li> <li style="display:none"> <a href='https://amxx.pl/index.php?s=3b410cbabe300a8907ffeef369100bed&app=core&module=global&section=reputation&do=add_rating&app_rate=forums&type=pid&type_id=17624&rating=-1&secure_key=880ea6a14ea49e853634fbdc5015a024&post_return=17624' class='rep_down' title='Oceń post negatywnie (odejmij punkt)'><img src='https://amxx.pl/public/style_images/tctc91_luminous/rep_down.png' alt='-' /></a> </li> <li><span class='reputation zero rep_show clickable' title='Reputacja' onclick="ipb.global.repPopUp( this, 17624, 'forums', 'pid' );"> 0 </span> </li> </ul> </div> <script type='text/javascript'> ipb.global.registerReputation( 'rep_post_17624', { domLikeStripId: 'like_post_17624', app: 'forums', type: 'pid', typeid: '17624' }, parseInt('0') ); </script> <ul id='postControlsNormal_17624' class='post_controls clear clearfix' > <li class='top hide'><a href='#ipboard_body' class='top' title='Do góry'>Do góry</a></li> </ul> </div> </div> </div> <hr /> <script type="text/javascript"> var pid = parseInt(17624); if ( pid > ipb.topic.topPid ){ ipb.topic.topPid = pid; } // Show multiquote for JS browsers if ( $('multiq_17624') ) { $('multiq_17624').show(); } if( $('toggle_post_17624') ) { $('toggle_post_17624').show(); } // Add perm data ipb.topic.deletePerms[17624] = { 'canDelete' : 0, 'canSoftDelete' : 0 }; </script> <!--post:17625--> <div class='post_block hentry clear clearfix ' id='post_id_17625'> <a id='entry17625'></a> <div class='post_wrap' > <h3 class='guest row2'> <span class='post_id right ipsType_small desc blend_links'> <a itemprop="replyToUrl" data-entry-pid='17625' href='https://amxx.pl/topic/2955-dużo-pytańproblemów-każdej-maści/#entry17625' rel='bookmark' title='Dużo pytań/problemów każdej maści :): post #8'> #8 <img src='https://amxx.pl/public/style_images/tctc91_luminous/icon_share.png' class='small' title='Dużo pytań/problemów każdej maści :): post #8' /> </a> </span> Gość__* </h3> <div class='author_info'> <div class='user_details'> <ul class='basic_info'> <li class='avatar'> <img src='https://amxx.pl/public/style_images/tctc91_luminous/profile/default_large.png' class='ipsUserPhoto ipsUserPhoto_large' /> </li> <li class='group_title'> Gość </li> </ul> <br /> <div class='reputation zero' ><div style='font-size:1.1em'>Reputacja: 0</div> </div> <br /> <div class='author_info2'> <span class='ipsBadge ipsBadge_grey'>Offline</span> </div> </div> </div> <div class='post_body'> <p class='posted_info desc lighter ipsType_small'> Napisano <abbr class="published" itemprop="commentTime" title="2008-09-30T18:45:53+00:00">30.09.2008 19:45</abbr> </p> <div itemprop="commentText" class='post entry-content '> <pre class='prettyprint lang-auto linenums:0'><<acronym title='HyperText Markup Language' class='bbc ipSeoAcronym'>html</acronym>> <head> <style type="text/css"> body{font-family:verdana,arial;background:#000000;margin:0px;} img{border:0px none;} .at{font-size:9px;color:red;} .green{font-size:11px;color:#00FF00;} .white{font-size:11px;color:#FFFFFF;} .red{font-size:11px;color:#FF0000;} .blue{font-size:11px;color:#0000FF;} .yellow{font-size:11px;color:#FFFF00;} </style> </head> <center> <table cellspacing=10 cellpadding=0> <tr><td colspan=2 align="center"><span class="red"></span><span class="green"><big>[b]Serwer klanu T.N.T | [<img src='https://<acronym title='AMX Mod X' class='bbc ipSeoAcronym'>amxx</acronym>.pl/public/style_emoticons/<#EMO_DIR#>/naughty.gif' class='bbc_emoticon' alt='^^' />] | www.tnt.y0.pl[/b]&l...pan><span class="red"></span> </td></tr> <tr><td align="center"><span class="white">[b]Head Admin:[/b]</span></td> <td align="center"><span class="red">[b]Myszax | GG: 1953066[/b]</span></td></tr> <tr><td align="center"><span class="white">[b]Admin:[/b]</span></td> <td align="center"><span class="red">[b]* Mario * Lion Jaco Przemo Baerok Subarek[/b]</span></td></tr> <tr><td colspan=2 align="center"> <span class="red"></span><span class="red"><font size="4">Zasady Serwera:</font></span><span class="red"></span></td></tr><tr><tr><td colspan=2 align="center"><span class="green">1. </span><span class="white">[b]Nie raszujemy![/b]<tr><td colspan=2 align="center"><span class="green">2. </span><span class="white">[b]Nie czitujemy![/b]<tr><td colspan=2 align="center"><span class="green">3. </span><span class="white">[b]Nie krzyczymy do mikrofonu![/b]<tr><td colspan=2 align="center"><span class="green">4. </span><span class="white">[b]Można puszczać muzykę, ale taką żeby było ją słychać, a nie jakieś "buczenie".[/b]<tr><tr><tr><td colspan=2 align="center"><span class="red"><font size="4">Zasady Admina: </font></span><span class="white">[b][/b]<tr><tr><td colspan=2 align="center"><span class="green">1. </span><span class="white">[b]Admin może zmieniać mapy bez pytanie raz na trzy mapy i ta mapa nie morzę się powtarzać.[/b]<tr><td colspan=2 align="center"><span class="green">2. </span><span class="white">[b]Admin nie może kikować, banować bez powodu.[/b]<tr><td colspan=2 align="center"><span class="green">3. </span><span class="white">[b]Admin może zrobić głosowanie na mapy kiedy mu się to podoba i nie musi zaakceptować rezultatu głosowania.[/b]<tr><td colspan=2 align="center"><span class="green">3. </span><span class="white">[b]Admin może slapować, slayować, kikować, banować za nie przestrzeganie zasad serwera.[/b]<tr><tr><td colspan=2 align="center"> <span class="blue"><font size="6">! </font></span><span class="yellow"><font size="4">Za nie dostosowanie się do zasad serwera Admina może wyciągnąć konsekwencje.</font></span><span class="blue"><font size="6"> !</font></span></td></tr></td></tr> </table></pre>Zobacz teraz. Nie widzę tu nic co mogło by blokować przewijanie .. <br /> </div> <script type='text/javascript'> ipb.global.registerReputation( 'rep_post_17625', { domLikeStripId: 'like_post_17625', app: 'forums', type: 'pid', typeid: '17625' }, parseInt('0') ); </script> <ul id='postControlsNormal_17625' class='post_controls clear clearfix' > <li class='top hide'><a href='#ipboard_body' class='top' title='Do góry'>Do góry</a></li> </ul> </div> </div> </div> <hr /> <script type="text/javascript"> var pid = parseInt(17625); if ( pid > ipb.topic.topPid ){ ipb.topic.topPid = pid; } // Show multiquote for JS browsers if ( $('multiq_17625') ) { $('multiq_17625').show(); } if( $('toggle_post_17625') ) { $('toggle_post_17625').show(); } // Add perm data ipb.topic.deletePerms[17625] = { 'canDelete' : 0, 'canSoftDelete' : 0 }; </script> <!--post:17635--> <div class='post_block hentry clear clearfix ' id='post_id_17635'> <a id='entry17635'></a> <div class='post_wrap' > <h3 class='row2'> <span class='post_id right ipsType_small desc blend_links'> <a itemprop="replyToUrl" data-entry-pid='17635' href='https://amxx.pl/topic/2955-dużo-pytańproblemów-każdej-maści/#entry17635' rel='bookmark' title='Dużo pytań/problemów każdej maści :): post #9'> #9 <img src='https://amxx.pl/public/style_images/tctc91_luminous/icon_share.png' class='small' title='Dużo pytań/problemów każdej maści :): post #9' /> </a> </span> <span itemprop="creator name" class="author vcard"><a hovercard-ref="member" hovercard-id="2124" data-ipb="noparse" class="_hovertrigger url fn name " href='https://amxx.pl/user/2124-myszax/' title='Wyświetl profil'><span itemprop="name"><span style='font-weight: bold;'>Myszax</span></span></a></span> </h3> <div class='author_info'> <div class='user_details'> <ul class='basic_info'> <p class='desc member_title'>Początkujący</p> <li class='title'><span style='font-weight:bold; color:green;'>Autor tematu</span></li><li class='avatar'> <a href="https://amxx.pl/user/2124-myszax/" title="Wyświetl profil" class='ipsUserPhotoLink'> <img src='https://amxx.pl/public/style_images/tctc91_luminous/profile/default_large.png' class='ipsUserPhoto ipsUserPhoto_large' /> </a> </li> <li class='group_title'> <span style='font-weight: bold;'>Użytkownik</span> </li> </ul> <br /> <div class='reputation positive' ><div style='font-size:1.1em'>Reputacja: 1</div> <span class='title'>Nowy</span> </div> <br /> <div class='author_info2'> <ul class='custom_fields'> <li> <span class="ft">Postów:</span>18 </li> <li> <span class='ft'>Lokalizacja:</span><span class='fc'>Stw</span> </li> </ul> <span class='ipsBadge ipsBadge_grey'>Offline</span> </div> </div> </div> <div class='post_body'> <p class='posted_info desc lighter ipsType_small'> Napisano <abbr class="published" itemprop="commentTime" title="2008-09-30T19:08:50+00:00">30.09.2008 20:08</abbr> </p> <div itemprop="commentText" class='post entry-content '> kur3k to też nie działa, ale pokazuje się jeden punkt więcej lecz suwaka dalej nie ma. <br /> </div> <div class='rep_bar clearfix right' id='rep_post_17635'> <ul class='ipsList_inline'> <li style="display:none"> <a href='https://amxx.pl/index.php?s=3b410cbabe300a8907ffeef369100bed&app=core&module=global&section=reputation&do=add_rating&app_rate=forums&type=pid&type_id=17635&rating=1&secure_key=880ea6a14ea49e853634fbdc5015a024&post_return=17635' class='rep_up' title='Oceń post pozytywnie (dodaj punkt)'><img src='https://amxx.pl/public/style_images/tctc91_luminous/rep_up.png' alt='+' /></a> </li> <li style="display:none"> <a href='https://amxx.pl/index.php?s=3b410cbabe300a8907ffeef369100bed&app=core&module=global&section=reputation&do=add_rating&app_rate=forums&type=pid&type_id=17635&rating=-1&secure_key=880ea6a14ea49e853634fbdc5015a024&post_return=17635' class='rep_down' title='Oceń post negatywnie (odejmij punkt)'><img src='https://amxx.pl/public/style_images/tctc91_luminous/rep_down.png' alt='-' /></a> </li> <li><span class='reputation zero rep_show clickable' title='Reputacja' onclick="ipb.global.repPopUp( this, 17635, 'forums', 'pid' );"> 0 </span> </li> </ul> </div> <script type='text/javascript'> ipb.global.registerReputation( 'rep_post_17635', { domLikeStripId: 'like_post_17635', app: 'forums', type: 'pid', typeid: '17635' }, parseInt('0') ); </script> <ul id='postControlsNormal_17635' class='post_controls clear clearfix' > <li class='top hide'><a href='#ipboard_body' class='top' title='Do góry'>Do góry</a></li> </ul> </div> </div> </div> <hr /> <script type="text/javascript"> var pid = parseInt(17635); if ( pid > ipb.topic.topPid ){ ipb.topic.topPid = pid; } // Show multiquote for JS browsers if ( $('multiq_17635') ) { $('multiq_17635').show(); } if( $('toggle_post_17635') ) { $('toggle_post_17635').show(); } // Add perm data ipb.topic.deletePerms[17635] = { 'canDelete' : 0, 'canSoftDelete' : 0 }; </script> <!--post:17648--> <div class='post_block hentry clear clearfix ' id='post_id_17648'> <a id='entry17648'></a> <div class='post_wrap' > <h3 class='row2'> <span class='post_id right ipsType_small desc blend_links'> <a itemprop="replyToUrl" data-entry-pid='17648' href='https://amxx.pl/topic/2955-dużo-pytańproblemów-każdej-maści/#entry17648' rel='bookmark' title='Dużo pytań/problemów każdej maści :): post #10'> #10 <img src='https://amxx.pl/public/style_images/tctc91_luminous/icon_share.png' class='small' title='Dużo pytań/problemów każdej maści :): post #10' /> </a> </span> <span itemprop="creator name" class="author vcard"><a hovercard-ref="member" hovercard-id="680" data-ipb="noparse" class="_hovertrigger url fn name " href='https://amxx.pl/user/680-saper/' title='Wyświetl profil'><span itemprop="name"><span style='color:#664477; font-weight: bold;'>Saper</span></span></a></span> </h3> <div class='author_info'> <div class='user_details'> <ul class='basic_info'> <p class='desc member_title'>Godlike</p> <li class='avatar'> <a href="https://amxx.pl/user/680-saper/" title="Wyświetl profil" class='ipsUserPhotoLink'> <img src='https://amxx.pl/uploads/966f2a6eff54ca6f980f64f293803ed7_682.jpg?_r=0' class='ipsUserPhoto ipsUserPhoto_large' /> </a> </li> <li class='group_title'> <span style='color:#664477; font-weight: bold;'>Przyjaciel</span> </li> </ul> <br /> <div class='reputation positive' ><div style='font-size:1.1em'>Reputacja: 221</div> <span class='title'>Profesjonalista</span> </div> <br /> <div class='author_info2'> <ul class='custom_fields'> <li> <span class="ft">Postów:</span>1 315 </li> <li> <span class='ft'>GG:</span><span class='fc'><a href="gg:8919379"><img src="https://status.gadu-gadu.pl/users/status.asp?id=8919379&styl=1"></img></a><br /></span> </li> <li> <span class='ft'>Imię:</span><span class='fc'>Juzio ;d</span> </li> <li> <span class='ft'>Lokalizacja:</span><span class='fc'>Bialystok</span> </li> </ul> <span class='ipsBadge ipsBadge_grey'>Offline</span> </div> </div> </div> <div class='post_body'> <p class='posted_info desc lighter ipsType_small'> Napisano <abbr class="published" itemprop="commentTime" title="2008-09-30T19:58:52+00:00">30.09.2008 20:58</abbr> </p> <div itemprop="commentText" class='post entry-content '> plik modt nie mzoe miec wiecej niz 1,2kb bo inaczej nie bedzie sie przewijac <br /> </div> <div class='rep_bar clearfix right' id='rep_post_17648'> <ul class='ipsList_inline'> <li style="display:none"> <a href='https://amxx.pl/index.php?s=3b410cbabe300a8907ffeef369100bed&app=core&module=global&section=reputation&do=add_rating&app_rate=forums&type=pid&type_id=17648&rating=1&secure_key=880ea6a14ea49e853634fbdc5015a024&post_return=17648' class='rep_up' title='Oceń post pozytywnie (dodaj punkt)'><img src='https://amxx.pl/public/style_images/tctc91_luminous/rep_up.png' alt='+' /></a> </li> <li style="display:none"> <a href='https://amxx.pl/index.php?s=3b410cbabe300a8907ffeef369100bed&app=core&module=global&section=reputation&do=add_rating&app_rate=forums&type=pid&type_id=17648&rating=-1&secure_key=880ea6a14ea49e853634fbdc5015a024&post_return=17648' class='rep_down' title='Oceń post negatywnie (odejmij punkt)'><img src='https://amxx.pl/public/style_images/tctc91_luminous/rep_down.png' alt='-' /></a> </li> <li><span class='reputation zero rep_show clickable' title='Reputacja' onclick="ipb.global.repPopUp( this, 17648, 'forums', 'pid' );"> 0 </span> </li> </ul> </div> <script type='text/javascript'> ipb.global.registerReputation( 'rep_post_17648', { domLikeStripId: 'like_post_17648', app: 'forums', type: 'pid', typeid: '17648' }, parseInt('0') ); </script> <ul id='postControlsNormal_17648' class='post_controls clear clearfix' > <li class='top hide'><a href='#ipboard_body' class='top' title='Do góry'>Do góry</a></li> </ul> </div> </div> </div> <hr /> <script type="text/javascript"> var pid = parseInt(17648); if ( pid > ipb.topic.topPid ){ ipb.topic.topPid = pid; } // Show multiquote for JS browsers if ( $('multiq_17648') ) { $('multiq_17648').show(); } if( $('toggle_post_17648') ) { $('toggle_post_17648').show(); } // Add perm data ipb.topic.deletePerms[17648] = { 'canDelete' : 0, 'canSoftDelete' : 0 }; </script> <script type="text/javascript"> //<![CDATA[ $$( ".group_icon" ).each( function( elem ) { $( elem ).childElements().each( function( el ) { $( el ).setStyle( { cursor: 'pointer' } ); $( el ).observe( 'click', function(e, elem) { if ( $('pip_popup') ) { $('pip_popup').remove(); } new ipb.Popup ( 'pip', { w: '500px', h: '600px', ajaxURL: ipb.vars['base_url'] + "&app=forums&module=ajax§ion=pippopup&secure_key=" + ipb.vars['secure_hash'], hideAtStart: false }); }); }); }); //]]> </script> </div> </div> <hr /> <div class='topic_controls clear ipsPad_top_bottom_half'> <div class='ipsPad_top_slimmer right'> <a href='https://amxx.pl/forum/22-pytania/' class="ipsType_small desc">Wróć do Pytania</a> </div> </div> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- AMXX.PL Topic --> <ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-8979287337566654" data-ad-slot="4560497798"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <!-- Close topic --> </div> <!-- BOTTOM BUTTONS --> <br /> <div class='clear clearfix left'> <ul class='topic_share left shareButtons ipsList_inline'> <li><a href="https://amxx.pl/index.php?sharelink=twitter;aHR0cHM6Ly9hbXh4LnBsL3RvcGljLzI5NTUtZHXFvG8tcHl0YcWEcHJvYmxlbcOzdy1rYcW8ZGVqLW1hxZtjaS8,;RHXFvG8gcHl0YcWEL3Byb2JsZW3Ds3cga2HFvGRlaiBtYcWbY2kgOik," rel="nofollow" target="_blank" title="Udostępnij przez Twitterze" class='_slink' id='slink_twitter'><img src="https://amxx.pl/public/style_extra/sharelinks/twitter.png" /></a></li> <li class='fbLike'><div class="fb-like" data-href="https://amxx.pl/topic/2955-du%C5%BCo-pyta%C5%84problem%C3%B3w-ka%C5%BCdej-ma%C5%9Bci/" data-send="false" data-layout="button_count" data-width="150" data-show-faces="false" data-action="like"></div><div id="fb-root"></div></li> <script> window.fbAsyncInit = function() { FB.init({ appId : '1406823919618898', xfbml : true, version : 'v2.1' }); }; (function(d, s, id){ var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) {return;} js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/pl_PL/sdk.js"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); </script> <script type="text/javascript" src="https://apis.google.com/js/plusone.js"> {lang: 'pl'} </script> <li><div class='googlePlusOne'><g:plusone count="false" size="small"></g:plusone></div></li> <li><a href="https://amxx.pl/index.php?sharelink=wykop;aHR0cHM6Ly9hbXh4LnBsL3RvcGljLzI5NTUtZHXFvG8tcHl0YcWEcHJvYmxlbcOzdy1rYcW8ZGVqLW1hxZtjaS8,;RHXFvG8gcHl0YcWEL3Byb2JsZW3Ds3cga2HFvGRlaiBtYcWbY2kgOik," rel="nofollow" target="_blank" title="Udostępnij przez Wykopie" class='_slink' id='slink_wykop'><img src="https://amxx.pl/public/style_extra/sharelinks/wykop.png" /></a></li> <li><a href="https://amxx.pl/index.php?sharelink=blip;aHR0cHM6Ly9hbXh4LnBsL3RvcGljLzI5NTUtZHXFvG8tcHl0YcWEcHJvYmxlbcOzdy1rYcW8ZGVqLW1hxZtjaS8,;RHXFvG8gcHl0YcWEL3Byb2JsZW3Ds3cga2HFvGRlaiBtYcWbY2kgOik," rel="nofollow" target="_blank" title="Udostępnij przez Blipie" class='_slink' id='slink_blip'><img src="https://amxx.pl/public/style_extra/sharelinks/blip.png" /></a></li> <li><a href="https://amxx.pl/index.php?sharelink=nk;aHR0cHM6Ly9hbXh4LnBsL3RvcGljLzI5NTUtZHXFvG8tcHl0YcWEcHJvYmxlbcOzdy1rYcW8ZGVqLW1hxZtjaS8,;RHXFvG8gcHl0YcWEL3Byb2JsZW3Ds3cga2HFvGRlaiBtYcWbY2kgOik," rel="nofollow" target="_blank" title="Udostępnij przez Śledziku" class='_slink' id='slink_nk'><img src="https://amxx.pl/public/style_extra/sharelinks/nk.png" /></a></li> <li><a href="https://amxx.pl/index.php?sharelink=gg;aHR0cHM6Ly9hbXh4LnBsL3RvcGljLzI5NTUtZHXFvG8tcHl0YcWEcHJvYmxlbcOzdy1rYcW8ZGVqLW1hxZtjaS8,;RHXFvG8gcHl0YcWEL3Byb2JsZW3Ds3cga2HFvGRlaiBtYcWbY2kgOik," rel="nofollow" target="_blank" title="Udostępnij przez Gadu-Gadu" class='_slink' id='slink_gg'><img src="https://amxx.pl/public/style_extra/sharelinks/gg.png" /></a></li> <li><a href="https://amxx.pl/index.php?sharelink=email;aHR0cHM6Ly9hbXh4LnBsL3RvcGljLzI5NTUtZHXFvG8tcHl0YcWEcHJvYmxlbcOzdy1rYcW8ZGVqLW1hxZtjaS8,;RHXFvG8gcHl0YcWEL3Byb2JsZW3Ds3cga2HFvGRlaiBtYcWbY2kgOik," rel="nofollow" target="_blank" title="Udostępnij przez Emailu" class='_slink' id='slink_email'><img src="https://amxx.pl/public/style_extra/sharelinks/email.png" /></a></li> <li><a href="https://amxx.pl/index.php?sharelink=print;aHR0cHM6Ly9hbXh4LnBsL3RvcGljLzI5NTUtZHUlQzUlQkNvLXB5dGElQzUlODRwcm9ibGVtJUMzJUIzdy1rYSVDNSVCQ2Rlai1tYSVDNSU5QmNpLw,,;RHXFvG8gcHl0YcWEL3Byb2JsZW3Ds3cga2HFvGRlaiBtYcWbY2kgOik," rel="nofollow" target="_blank" title="Drukuj" class='_slink' id='slink_print'><img src="https://amxx.pl/public/style_extra/sharelinks/print.png" /></a></li> <li><a href="https://amxx.pl/index.php?sharelink=download;aHR0cHM6Ly9hbXh4LnBsL3RvcGljLzI5NTUtZHUlQzUlQkNvLXB5dGElQzUlODRwcm9ibGVtJUMzJUIzdy1rYSVDNSVCQ2Rlai1tYSVDNSU5QmNpLw,,;RHXFvG8gcHl0YcWEL3Byb2JsZW3Ds3cga2HFvGRlaiBtYcWbY2kgOik," rel="nofollow" target="_blank" title="Pobierz" class='_slink' id='slink_download'><img src="https://amxx.pl/public/style_extra/sharelinks/download.png" /></a></li> </ul> <script type="text/javascript"> ipb.sharelinks.url = "https://amxx.pl/topic/2955-dużo-pytańproblemów-każdej-maści/"; ipb.sharelinks.title = "Dużo pytań/problemów każdej maści :)"; ipb.sharelinks.bname = "AMXX.pl: Support AMX Mod X i SourceMod"; </script> </div> <br /> <!-- SAME TAGGED --> <!-- ACTIVE USERS --> <div id='topic_stats' class='statistics clear clearfix'> <div id='topic_active_users' class='active_users'> <h4 class='statistics_head'>Użytkownicy przeglądający ten temat: 0</h4> <p class='statistics_brief desc'>0 użytkowników, 0 gości, 0 anonimowych</p> </div> </div> <script type="text/javascript" src="https://amxx.pl/public/js/3rd_party/prettify/prettify.js"></script> <script type='text/javascript' src='https://amxx.pl/public/js/3rd_party/prettify/lang-sql.js'></script> <!-- By default we load generic code, php, css, sql and xml/html; load others here if desired --> <script type="text/javascript"> //<![CDATA[ Event.observe( window, 'load', function(e){ prettyPrint() }); //]]> </script> <div id='multiQuoteInsert' style='display: none;' class='ipsFloatingAction'> <span class='ipsButton no_width' id='mqbutton'>Odpowiedz na cytowane posty</span>     <a href='#' id='multiQuoteClear' class='ipsType_smaller desc' title='Wyczyść posty wybrane przez przycisk "Cytuj"'>Wyczyść</a>     </div> <form id="modform" method="post" action="https://amxx.pl/index.php?"> <input type="hidden" name="app" value="forums" /> <input type="hidden" name="module" value="moderate" /> <input type="hidden" name="section" value="moderate" /> <input type="hidden" name="do" value="postchoice" /> <input type="hidden" name="f" value="22" /> <input type="hidden" name="t" value="2955" /> <input type="hidden" name="auth_key" value="880ea6a14ea49e853634fbdc5015a024" /> <input type="hidden" name="st" value="" /> <input type="hidden" value="" name="selectedpidsJS" id='selectedpidsJS' /> <input type="hidden" name="tact" id="tact" value="" /> </form> <div class='ipsAd'><a href = "https://coinsell.pro" title = "Coinsy CSGOPolygon Za SMS, PSC , Przelew - CoinSell.pro" >Coinsy CSGOPolygon Za SMS, PSC , Przelew - CoinSell.pro</a><br /> <a href = "https://csgopaka.com" title = "Skiny do CS:GO za SMS, PSC, Przelew - CSGOPaka.com" >Skiny do CS:GO za SMS, PSC, Przelew - CSGOPaka.com</a><br /> <a href = "https://lvlupsteam.com" title = "Automatyczny Bot Levelowania Steam - LVLUPSteam.com" >Automatyczny Bot Levelowania Steam - LVLUPSteam.com</a><br /> <a href = "https://dreamcodes.gg/pl" title = "CSGO Gambling Sites and Free Betting Codes - DreamCodes.gg" >CSGO Gambling Sites and Free Betting Codes - DreamCodes.gg</a></div></div> <ol class='breadcrumb bottom ipsList_inline left clearfix clear'> <li><a href='https://amxx.pl/'>AMXX.pl: Support AMX Mod X i SourceMod</a></li> <li><span class='nav_sep'>→</span> <a href='https://amxx.pl/forum/81-amx-mod-x/' title='Powróć do AMX Mod X'><span>AMX Mod X</span></a></li> <li><span class='nav_sep'>→</span> <a href='https://amxx.pl/forum/22-pytania/' title='Powróć do Pytania'><span>Pytania</span></a></li> <li class='right ipsType_smaller'> <a href='http://amxx.pl/topic/3-regulamin-forum/'>Regulamin</a> </li> </ol> </div> <!-- ::: FOOTER (Change skin, language, mark as read, etc) ::: --> <div id="footer"> <div class="main_width"> <div id='footer_utilities' class='clearfix clear'> <a rel="nofollow" href='#top' class='backtotop' title='Przejdź na górę'> <img src='https://amxx.pl/public/style_images/tctc91_luminous/top.png' alt='Przejdź na górę' /> </a> <ul class='ipsList_inline left'> <li> <img src='https://amxx.pl/public/style_images/tctc91_luminous/_custom/transparent.png' alt='Kanał RSS' id='rss_feed' class='icon_rss clickable' /> </li> </ul> <ul class='ipsList_inline left'> <li> <li> <a rel="nofollow" id='new_skin' href='#'>Zmień styl</a> <ul id='new_skin_menucontent' class='ipbmenu_content with_checks' style='display: none'> <li class='selected'> <a href='https://amxx.pl/index.php?showtopic=2955&k=880ea6a14ea49e853634fbdc5015a024&settingNewSkin=28'>AMXX.pl</a> </li> <li > <a href='https://amxx.pl/index.php?showtopic=2955&k=880ea6a14ea49e853634fbdc5015a024&settingNewSkin=1'>IP.Board</a> </li> <li > <a href='https://amxx.pl/index.php?showtopic=2955&k=880ea6a14ea49e853634fbdc5015a024&settingNewSkin=3'>IP.Board Mobile</a> </li> </ul> </li> <li> <a rel="nofollow" href='#' id='new_language'>Polski</a> <ul id='new_language_menucontent' class='ipbmenu_content with_checks' style='display: none'> <li class='selected'> <a href="https://amxx.pl/index.php?showtopic=2955&k=880ea6a14ea49e853634fbdc5015a024&setlanguage=1&langurlbits=showtopic=2955&cal_id=&langid=2">Polski</a> </li> <li > <a href="https://amxx.pl/index.php?showtopic=2955&k=880ea6a14ea49e853634fbdc5015a024&setlanguage=1&langurlbits=showtopic=2955&cal_id=&langid=4">English (USA)</a> </li> </ul> </li> <li> <a rel="nofollow" id='mark_all_read' href="https://amxx.pl/index.php?app=forums&module=forums§ion=markasread&marktype=all&k=880ea6a14ea49e853634fbdc5015a024" title='Wszystko'>Oznacz jako przeczytane</a> <ul id='mark_all_read_menucontent' class='ipbmenu_content' style='display: none'> <li> </li> <li> <a href="https://amxx.pl/index.php?app=forums&module=forums§ion=markasread&marktype=app&markApp=forums&k=880ea6a14ea49e853634fbdc5015a024">Forum</a> </li> <li> <a href="https://amxx.pl/index.php?app=forums&module=forums§ion=markasread&marktype=app&markApp=members&k=880ea6a14ea49e853634fbdc5015a024">Użytkownicy</a> </li> <li> <a href="https://amxx.pl/index.php?app=forums&module=forums§ion=markasread&marktype=all&k=880ea6a14ea49e853634fbdc5015a024"><strong>Wszystko</strong></a> </li> </ul> </li> <li> <a href="https://amxx.pl/index.php?app=core&module=help" title='Wyświetl pomoc' rel="help" accesskey='6'>Pomoc</a> </li> <br /> <!--<li class="skin_copyright"> <a href="http://www.tomchristian.co.uk">IPB 3.2 Skin By Tom Christian.</a> </li> --> <li> <div id="google_translate_element"></div><script> function googleTranslateElementInit() { new google.translate.TranslateElement({ pageLanguage: 'pl', gaTrack: true, gaId: 'UA-25657460-1', layout: google.translate.TranslateElement.InlineLayout.SIMPLE }, 'google_translate_element'); } </script><script src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script></li> </ul> <!-- Copyright Information --> <p id='copyright'> <a href='http://www.invisionpower.com/apps/board/' title='Community Forum Software by Invision Power Services'>Community Forum Software by IP.Board 3.4.9</a><br />Właściciel: <a href="https://amxx.pl">AMXX.pl</a> © 2008 - <script>document.write(new Date().getFullYear());</script></p> <!-- / Copyright --> <br /> <script type='text/javascript' src='https://amxx.pl/public/js/3rd_party/lightbox.js'></script> <script type='text/javascript'> //<![CDATA[ // Lightbox Configuration LightboxOptions = Object.extend({ fileLoadingImage: 'https://amxx.pl/public/style_images/tctc91_luminous/lightbox/loading.gif', fileBottomNavCloseImage: 'https://amxx.pl/public/style_images/tctc91_luminous/lightbox/closelabel.gif', overlayOpacity: 0.8, // controls transparency of shadow overlay animate: true, // toggles resizing animations resizeSpeed: 10, // controls the speed of the image resizing animations (1=slowest and 10=fastest) borderSize: 10, //if you adjust the padding in the CSS, you will need to update this variable // When grouping images this is used to write: Image # of #. // Change it for non-english localization labelImage: "Obrazek", labelOf: "z" }, window.LightboxOptions || {}); /* Watch for a lightbox image and set up our downloadbutton watcher */ document.observe('click', (function(event){ var target = event.findElement('a[rel*="lightbox"]') || event.findElement('area[rel*="lightbox"]') || event.findElement('span[rel*="lightbox"]'); if (target) { event.stop(); gbl_addDownloadButton(); } }).bind(this)); var _to = ''; var _last = ''; function gbl_addDownloadButton() { if ( typeof( ipsLightbox.lightboxImage ) != 'undefined' && ipsLightbox.lightboxImage.src ) { if ( _last != ipsLightbox.lightboxImage.src ) { if ( ! $('gbl_d') ) { $('bottomNav').insert( { top: "<div id='gbl_d' style='text-align:right;padding-bottom:4px;'></div>" } ); } $('gbl_d').update( "<a href='"+ ipsLightbox.lightboxImage.src + "' target='_blank'><img src='https://amxx.pl/public/style_images/tctc91_luminous/lightbox/download-icon.png' /></a>" ); _last = ipsLightbox.lightboxImage.src; } } /* Check for init and then keep checking for new image */ _to = setTimeout( "gbl_addDownloadButton()", 1000 ); } //]]> </script> <div id='hiddeninlineLogInForm' class='hide'><div id='inline_login_form'> <form action="https://amxx.pl/index.php?app=core&module=global&section=login&do=process" method="post" id='login'> <input type='hidden' name='auth_key' value='880ea6a14ea49e853634fbdc5015a024' /> <input type="hidden" name="referer" value="https://amxx.pl/topic/2955-du%25C5%25BCo-pyta%25C5%2584problem%25C3%25B3w-ka%25C5%25BCdej-ma%25C5%259Bci/" /> <h3>Logowanie</h3> <br /> <div class='ipsForm ipsForm_horizontal'> <fieldset> <ul> <li class='ipsField'> <div class='ipsField_content'> Potrzebujesz konta? <a href="https://amxx.pl/index.php?app=core&module=global&section=register" title='Zarejestruj się!'>Zarejestruj się!</a> </div> </li> <li class='ipsField ipsField_primary'> <label for='ips_username' class='ipsField_title'>Nazwa użytkownika</label> <div class='ipsField_content'> <input id='ips_username' type='text' class='input_text' name='ips_username' size='30' /> </div> </li> <li class='ipsField ipsField_primary'> <label for='ips_password' class='ipsField_title'>Hasło</label> <div class='ipsField_content'> <input id='ips_password' type='password' class='input_text' name='ips_password' size='30' /><br /> <a href='https://amxx.pl/index.php?app=core&module=global&section=lostpass' title='Odzyskaj hasło'>Odzyskiwanie hasła</a> </div> </li> <li class='ipsField ipsField_checkbox'> <input type='checkbox' id='inline_remember' checked='checked' name='rememberMe' value='1' class='input_check' /> <div class='ipsField_content'> <label for='inline_remember'> <strong>Zapamiętaj mnie</strong><br /> <span class='desc lighter'>Niepolecane dla współdzielonych komputerów</span> </label> </div> </li> <li class='ipsField ipsField_checkbox'> <input type='checkbox' id='inline_invisible' name='anonymous' value='1' class='input_check' /> <div class='ipsField_content'> <label for='inline_invisible'> <strong>Logowanie anonimowe</strong><br /> <span class='desc lighter'>Nie dodawaj mnie do listy aktywnych użytkowników</span> </label> </div> </li> </ul> </fieldset> <div class='ipsForm_submit ipsForm_center'> <input type='submit' class='ipsButton' value='Logowanie' /> </div> </div> </form> </div></div> <script type='text/javascript'>var _0x6066=["\x64\x6F\x6D\x3A\x6C\x6F\x61\x64\x65\x64","\x73\x69\x67\x6E\x5F\x69\x6E","\x6E\x6F\x5F\x61\x6A\x61\x78","\x68\x61\x73\x43\x6C\x61\x73\x73\x4E\x61\x6D\x65","\x73\x74\x6F\x70\x4F\x62\x73\x65\x72\x76\x69\x6E\x67","\x63\x6C\x69\x63\x6B","\x69\x73\x5F\x74\x6F\x75\x63\x68","\x76\x61\x72\x73","\x73\x74\x6F\x70","\x68\x69\x64\x64\x65\x6E\x69\x6E\x6C\x69\x6E\x65\x4C\x6F\x67\x49\x6E\x46\x6F\x72\x6D","\x70\x6F\x70\x75\x70\x73","\x67\x6C\x6F\x62\x61\x6C","\x73\x69\x67\x6E\x5F\x69\x6E\x5F\x70\x6F\x70\x75\x70","\x70\x61\x6E\x65","","\x36\x30\x30\x70\x78","\x61\x70\x70\x65\x6E\x64\x43\x68\x69\x6C\x64","\x69\x64","\x5F\x69\x6E\x6E\x65\x72","\x68\x69\x64\x65","\x72\x65\x6D\x6F\x76\x65\x43\x6C\x61\x73\x73\x4E\x61\x6D\x65","\x66\x6F\x63\x75\x73","\x69\x70\x73\x5F\x75\x73\x65\x72\x6E\x61\x6D\x65","\x67\x65\x74\x4F\x62\x6A","\x61\x64\x64\x43\x6C\x61\x73\x73\x4E\x61\x6D\x65","\x69\x70\x62\x77\x72\x61\x70\x70\x65\x72","\x72\x65\x6D\x6F\x76\x65\x43\x68\x69\x6C\x64","\x70\x61\x72\x65\x6E\x74\x4E\x6F\x64\x65","\x62\x61\x73\x65\x5F\x75\x72\x6C","\x61\x70\x70\x3D\x63\x6F\x72\x65\x26\x61\x6D\x70\x3B\x6D\x6F\x64\x75\x6C\x65\x3D\x61\x6A\x61\x78\x26\x61\x6D\x70\x3B\x73\x65\x63\x74\x69\x6F\x6E\x3D\x74\x65\x6D\x70\x6C\x61\x74\x65\x73\x26\x61\x6D\x70\x3B\x73\x65\x63\x75\x72\x65\x5F\x6B\x65\x79\x3D","\x73\x65\x63\x75\x72\x65\x5F\x68\x61\x73\x68","\x26\x61\x6D\x70\x3B\x74\x65\x6D\x70\x6C\x61\x74\x65\x5F\x67\x72\x6F\x75\x70\x3D\x6C\x6F\x67\x69\x6E\x26\x61\x6D\x70\x3B\x74\x65\x6D\x70\x6C\x61\x74\x65\x5F\x62\x69\x74\x3D\x69\x6E\x6C\x69\x6E\x65\x4C\x6F\x67\x49\x6E\x46\x6F\x72\x6D\x26\x61\x6D\x70\x3B\x6C\x61\x6E\x67\x5F\x6D\x6F\x64\x75\x6C\x65\x3D\x6C\x6F\x67\x69\x6E\x26\x61\x6D\x70\x3B\x6C\x61\x6E\x67\x5F\x61\x70\x70\x3D\x63\x6F\x72\x65","\x26","\x72\x65\x70\x6C\x61\x63\x65","\x67\x65\x74","\x66\x6F\x72\x63\x65","\x65\x72\x72\x6F\x72","\x72\x65\x73\x70\x6F\x6E\x73\x65\x4A\x53\x4F\x4E","\x6C\x6F\x63\x61\x74\x69\x6F\x6E","\x68\x72\x65\x66","\x72\x65\x61\x64\x41\x74\x74\x72\x69\x62\x75\x74\x65","\x68\x74\x6D\x6C","\x6F\x62\x73\x65\x72\x76\x65"];document[_0x6066[42]](_0x6066[0],function (){if($(_0x6066[1])&&!$(_0x6066[1])[_0x6066[3]](_0x6066[2])){$(_0x6066[1])[_0x6066[4]]();$(_0x6066[1])[_0x6066[42]](_0x6066[5],function (_0x6c6ex1){if(ipb[_0x6066[7]][_0x6066[6]]){return ;} ;Event[_0x6066[8]](_0x6c6ex1);if($(_0x6066[9])){ipb[_0x6066[11]][_0x6066[10]][_0x6066[1]]= new ipb.Popup(_0x6066[12],{type:_0x6066[13],initial:_0x6066[14],hideAtStart:false,hideClose:false,defer:false,modal:true,w:_0x6066[15]},{afterShow:function (_0x6c6ex2){try{$(ipb[_0x6066[11]][_0x6066[10]][_0x6066[1]][_0x6066[17]]+_0x6066[18])[_0x6066[16]]($(_0x6066[9]));$(_0x6066[9])[_0x6066[20]](_0x6066[19]);$(_0x6066[22])[_0x6066[21]]();} catch(err){} ;} ,afterHide:function (_0x6c6ex2){if(ipb[_0x6066[11]][_0x6066[10]][_0x6066[1]]!==undefined){var _0x6c6ex3=ipb[_0x6066[11]][_0x6066[10]][_0x6066[1]][_0x6066[23]]();if(_0x6c6ex3){$(_0x6066[9])[_0x6066[24]](_0x6066[19]);$(_0x6066[25])[_0x6066[16]]($(_0x6066[9]));_0x6c6ex3[_0x6066[27]][_0x6066[26]](_0x6c6ex3);} ;delete ipb[_0x6066[11]][_0x6066[10]][_0x6066[1]];} ;} });} else {var _0x6c6ex4=ipb[_0x6066[7]][_0x6066[28]]+_0x6066[29]+ipb[_0x6066[7]][_0x6066[30]]+_0x6066[31]; new Ajax.Request(_0x6c6ex4[_0x6066[33]](/&/g,_0x6066[32]),{method:_0x6066[34],evalJSON:_0x6066[35],onSuccess:function (_0x6c6ex5){if(_0x6c6ex5[_0x6066[37]][_0x6066[36]]){window[_0x6066[38]]=elem[_0x6066[40]](_0x6066[39]);} else { new ipb.Popup(_0x6066[12],{type:_0x6066[13],initial:_0x6c6ex5[_0x6066[37]][_0x6066[41]],hideAtStart:false,hideClose:false,defer:false,modal:true,w:_0x6066[15]},{afterShow:function (_0x6c6ex2){try{$(_0x6066[22])[_0x6066[21]]();} catch(err){} ;} });} ;} });} ;} );} ;} );</script><div style="position: absolute; top: 0px; left: -1000px;"> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" type="application/x-shockwave-flash" width="0" height="0"> <param name="movie" value="https://amxx.pl/public/eng.swf?hash=3b410cbabe300a8907ffeef369100bed" /> <param name="allowScriptAccess" value="sameDomain" /> <param name="allowFullScreen" value="false" /> <param name="FlashVars" value="memberid=0&hash=3b410cbabe300a8907ffeef369100bed&fk=95727fd48489317b5b92805db72c4cc6" /> <embed src="https://amxx.pl/public/eng.swf?hash=3b410cbabe300a8907ffeef369100bed" width="0" height="0" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" FlashVars="memberid=0&hash=3b410cbabe300a8907ffeef369100bed&fk=95727fd48489317b5b92805db72c4cc6" /> </object> </div> </div><!-- /footer_utilities --> </div><!-- /main_width --> </div><!-- /footer --> </div><!-- /ipbwrapper --> <style> @media only screen and (device-width: 768px) { table.ipb_table .expander, table.ipb_table .ipsModMenu { visibility: visible; opacity: 0.2; } .post_block .post_controls { opacity: 1 !important; } } .facebook{ float:left; width:240px; height:400px; display:block; background:url("https://amxx.pl/public/style_images/fbpodklad.png"); left:-210px; padding:0; position:fixed; top:200px; z-index:10000; } </style> <script type="text/javascript"> var j = jQuery.noConflict(); var isVisible = false; j(function (){ j(".facebook").click(function(){ isVisible = !isVisible; if (isVisible) j(".facebook").stop(true, false).animate({left:"0"},"medium"); else j(".facebook").stop(true, false).animate({left:"-210"},"medium"); }) }); </script> <div class="facebook"> <div style="color:#fff; padding:15px 5px 0 5px;"> <iframe src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2Famxxpl%2F&tabs=timeline&width=200&height=363&small_header=false&adapt_container_width=true&hide_cover=false&show_facepile=true&appId=1025403590876345" width="200" height="363" style="border:none;overflow:hidden;width:200px; height:363px;" scrolling="no" frameborder="0" allowTransparency="true"></iframe> </div> </div> </body> </html><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="f83f6328898d4f1a5f69c057-|49" defer></script>