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

Plugin HUD podobny do BF2 Rank Mod


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

#1 Zamahowiec

    Banned

  • Zbanowany

Reputacja: 4
Nowy

  • Postów:47
  • Lokalizacja:PoLsKa
Offline

Napisano 23.01.2013 23:50

Witam otóz szukam takiego pluginu HUD co jak sie najedzie celownikiem na kogos z druzyny to widac to co na Screenie :

http://imageshack.us...g/827/hudof.jpg

Ja szukam pluginu co pokazuje to co zaznaczylem na Screenie (bez rangi z bf2 rank mod ).Będe wdzięczny za Pomoc :)

Użytkownik Zamahowiec edytował ten post 23.01.2013 23:52

76561198065710424.pngAddFriend.png


#2 AztekHQS

    Banned

  • Zbanowany

Reputacja: 98
Zaawansowany

  • Postów:279
  • Lokalizacja:Polska
Offline

Napisano 24.01.2013 00:23

Użyj mojego kodu który jest w przykładzie: http://amxx.pl/dokumentacja/f210/1

Aby zmienić pozycję hud musisz zmienić te wartości: -1.0, 0.90


-1.0 - x
0.90 - y

Najlepszy serwer JailBreak!
IP: 31.186.83.208:27043
Dołączona grafika

#3 Zamahowiec

    Banned

  • Autor tematu
  • Zbanowany

Reputacja: 4
Nowy

  • Postów:47
  • Lokalizacja:PoLsKa
Offline

Napisano 24.01.2013 01:02

Nie o to mi chodzi tylko o taki plugin co pokazałem na Screenie on jest o ile sie nie myle na cs-hanas only dd2 a jezeli nie ma takiego pluginu to mógłbyś przerobic swoj kod zeby pokazywal te dane co zaznaczylem na screenie a nie sam nick i HP :// :) :)

Użytkownik Zamahowiec edytował ten post 24.01.2013 01:05

76561198065710424.pngAddFriend.png


#4 AztekHQS

    Banned

  • Zbanowany

Reputacja: 98
Zaawansowany

  • Postów:279
  • Lokalizacja:Polska
Offline

Napisano 24.01.2013 03:19

Przetestuj:

#include <amxmodx>

#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "AztekHQS"

new hud;

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

register_event("StatusValue", "StatusShow", "be", "1=2", "2!0");
register_event("StatusValue", "StatusShow", "be", "1=1", "2=0");

hud = CreateHudSyncObj();
}

public StatusShow(id) {
switch(read_data(1)) {
case(1): ClearSyncHud(id, hud);
case(2): {
new pid, i, nick[32], bronie[32], ilebroni, nazwabroni[33];
get_user_weapons(pid, bronie, ilebroni);
get_user_name(pid, nick, 31);

pid = read_data(2);

for(i = 0; i < ilebroni; i++) {
get_weaponname(bronie[i], nazwabroni, 32);
replace_all(nazwabroni, 32, "weapon_", "");
}
set_hudmessage(100, 255, 0, -1.0, 0.90, 0, 0.01, 60.0, 0.01, 0.01, -1);
ShowSyncHudMsg(id, hud, "%s^n%d HP / %d AP / %s", nick, get_user_health(pid), get_user_armor(pid), nazwabroni);
}
}
}

Najlepszy serwer JailBreak!
IP: 31.186.83.208:27043
Dołączona grafika

#5 Zamahowiec

    Banned

  • Autor tematu
  • Zbanowany

Reputacja: 4
Nowy

  • Postów:47
  • Lokalizacja:PoLsKa
Offline

Napisano 24.01.2013 10:51

Niestety nie działa nic nigdzie Nie Wyśietla:// Proszę o pomoc bo zależy mi na tym pluginie :D

76561198065710424.pngAddFriend.png


#6 AztekHQS

    Banned

  • Zbanowany

Reputacja: 98
Zaawansowany

  • Postów:279
  • Lokalizacja:Polska
Offline

Napisano 24.01.2013 11:19

Ustaw w server.cfg mp_playerid "2"
Najlepszy serwer JailBreak!
IP: 31.186.83.208:27043
Dołączona grafika

#7 Zamahowiec

    Banned

  • Autor tematu
  • Zbanowany

Reputacja: 4
Nowy

  • Postów:47
  • Lokalizacja:PoLsKa
Offline

Napisano 24.01.2013 11:35

Nadal nic nie wyświetla :( Proszę o POMOC :)

