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

Problem z ad_manager.amx


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

#1 cesik

    Zaawansowany

  • Zbanowany

Reputacja: 0
Nowy

  • Postów:129
  • Imię:Dawid
  • Lokalizacja:KIELCE
Offline

Napisano 18.03.2011 19:14

Witam mam problem natomiast program ad_manager.amx niewyswietla mi zadnych reklam

plugin.ini
; AMX Mod X plugins

; Admin Base - Always one has to be activated
minibans.amxx
admin.amxx		; admin base (required for any admin-related)
;admin_sql.amxx		; admin base - SQL version (comment admin.amxx)

; Basic
admincmd.amxx		; basic admin console commands
adminhelp.amxx		; help command for admin console commands
adminslots.amxx		; slot reservation
multilingual.amxx	; Multi-Lingual management

; Menus
menufront.amxx		; front-end for admin menus
cmdmenu.amxx		; command menu (speech, settings)
plmenu.amxx		; players menu (kick, ban, client cmds.)
telemenu.amxx		 ;teleport menu (Fun Module required!)
mapsmenu.amxx		; maps menu (vote, changelevel)
pluginmenu.amxx		; Menus for commands/cvars organized by plugin

; Chat / Messages
adminchat.amxx		; console chat commands
antiflood.amxx		; prevent clients from chat-flooding the server
scrollmsg.amxx		; displays a scrolling message
imessage.amxx		; displays information messages
adminvote.amxx		; vote commands

; Map related
nextmap.amxx		; displays next map in mapcycle
timeleft.amxx		; displays time left on map

; Configuration
pausecfg.amxx		; allows to pause and unpause some plugins
statscfg.amxx		; allows to manage stats plugins via menu and commands

; Counter-Strike
restmenu.amxx		; restrict weapons menu
statsx.amxx		; stats on death or round end (CSX Module required!)
;miscstats.amxx		; bunch of events announcement for Counter-Strike
;stats_logging.amxx	; weapons stats logging (CSX Module required!)

; Enable to use AMX Mod plugins
;amxmod_compat.amxx	; AMX Mod backwards compatibility layer

; Custom - Add 3rd party plugins here
dbmod_5.9l.amxx debug
simple_force_rate.amxx
no_he_damage.amxx
anti_nick_change.amxx
invisible_spectator.amxx
adminlisten.amxx
hudhp.amxx
amx_record.amxx
c4timer.amxx
abd.amxx
interp.amxx
join_leave.amxx
ptb.amxx
amx_ssban.amxx
interp_v3.amxx
admin_gag.amxx
admin_spec_esp.amxx
ad_manager.amx
mapchooser4.amxx


;Voices_Management.amxx ; proszę nie wgrywac tego pluginu, generuje on zbyt duze obciazenia / Administrator OwnServer

advertisements.ini
;!t - kolor drużyny, dla tt czerwony, dla ct niebieski i dla specra biały
;!g - po prostu zielony
;!n - standardowy kolor w say

!t Witamy na DiabloMod ModernClassic !n zapraszamy rowniez na nasze forum www.CounterTime.xaa.pl
!g Wpisz /klasa aby wybrac klase. /item aby zobaczyc jaki masz item /drop aby wyrzucic item
!t Witamy na DiabloMod ModernClassic !n zapraszamy rowniez na nasze forum www.CounterTime.xaa.pl
!g Wpisz /klasa aby wybrac klase. /item aby zobaczyc jaki masz item /drop aby wyrzucic item
!n proszę o zapoznanie sie z pelnym regulaminem serwera na stronie www.CounterTime.xaa.pl
!n proszę o zapoznanie sie z pelnym regulaminem serwera na stronie www.CounterTime.xaa.pl
!t proszę o stosowanie sie do regulaminu serwera
!n Chcesz doniesc na admina? Masz pomysl co mozna by zmienic napisz na forum.

Co jest nie tak??

Dodano 18 marzec 2011 - 19:15:
ad_manager.sma
#include <amxmodx>
#include <amxmisc>

#pragma semicolon 1

new const PLUGIN[] = "Autoresponder/Advertiser";
new const VERSION[] = "0.5";
new const AUTHOR[] = "MaximusBrood";

#define NORM_AD 0
#define SAY_AD 1