76561198065710424.pngAddFriend.png


#8 AztekHQS

    Banned

  • Zbanowany

Reputacja: 98
Zaawansowany

  • Postów:279
  • Lokalizacja:Polska
Offline

Napisano 24.01.2013 11:44

Logi?
Najlepszy serwer JailBreak!
IP: 31.186.83.208:27043
Dołączona grafika

#9 Zamahowiec

    Banned

  • Autor tematu
  • Zbanowany

Reputacja: 4
Nowy

  • Postów:47
  • Lokalizacja:PoLsKa
Offline

Napisano 24.01.2013 11:53

Logi?


Wklejka f9zbw6ex414o(Logi) dodana przez dasiek, 24.01.2013 13:26
1.
[alt_end_round_sounds.amxx] ---L 01/24/2013 - 08:58:58: [alt_end_round_sounds.amxx] [ Loading 8 Ts Sounds ]L 01/24/2013 - 08:58:58: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/9z16.mp3L 01/24/2013 - 08:58:58: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/10z16.mp3L 01/24/2013 - 08:58:58: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/11z16.mp3L 01/24/2013 - 08:58:58: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/12z16.mp3L 01/24/2013 - 08:58:58: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/13z16.mp3L 01/24/2013 - 08:58:58: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/14z16.mp3L 01/24/2013 - 08:58:58: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/15z16.mp3L 01/24/2013 - 08:58:58: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/16z16.mp3L 01/24/2013 - 08:58:58: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 08:59:01: [xredirect.amxx] Zaladowano serwer .:CS-Kills [BF2]:. (31.186.84.74:27703)L 01/24/2013 - 08:59:01: [xredirect.amxx] Zaladowano serwer .:CS-Kills [FFA]:. (31.186.84.74:27725)L 01/24/2013 - 08:59:01: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Only DD2 + 4FUN]:. (31.186.82.99:27730)L 01/24/2013 - 08:59:01: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Surf_Ski_2]:. (213.189.52.69:23503)L 01/24/2013 - 08:59:01: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Only Nuke/Inferno]:. (31.186.82.99:23515)L 01/24/2013 - 08:59:01: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Paint Ball]:. (31.186.84.74:21502)L 01/24/2013 - 08:59:01: [amxbans_main.amxx] [AMXBans] Received DB Info Tuple from amxbans_core: 1 | amxL 01/24/2013 - 08:59:01: [amxbans_main.amxx] [AMXBans] The server IP:PORT is: 31.186.84.74:27703L 01/24/2013 - 08:59:02: [amxbans_main.amxx] [AMXBANS DEBUG] UPDATE `amx_serverinfo` SET timestamp=1359014342,hostname='CS-Kills[BF2]@serwerygier.com',gametype='cstrike',amxban_version='1.5.1', amxban_menu=1 WHERE address = '31.186.84.74:27703'L 01/24/2013 - 08:59:02: [amxbans_main.amxx] [AMXBans] AMXBans Gm 1.5.1 jest wlaczonyL 01/24/2013 - 08:59:02: [amxbans_main.amxx] [AMXBans] Nie znaleziono powodow banow w bazie danych. Zaladowano standardowe.L 01/24/2013 - 09:17:13: -------- Mapchange to cs_747 --------L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx] Wczytywanie pliku: "addons/amxmodx/configs/roundsound.ini"L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx] [ Loading 8 CTs Sounds ]L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/1z16.mp3L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/2z16.mp3L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/3z16.mp3L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/4z16.mp3L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/5z16.mp3L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/6z16.mp3L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/7z16.mp3L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/8z16.mp3L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx] [ Loading 8 Ts Sounds ]L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/9z16.mp3L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/10z16.mp3L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/11z16.mp3L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/12z16.mp3L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/13z16.mp3L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/14z16.mp3L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/15z16.mp3L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/16z16.mp3L 01/24/2013 - 09:17:14: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 09:17:16: [xredirect.amxx] Zaladowano serwer .:CS-Kills [BF2]:. (31.186.84.74:27703)L 01/24/2013 - 09:17:16: [xredirect.amxx] Zaladowano serwer .:CS-Kills [FFA]:. (31.186.84.74:27725)L 01/24/2013 - 09:17:16: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Only DD2 + 4FUN]:. (31.186.82.99:27730)L 01/24/2013 - 09:17:16: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Surf_Ski_2]:. (213.189.52.69:23503)L 01/24/2013 - 09:17:16: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Only Nuke/Inferno]:. (31.186.82.99:23515)L 01/24/2013 - 09:17:16: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Paint Ball]:. (31.186.84.74:21502)L 01/24/2013 - 09:17:16: [amxbans_main.amxx] [AMXBans] Received DB Info Tuple from amxbans_core: 2 | amxL 01/24/2013 - 09:17:16: [amxbans_main.amxx] [AMXBans] The server IP:PORT is: 31.186.84.74:27703L 01/24/2013 - 09:17:17: [amxbans_main.amxx] [AMXBANS DEBUG] UPDATE `amx_serverinfo` SET timestamp=1359015437,hostname='CS-Kills[BF2]@serwerygier.com',gametype='cstrike',amxban_version='1.5.1', amxban_menu=1 WHERE address = '31.186.84.74:27703'L 01/24/2013 - 09:17:17: [amxbans_main.amxx] [AMXBans] AMXBans Gm 1.5.1 jest wlaczonyL 01/24/2013 - 09:17:18: [amxbans_main.amxx] [AMXBans] Nie znaleziono powodow banow w bazie danych. Zaladowano standardowe.L 01/24/2013 - 09:35:28: -------- Mapchange to de_cbble --------L 01/24/2013 - 09:35:28: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 09:35:28: [alt_end_round_sounds.amxx] Wczytywanie pliku: "addons/amxmodx/configs/roundsound.ini"L 01/24/2013 - 09:35:28: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 09:35:28: [alt_end_round_sounds.amxx] [ Loading 8 CTs Sounds ]L 01/24/2013 - 09:35:28: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/1z16.mp3L 01/24/2013 - 09:35:29: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/2z16.mp3L 01/24/2013 - 09:35:29: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/3z16.mp3L 01/24/2013 - 09:35:29: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/4z16.mp3L 01/24/2013 - 09:35:29: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/5z16.mp3L 01/24/2013 - 09:35:29: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/6z16.mp3L 01/24/2013 - 09:35:29: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/7z16.mp3L 01/24/2013 - 09:35:29: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/8z16.mp3L 01/24/2013 - 09:35:29: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 09:35:29: [alt_end_round_sounds.amxx] [ Loading 8 Ts Sounds ]L 01/24/2013 - 09:35:29: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/9z16.mp3L 01/24/2013 - 09:35:29: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/10z16.mp3L 01/24/2013 - 09:35:29: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/11z16.mp3L 01/24/2013 - 09:35:29: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/12z16.mp3L 01/24/2013 - 09:35:29: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/13z16.mp3L 01/24/2013 - 09:35:29: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/14z16.mp3L 01/24/2013 - 09:35:29: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/15z16.mp3L 01/24/2013 - 09:35:29: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/16z16.mp3L 01/24/2013 - 09:35:29: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 09:35:31: [xredirect.amxx] Zaladowano serwer .:CS-Kills [BF2]:. (31.186.84.74:27703)L 01/24/2013 - 09:35:31: [xredirect.amxx] Zaladowano serwer .:CS-Kills [FFA]:. (31.186.84.74:27725)L 01/24/2013 - 09:35:31: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Only DD2 + 4FUN]:. (31.186.82.99:27730)L 01/24/2013 - 09:35:31: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Surf_Ski_2]:. (213.189.52.69:23503)L 01/24/2013 - 09:35:31: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Only Nuke/Inferno]:. (31.186.82.99:23515)L 01/24/2013 - 09:35:31: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Paint Ball]:. (31.186.84.74:21502)L 01/24/2013 - 09:35:32: [amxbans_main.amxx] [AMXBans] Received DB Info Tuple from amxbans_core: 1 | amxL 01/24/2013 - 09:35:32: [amxbans_main.amxx] [AMXBans] The server IP:PORT is: 31.186.84.74:27703L 01/24/2013 - 09:35:33: [amxbans_main.amxx] [AMXBANS DEBUG] UPDATE `amx_serverinfo` SET timestamp=1359016533,hostname='CS-Kills[BF2]@serwerygier.com',gametype='cstrike',amxban_version='1.5.1', amxban_menu=1 WHERE address = '31.186.84.74:27703'L 01/24/2013 - 09:35:33: [amxbans_main.amxx] [AMXBans] AMXBans Gm 1.5.1 jest wlaczonyL 01/24/2013 - 09:35:33: [amxbans_main.amxx] [AMXBans] Nie znaleziono powodow banow w bazie danych. Zaladowano standardowe.L 01/24/2013 - 09:53:43: -------- Mapchange to de_airstrip --------L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx] Wczytywanie pliku: "addons/amxmodx/configs/roundsound.ini"L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx] [ Loading 8 CTs Sounds ]L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/1z16.mp3L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/2z16.mp3L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/3z16.mp3L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/4z16.mp3L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/5z16.mp3L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/6z16.mp3L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/7z16.mp3L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/8z16.mp3L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx] [ Loading 8 Ts Sounds ]L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/9z16.mp3L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/10z16.mp3L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/11z16.mp3L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/12z16.mp3L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/13z16.mp3L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/14z16.mp3L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/15z16.mp3L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/16z16.mp3L 01/24/2013 - 09:53:44: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 09:53:47: [xredirect.amxx] Zaladowano serwer .:CS-Kills [BF2]:. (31.186.84.74:27703)L 01/24/2013 - 09:53:47: [xredirect.amxx] Zaladowano serwer .:CS-Kills [FFA]:. (31.186.84.74:27725)L 01/24/2013 - 09:53:47: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Only DD2 + 4FUN]:. (31.186.82.99:27730)L 01/24/2013 - 09:53:47: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Surf_Ski_2]:. (213.189.52.69:23503)L 01/24/2013 - 09:53:47: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Only Nuke/Inferno]:. (31.186.82.99:23515)L 01/24/2013 - 09:53:47: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Paint Ball]:. (31.186.84.74:21502)L 01/24/2013 - 09:53:48: [amxbans_main.amxx] [AMXBans] Received DB Info Tuple from amxbans_core: 2 | amxL 01/24/2013 - 09:53:48: [amxbans_main.amxx] [AMXBans] The server IP:PORT is: 31.186.84.74:27703L 01/24/2013 - 09:53:49: [amxbans_main.amxx] [AMXBANS DEBUG] UPDATE `amx_serverinfo` SET timestamp=1359017629,hostname='CS-Kills[BF2]@serwerygier.com',gametype='cstrike',amxban_version='1.5.1', amxban_menu=1 WHERE address = '31.186.84.74:27703'L 01/24/2013 - 09:53:49: [amxbans_main.amxx] [AMXBans] AMXBans Gm 1.5.1 jest wlaczonyL 01/24/2013 - 09:53:49: [amxbans_main.amxx] [AMXBans] Nie znaleziono powodow banow w bazie danych. Zaladowano standardowe.L 01/24/2013 - 09:55:34: -------- Mapchange to awp_india --------L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx] Wczytywanie pliku: "addons/amxmodx/configs/roundsound.ini"L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx] [ Loading 8 CTs Sounds ]L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/1z16.mp3L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/2z16.mp3L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/3z16.mp3L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/4z16.mp3L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/5z16.mp3L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/6z16.mp3L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/7z16.mp3L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/8z16.mp3L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx] [ Loading 8 Ts Sounds ]L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/9z16.mp3L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/10z16.mp3L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/11z16.mp3L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/12z16.mp3L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/13z16.mp3L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/14z16.mp3L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/15z16.mp3L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/16z16.mp3L 01/24/2013 - 09:55:34: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 09:55:34: [xredirect.amxx] Zaladowano serwer .:CS-Kills [BF2]:. (31.186.84.74:27703)L 01/24/2013 - 09:55:34: [xredirect.amxx] Zaladowano serwer .:CS-Kills [FFA]:. (31.186.84.74:27725)L 01/24/2013 - 09:55:34: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Only DD2 + 4FUN]:. (31.186.82.99:27730)L 01/24/2013 - 09:55:34: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Surf_Ski_2]:. (213.189.52.69:23503)L 01/24/2013 - 09:55:34: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Only Nuke/Inferno]:. (31.186.82.99:23515)L 01/24/2013 - 09:55:34: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Paint Ball]:. (31.186.84.74:21502)L 01/24/2013 - 09:55:34: [amxbans_main.amxx] [AMXBans] Received DB Info Tuple from amxbans_core: 1 | amxL 01/24/2013 - 09:55:34: [amxbans_main.amxx] [AMXBans] The server IP:PORT is: 31.186.84.74:27703L 01/24/2013 - 09:55:36: [amxbans_main.amxx] [AMXBANS DEBUG] UPDATE `amx_serverinfo` SET timestamp=1359017736,hostname='CS-Kills[BF2]@serwerygier.com',gametype='cstrike',amxban_version='1.5.1', amxban_menu=1 WHERE address = '31.186.84.74:27703'L 01/24/2013 - 09:55:36: [amxbans_main.amxx] [AMXBans] AMXBans Gm 1.5.1 jest wlaczonyL 01/24/2013 - 09:55:36: [amxbans_main.amxx] [AMXBans] Nie znaleziono powodow banow w bazie danych. Zaladowano standardowe.L 01/24/2013 - 10:26:52: [amxbans_core.amxx] Login: "Zamahowiec" became an admin (account "STEAM_0:0:1077957993") (access "abcdefghijklmnopqrstu") (address "188.47.158.115") (nick "Zamahowiec") (static 0)L 01/24/2013 - 10:27:24: -------- Mapchange to cs_office --------L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx] Wczytywanie pliku: "addons/amxmodx/configs/roundsound.ini"L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx] [ Loading 8 CTs Sounds ]L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/1z16.mp3L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/2z16.mp3L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/3z16.mp3L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/4z16.mp3L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/5z16.mp3L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/6z16.mp3L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/7z16.mp3L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/8z16.mp3L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx] [ Loading 8 Ts Sounds ]L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/9z16.mp3L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/10z16.mp3L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/11z16.mp3L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/12z16.mp3L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/13z16.mp3L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/14z16.mp3L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/15z16.mp3L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/16z16.mp3L 01/24/2013 - 10:27:25: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 10:27:28: [xredirect.amxx] Zaladowano serwer .:CS-Kills [BF2]:. (31.186.84.74:27703)L 01/24/2013 - 10:27:28: [xredirect.amxx] Zaladowano serwer .:CS-Kills [FFA]:. (31.186.84.74:27725)L 01/24/2013 - 10:27:28: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Only DD2 + 4FUN]:. (31.186.82.99:27730)L 01/24/2013 - 10:27:28: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Surf_Ski_2]:. (213.189.52.69:23503)L 01/24/2013 - 10:27:28: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Only Nuke/Inferno]:. (31.186.82.99:23515)L 01/24/2013 - 10:27:28: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Paint Ball]:. (31.186.84.74:21502)L 01/24/2013 - 10:27:29: [amxbans_main.amxx] [AMXBans] Received DB Info Tuple from amxbans_core: 2 | amxL 01/24/2013 - 10:27:29: [amxbans_main.amxx] [AMXBans] The server IP:PORT is: 31.186.84.74:27703L 01/24/2013 - 10:27:29: [amxbans_core.amxx] Login: "Zamahowiec" became an admin (account "STEAM_0:0:1077957993") (access "abcdefghijklmnopqrstu") (address "188.47.158.115") (nick "Zamahowiec") (static 0)L 01/24/2013 - 10:27:29: [amxbans_core.amxx] Login: "Zamahowiec" became an admin (account "STEAM_0:0:1077957993") (access "abcdefghijklmnopqrstu") (address "188.47.158.115") (nick "Zamahowiec") (static 0)L 01/24/2013 - 10:27:30: [amxbans_main.amxx] [AMXBANS DEBUG] UPDATE `amx_serverinfo` SET timestamp=1359019650,hostname='CS-Kills[BF2]@serwerygier.com',gametype='cstrike',amxban_version='1.5.1', amxban_menu=1 WHERE address = '31.186.84.74:27703'L 01/24/2013 - 10:27:30: [amxbans_main.amxx] [AMXBans] AMXBans Gm 1.5.1 jest wlaczonyL 01/24/2013 - 10:27:31: [amxbans_main.amxx] [AMXBans] Nie znaleziono powodow banow w bazie danych. Zaladowano standardowe.L 01/24/2013 - 10:27:38: [mapsmenu.amxx] Cmd: "Zamahowiec" changelevel "de_dust2"L 01/24/2013 - 10:27:42: -------- Mapchange to de_dust2 --------L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx] Wczytywanie pliku: "addons/amxmodx/configs/roundsound.ini"L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx] [ Loading 8 CTs Sounds ]L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/1z16.mp3L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/2z16.mp3L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/3z16.mp3L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/4z16.mp3L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/5z16.mp3L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/6z16.mp3L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/7z16.mp3L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/8z16.mp3L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx] [ Loading 8 Ts Sounds ]L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/9z16.mp3L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/10z16.mp3L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/11z16.mp3L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/12z16.mp3L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/13z16.mp3L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/14z16.mp3L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/15z16.mp3L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/16z16.mp3L 01/24/2013 - 10:27:42: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 10:27:42: [xredirect.amxx] Zaladowano serwer .:CS-Kills [BF2]:. (31.186.84.74:27703)L 01/24/2013 - 10:27:42: [xredirect.amxx] Zaladowano serwer .:CS-Kills [FFA]:. (31.186.84.74:27725)L 01/24/2013 - 10:27:42: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Only DD2 + 4FUN]:. (31.186.82.99:27730)L 01/24/2013 - 10:27:42: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Surf_Ski_2]:. (213.189.52.69:23503)L 01/24/2013 - 10:27:42: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Only Nuke/Inferno]:. (31.186.82.99:23515)L 01/24/2013 - 10:27:42: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Paint Ball]:. (31.186.84.74:21502)L 01/24/2013 - 10:27:42: [amxbans_main.amxx] [AMXBans] Received DB Info Tuple from amxbans_core: 1 | amxL 01/24/2013 - 10:27:42: [amxbans_main.amxx] [AMXBans] The server IP:PORT is: 31.186.84.74:27703L 01/24/2013 - 10:27:42: [amxbans_core.amxx] Login: "Zamahowiec" became an admin (account "STEAM_0:0:1077957993") (access "abcdefghijklmnopqrstu") (address "188.47.158.115") (nick "Zamahowiec") (static 0)L 01/24/2013 - 10:27:43: [amxbans_main.amxx] [AMXBANS DEBUG] UPDATE `amx_serverinfo` SET timestamp=1359019663,hostname='CS-Kills[BF2]@serwerygier.com',gametype='cstrike',amxban_version='1.5.1', amxban_menu=1 WHERE address = '31.186.84.74:27703'L 01/24/2013 - 10:27:43: [amxbans_main.amxx] [AMXBans] AMXBans Gm 1.5.1 jest wlaczonyL 01/24/2013 - 10:27:44: [amxbans_main.amxx] [AMXBans] Nie znaleziono powodow banow w bazie danych. Zaladowano standardowe.L 01/24/2013 - 10:28:00: [mapsmenu.amxx] Vote: "Zamahowiec" vote maps (map#1 "de_dust2_long") (map#2 "") (map#3 "") (map#4 "")L 01/24/2013 - 10:28:12: [mapsmenu.amxx] Vote: Voting successful. Map will be changed to de_dust2_longL 01/24/2013 - 10:28:15: [mapsmenu.amxx] Vote: Result acceptedL 01/24/2013 - 10:28:17: -------- Mapchange to de_dust2_long --------L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx] Wczytywanie pliku: "addons/amxmodx/configs/roundsound.ini"L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx] [ Loading 8 CTs Sounds ]L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/1z16.mp3L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/2z16.mp3L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/3z16.mp3L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/4z16.mp3L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/5z16.mp3L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/6z16.mp3L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/7z16.mp3L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/8z16.mp3L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx] [ Loading 8 Ts Sounds ]L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/9z16.mp3L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/10z16.mp3L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/11z16.mp3L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/12z16.mp3L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/13z16.mp3L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/14z16.mp3L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/15z16.mp3L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/16z16.mp3L 01/24/2013 - 10:28:17: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 10:28:18: [xredirect.amxx] Zaladowano serwer .:CS-Kills [BF2]:. (31.186.84.74:27703)L 01/24/2013 - 10:28:18: [xredirect.amxx] Zaladowano serwer .:CS-Kills [FFA]:. (31.186.84.74:27725)L 01/24/2013 - 10:28:18: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Only DD2 + 4FUN]:. (31.186.82.99:27730)L 01/24/2013 - 10:28:18: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Surf_Ski_2]:. (213.189.52.69:23503)L 01/24/2013 - 10:28:18: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Only Nuke/Inferno]:. (31.186.82.99:23515)L 01/24/2013 - 10:28:18: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Paint Ball]:. (31.186.84.74:21502)L 01/24/2013 - 10:28:18: [amxbans_main.amxx] [AMXBans] Received DB Info Tuple from amxbans_core: 2 | amxL 01/24/2013 - 10:28:18: [amxbans_main.amxx] [AMXBans] The server IP:PORT is: 31.186.84.74:27703L 01/24/2013 - 10:28:18: [amxbans_core.amxx] Login: "Zamahowiec" became an admin (account "STEAM_0:0:1077957993") (access "abcdefghijklmnopqrstu") (address "188.47.158.115") (nick "Zamahowiec") (static 0)L 01/24/2013 - 10:28:19: [amxbans_main.amxx] [AMXBANS DEBUG] UPDATE `amx_serverinfo` SET timestamp=1359019699,hostname='CS-Kills[BF2]@serwerygier.com',gametype='cstrike',amxban_version='1.5.1', amxban_menu=1 WHERE address = '31.186.84.74:27703'L 01/24/2013 - 10:28:19: [amxbans_main.amxx] [AMXBans] AMXBans Gm 1.5.1 jest wlaczonyL 01/24/2013 - 10:28:20: [amxbans_main.amxx] [AMXBans] Nie znaleziono powodow banow w bazie danych. Zaladowano standardowe.L 01/24/2013 - 10:36:09: [amxbans_core.amxx] Login: "Zamahowiec" became an admin (account "STEAM_0:0:1077957993") (access "abcdefghijklmnopqrstu") (address "188.47.158.115") (nick "Zamahowiec") (static 0)L 01/24/2013 - 10:36:51: [plmenu.amxx] Cmd: "Zamahowiec" slay "ReMiXXX^^| "L 01/24/2013 - 10:36:54: [adminchat.amxx] Chat: "Zamahowiec" tsay "DALEJ !!"L 01/24/2013 - 11:00:32: [amxbans_core.amxx] Login: "Zamahowiec" became an admin (account "STEAM_0:0:1077957993") (access "abcdefghijklmnopqrstu") (address "188.47.158.115") (nick "Zamahowiec") (static 0)L 01/24/2013 - 11:00:42: [mapsmenu.amxx] Cmd: "Zamahowiec" changelevel "de_dust2"L 01/24/2013 - 11:00:45: -------- Mapchange to de_dust2 --------L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx] Wczytywanie pliku: "addons/amxmodx/configs/roundsound.ini"L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx] [ Loading 8 CTs Sounds ]L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/1z16.mp3L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/2z16.mp3L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/3z16.mp3L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/4z16.mp3L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/5z16.mp3L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/6z16.mp3L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/7z16.mp3L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/8z16.mp3L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx] [ Loading 8 Ts Sounds ]L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/9z16.mp3L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/10z16.mp3L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/11z16.mp3L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/12z16.mp3L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/13z16.mp3L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/14z16.mp3L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/15z16.mp3L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx]    - sound/misc/[BF2]Kills-NEW/16z16.mp3L 01/24/2013 - 11:00:46: [alt_end_round_sounds.amxx] ---L 01/24/2013 - 11:00:48: [xredirect.amxx] Zaladowano serwer .:CS-Kills [BF2]:. (31.186.84.74:27703)L 01/24/2013 - 11:00:48: [xredirect.amxx] Zaladowano serwer .:CS-Kills [FFA]:. (31.186.84.74:27725)L 01/24/2013 - 11:00:48: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Only DD2 + 4FUN]:. (31.186.82.99:27730)L 01/24/2013 - 11:00:48: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Surf_Ski_2]:. (213.189.52.69:23503)L 01/24/2013 - 11:00:48: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Only Nuke/Inferno]:. (31.186.82.99:23515)L 01/24/2013 - 11:00:48: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Paint Ball]:. (31.186.84.74:21502)L 01/24/2013 - 11:00:48: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Diablo Mod]:. (31.186.82.99:23517)L 01/24/2013 - 11:00:48: [xredirect.amxx] Zaladowano serwer .:CS-Kills [Cod Mod]:. (31.186.84.74:23501)L 01/24/2013 - 11:00:49: [amxbans_main.amxx] [AMXBans] Received DB Info Tuple from amxbans_core: 1 | amxL 01/24/2013 - 11:00:49: [amxbans_main.amxx] [AMXBans] The server IP:PORT is: 31.186.84.74:27703L 01/24/2013 - 11:00:49: [amxbans_core.amxx] Login: "Zamahowiec" became an admin (account "STEAM_0:0:1077957993") (access "abcdefghijklmnopqrstu") (address "188.47.158.115") (nick "Zamahowiec") (static 0)L 01/24/2013 - 11:00:50: [amxbans_main.amxx] [AMXBANS DEBUG] UPDATE `amx_serverinfo` SET timestamp=1359021650,hostname='CS-Kills[BF2]@serwerygier.com',gametype='cstrike',amxban_version='1.5.1', amxban_menu=1 WHERE address = '31.186.84.74:27703'L 01/24/2013 - 11:00:50: [amxbans_main.amxx] [AMXBans] AMXBans Gm 1.5.1 jest wlaczonyL 01/24/2013 - 11:00:51: [amxbans_main.amxx] [AMXBans] Nie znaleziono powodow banow w bazie danych. Zaladowano standardowe.

76561198065710424.pngAddFriend.png


#10 Zamahowiec

    Banned

  • Autor tematu
  • Zbanowany

Reputacja: 4
Nowy

  • Postów:47
  • Lokalizacja:PoLsKa
Offline

Napisano 24.01.2013 14:54

Czekam na Pomoc ;)

76561198065710424.pngAddFriend.png


#11 Zamahowiec

    Banned

  • Autor tematu
  • Zbanowany

Reputacja: 4
Nowy

  • Postów:47
  • Lokalizacja:PoLsKa
Offline

Napisano 27.01.2013 21:52

REFRESH

76561198065710424.pngAddFriend.png


#12 AztekHQS

    Banned

  • Zbanowany

Reputacja: 98
Zaawansowany

  • Postów:279
  • Lokalizacja:Polska
Offline

Napisano 27.01.2013 22:40

Sprawdź teraz:
#include <amxmodx>

#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "AztekHQS"

new hud;

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

register_event("StatusValue", "StatusShow", "be", "1=2", "2!0");
register_event("StatusValue", "StatusShow", "be", "1=1", "2=0");

hud = CreateHudSyncObj();
}

public StatusShow(id) {
switch(read_data(1)) {
case(1): ClearSyncHud(id, hud);
case(2): {
new pid, i, nick[32], bronie[32], ilebroni, nazwabroni[33];

pid = read_data(2);

get_user_weapons(pid, bronie, ilebroni);
get_user_name(pid, nick, 31);

for(i = 0; i < ilebroni; i++) {
get_weaponname(bronie[i], nazwabroni, 32);
replace_all(nazwabroni, 32, "weapon_", "");
}
set_hudmessage(100, 255, 0, -1.0, 0.90, 0, 0.01, 60.0, 0.01, 0.01, -1);
ShowSyncHudMsg(id, hud, "%s^n%d HP / %d AP / %s", nick, get_user_health(pid), get_user_armor(pid), nazwabroni);
}
}
}