#define COND 0
#define STORE 1

#define COND_TKN '%'
#define SAY_TKN '@'

#define COND_STKN "%"
#define DEVIDE_STKN "~"
#define SAY_STKN "@"

//-.-.-.-.-.-.-.-.DEFINES.-.-.-.-.-.-.-.-.-.-.

//Maximum amount of ads
#define MAXADS 64

//Minimum difference between two different ads (float)
new const Float:RAND_MIN = 16.0;

//Maximum difference between two different ads (float)
new const Float:RAND_MAX = 15.0;

//-.-.-.-.-.-.-.-.END DEFINES..-.-.-.-.-.-.-.

//Stores
new sayConditions[MAXADS][3][32];
new normConditions[MAXADS][3][32];
new normStore[MAXADS][128];
new sayStore[MAXADS][2][128];

new gmsgSayText;

//Counters
new adCount[2] = {0, 0};

public plugin_init() {
	register_plugin(PLUGIN, VERSION, AUTHOR);
	
	register_cvar("ad_react_all", "1");
	
	gmsgSayText = get_user_msgid("SayText");
	
	register_clcmd("say","eventSay");
	register_clcmd("say_team","eventSay");
	
	//Delay the load proces by 10 sec because we don't want to get more load
	//on the already high-load mapchange.
	//Too soon to affect players while playing, too late to create time-out @ mapchange
	set_task(10.0, "load");
}

public load()
{
	//Load the data
	new filepath[64];
	get_configsdir(filepath, 63);
	format(filepath, 63, "%s/advertisements.ini", filepath);
	
	if(file_exists(filepath))
	{
		new output[512], conditions[128], temp[64], type;
		
		//Open file
		new fHandle = fopen(filepath, "rt");
		
		//Checks for failure
		if(!fHandle)
			return;
		
		//Loop through all lines
		for(new a = 0; a < MAXADS && !feof(fHandle); a++)
		{
			//Get line
			fgets(fHandle, output, 511);
			
			
			//Work away comments
			if(output[0] == ';' || !output[0] || output[0] == ' ' || output[0] == 10) 
			{
				//Line is not counted
				a--;
				continue;
			}
			
			//Reset type
			type = 0;
			
			//Check if it contains conditions
			if(output[0] == COND_TKN)
			{
				//Cut the conditions off the string
				split(output, conditions, 127, output, 511, DEVIDE_STKN);
				
				//Determine if its say check or normal ad
				type = output[0] == SAY_TKN ? 1 : 0;
				
				//Put the conditions in own space
				for(new b = 0; b < 3; b++)
				{
					new sort[16], cond[32], numb;
					
					//Remove the % from line 
					conditions[0] = ' ';
					trim(conditions);
					
					//Get one condition from the line
					split(conditions, temp, 64, conditions, 127, COND_STKN);
					
					split(temp, sort, 15, cond, 31, " ");
					
					if(equali(sort, "map"))
					{
						numb = 0;
					} else if(equali(sort, "min_players"))
					{
						numb = 1;
					} else if(equali(sort, "max_players"))
					{
						numb = 2;
					} else
					{
						continue;
					}
					
					//Copy it to its final resting place <img src='http://img.amxx.pl/public/style_emoticons/<#EMO_DIR#>/naughty.gif' class='bbc_emoticon' alt='^^' />
					setString(COND, type, cond, adCount[type], numb);
					
					//Exit if it hasn't got more conditions
					if(!conditions[0])
						break;
				}

to jest część *.sma cale nie weszło jak będzie trzeba dodać mówcie

Użytkownik cesik edytował ten post 18.03.2011 19:16


#2 WazzaP

    Super Hero

  • Użytkownik

Reputacja: 130
Zaawansowany

  • Postów:1 161
  • GG:
  • Steam:steam
  • Imię:Mateusz
  • Lokalizacja:Łęczna
Offline

Napisano 18.03.2011 19:21

Jakieś logi?
  • +
  • -
  • 0

#3 cesik

    Zaawansowany

  • Autor tematu
  • Zbanowany

Reputacja: 0
Nowy

  • Postów:129
  • Imię:Dawid
  • Lokalizacja:KIELCE
Offline

Napisano 18.03.2011 20:20

Aktualizacja: 18-03-2011 19:51:41



SZ_GetSpace: overflow on vondic

WARNING: datagram overflowed for vondic

SZ_GetSpace: overflow on Client Datagram

WARNING: msg overflowed for vondic

PTB: Round ended, checking teams.

PTB: Teams look fine, no action required.

*DEAD* TURBOm@niek : /item

*DEAD* SmileY;/ : /me

Krolik Robert! Wali ACE! : /item

PTB: Round ended, checking teams.

PTB: Observing TERRORIST team advantage.

Dropped (((KOBRA))) from server

Reason:  Client sent 'drop'

PTB: Teams look fine, no action required.

Dropped Fiszek from server

Reason:  Fake client. Connection was in idle state for 4 seconds.

77.253.87.231:18718:reconnect

L 03/18/2011 - 19:18:23: [admin.amxx] Login: "Fiszek<53><STEAM_0:0:37847767><>" became an admin (account "STEAM_0:0:37847767") (access "abcdefghijklmnopqrstu") (address "77.253.87.231")

PTB: Round ended, checking teams.

PTB: Teams look fine, no action required.

L 03/18/2011 - 19:18:51: Invalid player id 0

L 03/18/2011 - 19:18:51: [AMXX] Run time error 10 (plugin "abd.amxx") (native "get_user_attacker") - debug not enabled!

L 03/18/2011 - 19:18:51: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).

L 03/18/2011 - 19:18:55: Invalid player id 0

L 03/18/2011 - 19:18:55: [AMXX] Run time error 10 (plugin "abd.amxx") (native "get_user_attacker") - debug not enabled!

L 03/18/2011 - 19:18:55: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).

PTB: Round ended, checking teams.

PTB: Teams look fine, no action required.

L 03/18/2011 - 19:19:05: [adminvote.amxx] Vote: "Fiszek<53><STEAM_0:0:37847767><>" vote custom (question "Czy zmienic mape?") (option#1 "Tak") (option#2 "Nie")

L 03/18/2011 - 19:19:17: [adminvote.amxx] Vote: Voting successful (got "3") (needed "1") (result "Czy zmienic mape? - Tak")

PTB: Round ended, checking teams.

PTB: Teams look fine, no action required.

L 03/18/2011 - 19:19:54: [mapsmenu.amxx] Vote: "Fiszek<53><STEAM_0:0:37847767><>" vote maps (map#1 "cs_assault_1337") (map#2 "cs_rats2_final") (map#3 "de_lidl") (map#4 "")

Dropped TURBOm@niek from server

Reason:  Client sent 'drop'

L 03/18/2011 - 19:20:06: [mapsmenu.amxx] Vote: Voting successful. Map will be changed to cs_rats2_final

L 03/18/2011 - 19:20:16: [mapsmenu.amxx] Vote: Result refused

PTB: The COUNTER-TERRORIST team could use some support.

L 03/18/2011 - 19:20:35: [mapsmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" changelevel "cs_rats2_final"

L 03/18/2011 - 19:20:38: -------- Mapchange to cs_rats2_final --------

L 03/18/2011 - 19:20:38: [AMXX] Plugin file open error (plugin "interp.amxx")

L 03/18/2011 - 19:20:38: [AMXX] Plugin file open error (plugin "ad_manager.amx")

[AMXX] Zaladowano 6 adminow z pliku

L 03/18/2011 - 19:20:38: 03/18/2011 - 19:20:38 ### MAPA: cs_rats2_final ### 



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



L 03/18/2011 - 19:20:38: [mapchooser4.amxx] Found 61 maps in maps folder

Menu item 7 added to Menus Front-End: "Menu screenshotow" from plugin "Commands Menu"

Executing AMX Mod X Configuration File 

Czestotliwosc wyswietlania wiadomosci: 10:00 minut

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 10 player(s).

PTB: (maxdiff) Maximum team size difference is 1.

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 ON.

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"

L 03/18/2011 - 19:20:38: [admin.amxx] Login: "Fiszek<53><STEAM_0:0:37847767><>" became an admin (account "STEAM_0:0:37847767") (access "abcdefghijklmnopqrstu") (address "77.253.87.231")

Dropped Krolik Robert! Wali ACE! from server

Reason:  Client sent 'drop'

Dropped vondic from server

Reason:  Client sent 'drop'

213.77.56.4:27005:reconnect

217.144.204.5:27005:reconnect

L 03/18/2011 - 19:20:45: [mapchooser4.amxx] xvars for mapchooser 4 setuped.

SmileY;/ : /klasa

PTB: Teams look fine, no action required.

PTB: Teams look fine, no action required.

*DEAD* vondic : /klasa

SmileY;/ : /item

PTB: The COUNTER-TERRORIST team could use some support.

Krolik Robert! Wali ACE! : /klasa

PTB: The COUNTER-TERRORIST team could use some support.

PTB: Teams look fine, no action required.

L 03/18/2011 - 19:25:02: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "SmileY;/<41><STEAM_0:0:37933382><>"

L 03/18/2011 - 19:25:03: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "SmileY;/<41><STEAM_0:0:37933382><>"

L 03/18/2011 - 19:25:03: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "SmileY;/<41><STEAM_0:0:37933382><>"

L 03/18/2011 - 19:25:03: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "SmileY;/<41><STEAM_0:0:37933382><>"

L 03/18/2011 - 19:25:04: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "SmileY;/<41><STEAM_0:0:37933382><>"

L 03/18/2011 - 19:25:04: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "SmileY;/<41><STEAM_0:0:37933382><>"

L 03/18/2011 - 19:25:04: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "SmileY;/<41><STEAM_0:0:37933382><>"

L 03/18/2011 - 19:25:04: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "SmileY;/<41><STEAM_0:0:37933382><>"

L 03/18/2011 - 19:25:04: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "SmileY;/<41><STEAM_0:0:37933382><>"

L 03/18/2011 - 19:25:04: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "SmileY;/<41><STEAM_0:0:37933382><>"

L 03/18/2011 - 19:25:04: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "SmileY;/<41><STEAM_0:0:37933382><>"

L 03/18/2011 - 19:25:05: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "SmileY;/<41><STEAM_0:0:37933382><>"

L 03/18/2011 - 19:25:05: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "SmileY;/<41><STEAM_0:0:37933382><>"

L 03/18/2011 - 19:25:05: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "SmileY;/<41><STEAM_0:0:37933382><>"

L 03/18/2011 - 19:25:05: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "SmileY;/<41><STEAM_0:0:37933382><>"

L 03/18/2011 - 19:25:05: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "SmileY;/<41><STEAM_0:0:37933382><>"

L 03/18/2011 - 19:25:06: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "SmileY;/<41><STEAM_0:0:37933382><>"


Dodano 18 marzec 2011 - 20:21:

Dropped ~AanG~^.0 from server

Reason:  Client sent 'drop'

188.125.137.20:60601:reconnect

Dropped ~AanG~^.0 from server

Reason:  Client sent 'drop'

PTB: Observing COUNTER-TERRORIST team advantage.

vondic : /item

L 03/18/2011 - 19:26:43: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "Krolik Robert! Wali ACE!<55><STEAM_0:0:34804675><>"

L 03/18/2011 - 19:26:43: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "Krolik Robert! Wali ACE!<55><STEAM_0:0:34804675><>"

L 03/18/2011 - 19:26:44: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "Krolik Robert! Wali ACE!<55><STEAM_0:0:34804675><>"

L 03/18/2011 - 19:26:44: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "Krolik Robert! Wali ACE!<55><STEAM_0:0:34804675><>"

L 03/18/2011 - 19:26:44: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "Krolik Robert! Wali ACE!<55><STEAM_0:0:34804675><>"

L 03/18/2011 - 19:26:44: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "Krolik Robert! Wali ACE!<55><STEAM_0:0:34804675><>"

L 03/18/2011 - 19:26:45: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "Krolik Robert! Wali ACE!<55><STEAM_0:0:34804675><>"

L 03/18/2011 - 19:26:45: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "Krolik Robert! Wali ACE!<55><STEAM_0:0:34804675><>"

L 03/18/2011 - 19:26:45: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "Krolik Robert! Wali ACE!<55><STEAM_0:0:34804675><>"

L 03/18/2011 - 19:26:45: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "Krolik Robert! Wali ACE!<55><STEAM_0:0:34804675><>"

L 03/18/2011 - 19:26:45: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "Krolik Robert! Wali ACE!<55><STEAM_0:0:34804675><>"

L 03/18/2011 - 19:26:45: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "Krolik Robert! Wali ACE!<55><STEAM_0:0:34804675><>"

L 03/18/2011 - 19:26:45: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "Krolik Robert! Wali ACE!<55><STEAM_0:0:34804675><>"

L 03/18/2011 - 19:26:46: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "Krolik Robert! Wali ACE!<55><STEAM_0:0:34804675><>"

L 03/18/2011 - 19:26:46: [plmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" slap with 0 damage "Krolik Robert! Wali ACE!<55><STEAM_0:0:34804675><>"

Krolik Robert! Wali ACE! : /item

PTB: The TERRORIST team could use some support.

PTB: The TERRORIST team could use some support.

PTB: The TERRORIST team could use some support.

PTB: The TERRORIST team could use some support.

SmileY;/ : /item

SmileY;/ : /item

L 03/18/2011 - 19:30:50: Invalid player id 0

L 03/18/2011 - 19:30:50: [AMXX] Run time error 10 (plugin "abd.amxx") (native "get_user_attacker") - debug not enabled!

L 03/18/2011 - 19:30:50: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).

Dropped vondic from server

Reason:  Client sent 'drop'

L 03/18/2011 - 19:30:56: Invalid player id 0

L 03/18/2011 - 19:30:56: [AMXX] Run time error 10 (plugin "abd.amxx") (native "get_user_attacker") - debug not enabled!

L 03/18/2011 - 19:30:56: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).

PTB: The TERRORIST team could use some support.

L 03/18/2011 - 19:31:15: Invalid player id 0

L 03/18/2011 - 19:31:15: [AMXX] Run time error 10 (plugin "abd.amxx") (native "get_user_attacker") - debug not enabled!

L 03/18/2011 - 19:31:15: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).

*DEAD* SmileY;/ : /me

*DEAD* SmileY;/ : /item

PTB: The TERRORIST team could use some support.

L 03/18/2011 - 19:32:38: Invalid player id 0

L 03/18/2011 - 19:32:38: [AMXX] Run time error 10 (plugin "abd.amxx") (native "get_user_attacker") - debug not enabled!

L 03/18/2011 - 19:32:38: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).

*DEAD* SmileY;/ : /me

PTB: The TERRORIST team could use some support.

L 03/18/2011 - 19:34:10: [mapsmenu.amxx] Cmd: "Fiszek<53><STEAM_0:0:37847767><>" changelevel "de_aztec"

L 03/18/2011 - 19:34:13: -------- Mapchange to de_aztec --------

L 03/18/2011 - 19:34:13: [AMXX] Plugin file open error (plugin "interp.amxx")

L 03/18/2011 - 19:34:13: [AMXX] Plugin file open error (plugin "ad_manager.amx")

[AMXX] Zaladowano 6 adminow z pliku

L 03/18/2011 - 19:34:13: 03/18/2011 - 19:34:13 ### MAPA: de_aztec ### 



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



L 03/18/2011 - 19:34:13: [mapchooser4.amxx] Found 61 maps in maps folder

Menu item 7 added to Menus Front-End: "Menu screenshotow" from plugin "Commands Menu"

Executing AMX Mod X Configuration File 

Czestotliwosc wyswietlania wiadomosci: 10:00 minut

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 10 player(s).

PTB: (maxdiff) Maximum team size difference is 1.

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 ON.

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"

L 03/18/2011 - 19:34:13: [admin.amxx] Login: "Fiszek<53><STEAM_0:0:37847767><>" became an admin (account "STEAM_0:0:37847767") (access "abcdefghijklmnopqrstu") (address "77.253.87.231")

L 03/18/2011 - 19:34:20: [mapchooser4.amxx] xvars for mapchooser 4 setuped.

SmileY;/ : /klasfa

SmileY;/ : /klasa

Krolik Robert! Wali ACE! : /klasa

L 03/18/2011 - 19:34:26: [admin.amxx] Login: "BLOODSPORT_KoSmOnE<58><STEAM_ID_LAN><>" became an admin (account "BLOODSPORT_KOSMONE") (access "cdefiju") (address "213.238.109.1")

PTB: The TERRORIST team could use some support.

BLOODSPORT_KoSmOnE : /klasa

Fiszek : /klasa

L 03/18/2011 - 19:35:13: [adminchat.amxx] Chat: "BLOODSPORT_KoSmOnE<58><STEAM_ID_LAN><>" tsay " PAKA! HOSTY! "

L 03/18/2011 - 19:35:13: [adminchat.amxx] Chat: "BLOODSPORT_KoSmOnE<58><STEAM_ID_LAN><>" tsay " PAKA! HOSTY! "

L 03/18/2011 - 19:35:14: [adminchat.amxx] Chat: "BLOODSPORT_KoSmOnE<58><STEAM_ID_LAN><>" tsay " PAKA! HOSTY! "

L 03/18/2011 - 19:35:15: [adminchat.amxx] Chat: "BLOODSPORT_KoSmOnE<58><STEAM_ID_LAN><>" tsay " PAKA! HOSTY! "

L 03/18/2011 - 19:35:15: [adminchat.amxx] Chat: "BLOODSPORT_KoSmOnE<58><STEAM_ID_LAN><>" tsay " PAKA! HOSTY! "

PTB: Teams look fine, no action required.

PTB: The COUNTER-TERRORIST team could use some support.

*DEAD* SmileY;/ : /me

PTB: The COUNTER-TERRORIST team could use some support.

*DEAD* SmileY;/ : /me

PTB: The COUNTER-TERRORIST team could use some support.

*DEAD* SmileY;/ : /me

PTB: The COUNTER-TERRORIST team could use some support.

PTB: The COUNTER-TERRORIST team could use some support.

PTB: The COUNTER-TERRORIST team could use some support.

*DEAD* SmileY;/ : /me

PTB: The COUNTER-TERRORIST team could use some support.

L 03/18/2011 - 19:41:36: [adminchat.amxx] Chat: "Fiszek<53><STEAM_0:0:37847767><>" tsay " proszę o zapoznanie sie z pelnym REGULAMINEM serwera na www.CounterTime.xaa.pl"

PTB: The COUNTER-TERRORIST team could use some support.

PTB: The COUNTER-TERRORIST team could use some support.

*DEAD* Fiszek : /item

*DEAD* SmileY;/ : /item

SmileY;/ : /daj

PTB: The COUNTER-TERRORIST team could use some support.

*DEAD* SmileY;/ : /me

PTB: The COUNTER-TERRORIST team could use some support.

PTB: The COUNTER-TERRORIST team could use some support.

*DEAD* SmileY;/ : /me

BLOODSPORT_KoSmOnE : /item

PTB: The COUNTER-TERRORIST team could use some support.

PTB: The COUNTER-TERRORIST team could use some support.

PTB: The COUNTER-TERRORIST team could use some support.

*DEAD* SmileY;/ : /me

*DEAD* SmileY;/ : /me

PTB: The COUNTER-TERRORIST team could use some support.

BLOODSPORT_KoSmOnE : /item

BLOODSPORT_KoSmOnE : /item

PTB: The COUNTER-TERRORIST team could use some support.

*DEAD* SmileY;/ : /me

PTB: The COUNTER-TERRORIST team could use some support.



#4 Leihto

    Wszechobecny

  • Użytkownik

Reputacja: 150
Profesjonalista

  • Postów:452
  • Lokalizacja:Rabka
Offline

Napisano 19.03.2011 00:14

ad_manager.amx

Taki plugin nie bedzie dzialal ;) Musi miec zakonczenie *.amxx
Skompiluj sobie sma w kompilatorze (chocby tutaj na amxx.pl)
  • +
  • -
  • 0
Portek: Za 20zł, to ja nawet notatnika nie otworze..

Nowe portfolio. Ciekawe artykuły, ciekawe przykłady: WojtusDEV.pl

#5 cesik

    Zaawansowany

  • Autor tematu
  • Zbanowany

Reputacja: 0
Nowy

  • Postów:129
  • Imię:Dawid
  • Lokalizacja:KIELCE
Offline

Napisano 19.03.2011 06:11

wiem wlasnie dzisiaj siadlem przy tym i tez to znalazlem dzięki do zamnkiecia ;]




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

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