Najlepszy serwer JailBreak!
IP: 31.186.83.208:27043
Dołączona grafika

#13 Zamahowiec

    Banned

  • Autor tematu
  • Zbanowany

Reputacja: 4
Nowy

  • Postów:47
  • Lokalizacja:PoLsKa
Offline

Napisano 28.01.2013 21:15

Wszystko działa tylko cały czas pokazuje bron knife a jak ktos ma M4 czy AK47 to i tak pisze knife proszę O POMOC !! :) :)

Użytkownik Zamahowiec edytował ten post 28.01.2013 21:35

76561198065710424.pngAddFriend.png


#14 Zamahowiec

    Banned

  • Autor tematu
  • Zbanowany

Reputacja: 4
Nowy

  • Postów:47
  • Lokalizacja:PoLsKa
Offline

Napisano 29.01.2013 17:46

CZEKAM NA POMOC ! :)

76561198065710424.pngAddFriend.png


#15 xBluex

    Życzliwy

  • Zbanowany

Reputacja: -2
Nowy

  • Postów:20
  • Imię:Mateusz
  • Lokalizacja:Łódź
Offline

Napisano 30.01.2013 14:59

ref...

#16 Tytanowy

    Banned

  • Zbanowany

Reputacja: 54
Pomocny

  • Postów:184
  • GG:
  • Imię:Maciej
  • Lokalizacja:Olsztyn
Offline

Napisano 30.01.2013 15:03

http://forums.allied...196&postcount=6

Chodzi o to?
IP:91.203.223.45:27021
Dołączona grafika
www.hit4u.eu

Najlepsza sieć serwerów Counter-strike, unikalne modyfikacje serwerów!

#17 Zamahowiec

    Banned

  • Autor tematu
  • Zbanowany

Reputacja: 4
Nowy

  • Postów:47
  • Lokalizacja:PoLsKa
Offline

Napisano 30.01.2013 20:46

Właśnie Takiego Czegoś Szukałem Dzięki ! Daję +

76561198065710424.pngAddFriend.png





Użytkownicy przeglądający ten temat: 0

0 użytkowników, 0 gości, 0 anonimowych