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
 

Zibbab - zdjęcie

Zibbab

Rejestracja: 24.02.2012
Aktualnie: Nieaktywny
Poza forum Ostatnio: 02.10.2016 00:36
-----

Moje tematy

Problem z kompilacją pluginu.

20.09.2016 12:34

Welcome to the AMX Mod X 1.8.1-300 Compiler.
Copyright © 1997-2013 ITB CompuPhase, AMX Mod X Team
 
Error: Undefined symbol "cod_set_user_Ordery" on line 959
Error: Undefined symbol "cod_get_user_Ordery" on line 2011
Error: Undefined symbol "cod_get_user_Ordery" on line 2024
Warning: Symbol is never used: "serverIP" on line 2560
 
3 Errors.
Could not locate output file C:\Users\Użytkownik1\Desktop\QTM_CodElite.amx (compile failed).

 
 
Nie znam tych błędów.

 
 

public WygranaRunda(const Team[])
{
	
	new Players[32], playerCount, id;
	get_players(Players, playerCount, "aeh", Team);
	new doswiadczenie_za_wygrana = get_pcvar_num(cvar_doswiadczenie_za_wygrana);
	new ordery_za_wygrana = get_pcvar_num(cvar_ordery_za_wygrana);
	
	if(get_playersnum() < 3)
		return;
	
	for (new i=0; i<playerCount; i++) 
	{
		id = Players[i];
		
		if(!klasa_gracza[id])
			continue;
		
		doswiadczenie_gracza[id] += doswiadczenie_za_wygrana;
		
		cod_set_user_Ordery(id, cod_get_user_Ordery(id) + ordery_za_wygrana); <---- TA LINIJKA 959
		client_cmd(id, "spk CodElite/win_sound");
		SprawdzPoziom(id);
		hud_znika[id] = 1;
	}	
	InfoTeam(id)
	ChatColor(0, "%L", id, "INFO_WIN", prefix, Team, doswiadczenie_za_wygrana, ordery_za_wygrana);
}
public PokazInformacje(id) 
{
	id -= ZADANIE_POKAZ_INFORMACJE;
	
	if(!is_user_connected(id))
	{
		remove_task(id+ZADANIE_POKAZ_INFORMACJE);
		return PLUGIN_CONTINUE;
	}
	
	if(!is_user_alive(id))
	{       
		new target = pev(id, pev_iuser2);
		
		if(!target)
			return PLUGIN_CONTINUE;         
		
		new ileMa = doswiadczenie_gracza[target],ilePotrzeba = PobierzDoswiadczeniePoziomu(poziom_gracza[target]),ilePotrzebaBylo = PobierzDoswiadczeniePoziomu(poziom_gracza[target]-1)
		new Float:fProcent = 0.0;
		fProcent = (float((ileMa - ilePotrzebaBylo)) / float((ilePotrzeba - ilePotrzebaBylo))) * 100.0;
		
		new zdrowie = get_user_health(target);
		new ordery = cod_get_user_Ordery(target) ; <-- TA LINIJKA 2011
		
		
		set_hudmessage(255, 0, 0, 0.8, -1.0, 0, 1.0, 1.0, 0.1, 0.1);
		ShowSyncHudMsg(id, SyncHudObj, "[COD Elite: %i ]^n[Forum: %s ]^n[Klasa: %s]^n[Poziom: %i]^n[Exp: %0.1f%%]^n[Zdrowie: %d]^n[Ordery: %i]^n[Perk: %s]^n[Ranga: %s]"
		, get_pcvar_num(cvar_limit_poziomu), nazwa_forum, nazwy_klas[klasa_gracza[target]], poziom_gracza[target], fProcent, zdrowie, ordery, nazwy_perkow[perk_gracza[target]], nazwy_rang[ranga[target]]);
		return PLUGIN_CONTINUE;         
		
	}  
	new ileMa = doswiadczenie_gracza[id],ilePotrzeba = PobierzDoswiadczeniePoziomu(poziom_gracza[id]),ilePotrzebaBylo = PobierzDoswiadczeniePoziomu(poziom_gracza[id]-1)
	new Float:fProcent = 0.0;
	fProcent = (float((ileMa - ilePotrzebaBylo)) / float((ilePotrzeba - ilePotrzebaBylo))) * 100.0;
	new zdrowie = get_user_health(id);
	new ordery = cod_get_user_Ordery(id) ;<-- ta linijka 2024
	
	if(hud_znika[id])
		return PLUGIN_CONTINUE;
	
	set_hudmessage(42, 170, 255, 0.11, 0.04, 0, 1.0, 1.0, 0.1, 0.1);
	ShowSyncHudMsg(id, SyncHudObj, "[ COD Elite: %i ] | [Forum: %s ]^n[ Klasa : %s | Ranga: %s ]^n[ Poziom : %i | Exp: %0.1f%% ]^n[ Zdrowie : %d | Ordery: %i ]^n[ Perk : %s ]"
	, get_pcvar_num(cvar_limit_poziomu), nazwa_forum, nazwy_klas[klasa_gracza[id]], nazwy_rang[ranga[id]], poziom_gracza[id], fProcent, zdrowie, ordery, nazwy_perkow[perk_gracza[id]]);
	
	return PLUGIN_CONTINUE;
} 

Oznaczyłem linijki kodu. Proszę o pomoc. Jest wymagana edycja codmod.inc? 

Call of duty by Play paczka (Nie odpala mi silnika)

19.09.2016 00:21

Adres do paczki: https://amxx.pl/topi...te-801-by-play/

 

 

L 09/19/2016 - 01:17:59: Called dynanative into a paused plugin.

L 09/19/2016 - 01:17:59: [AMXX] Run time error 10 (plugin "codperk_Sakwa.amxx") (native "cod_register_perk") - debug not enabled!
L 09/19/2016 - 01:17:59: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 09/19/2016 - 01:17:59: Called dynanative into a paused plugin.
L 09/19/2016 - 01:17:59: [AMXX] Run time error 10 (plugin "codperk_Scouter.amxx") (native "cod_register_perk") - debug not enabled!
L 09/19/2016 - 01:17:59: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 09/19/2016 - 01:17:59: Called dynanative into a paused plugin.
L 09/19/2016 - 01:17:59: [AMXX] Run time error 10 (plugin "codperk_SokoleOko.amxx") (native "cod_register_perk") - debug not enabled!
L 09/19/2016 - 01:17:59: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 09/19/2016 - 01:17:59: Called dynanative into a paused plugin.
L 09/19/2016 - 01:17:59: [AMXX] Run time error 10 (plugin "codperk_SzalonyRusher.amxx") (native "cod_register_perk") - debug not enabled!
L 09/19/2016 - 01:17:59: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 09/19/2016 - 01:17:59: Called dynanative into a paused plugin.
L 09/19/2016 - 01:17:59: [AMXX] Run time error 10 (plugin "codperk_TajemnicaGenerala.amxx") (native "cod_register_perk") - debug not enabled!
L 09/19/2016 - 01:17:59: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 09/19/2016 - 01:17:59: Called dynanative into a paused plugin.
L 09/19/2016 - 01:17:59: [AMXX] Run time error 10 (plugin "codperk_Teleport.amxx") (native "cod_register_perk") - debug not enabled!
L 09/19/2016 - 01:17:59: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 09/19/2016 - 01:17:59: Called dynanative into a paused plugin.
L 09/19/2016 - 01:17:59: [AMXX] Run time error 10 (plugin "codperk_TytanoweNaboje.amxx") (native "cod_register_perk") - debug not enabled!
L 09/19/2016 - 01:17:59: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 09/19/2016 - 01:17:59: Called dynanative into a paused plugin.
L 09/19/2016 - 01:17:59: [AMXX] Run time error 10 (plugin "codperk_WeteranNoza.amxx") (native "cod_register_perk") - debug not enabled!
L 09/19/2016 - 01:17:59: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 09/19/2016 - 01:17:59: Called dynanative into a paused plugin.
L 09/19/2016 - 01:17:59: [AMXX] Run time error 10 (plugin "codperk_WiatrZeWschodu.amxx") (native "cod_register_perk") - debug not enabled!
L 09/19/2016 - 01:17:59: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 09/19/2016 - 01:17:59: Called dynanative into a paused plugin.
L 09/19/2016 - 01:17:59: [AMXX] Run time error 10 (plugin "codperk_WyposazenieWsparcia.amxx") (native "cod_register_perk") - debug not enabled!
L 09/19/2016 - 01:17:59: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 09/19/2016 - 01:17:59: Called dynanative into a paused plugin.
L 09/19/2016 - 01:17:59: [AMXX] Run time error 10 (plugin "codperk_WyszkolenieSanitarne.amxx") (native "cod_register_perk") - debug not enabled!
L 09/19/2016 - 01:17:59: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 09/19/2016 - 01:17:59: Called dynanative into a paused plugin.
L 09/19/2016 - 01:17:59: [AMXX] Run time error 10 (plugin "codperk_WytrenowanyRekrut.amxx") (native "cod_register_perk") - debug not enabled!
L 09/19/2016 - 01:17:59: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 09/19/2016 - 01:17:59: Called dynanative into a paused plugin.
L 09/19/2016 - 01:17:59: [AMXX] Run time error 10 (plugin "codperk_WytrenowanyWeteran.amxx") (native "cod_register_perk") - debug not enabled!
L 09/19/2016 - 01:17:59: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 09/19/2016 - 01:17:59: Called dynanative into a paused plugin.
L 09/19/2016 - 01:17:59: [AMXX] Run time error 10 (plugin "codperk_ZaskoczenieWroga.amxx") (native "cod_register_perk") - debug not enabled!
L 09/19/2016 - 01:17:59: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 09/19/2016 - 01:17:59: Called dynanative into a paused plugin.
L 09/19/2016 - 01:17:59: [AMXX] Run time error 10 (plugin "codperk_ZwinnePalce.amxx") (native "cod_register_perk") - debug not enabled!
L 09/19/2016 - 01:17:59: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 09/19/2016 - 01:17:59: Called dynanative into a paused plugin.
L 09/19/2016 - 01:17:59: [AMXX] Run time error 10 (plugin "codperk_vampyricscepter.amxx") (native "cod_register_perk") - debug not enabled!
L 09/19/2016 - 01:17:59: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 09/19/2016 - 01:17:59: Called dynanative into a paused plugin.
L 09/19/2016 - 01:17:59: [AMXX] Run time error 10 (plugin "codperk_peleryna.amxx") (native "cod_register_perk") - debug not enabled!
L 09/19/2016 - 01:17:59: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 09/19/2016 - 01:17:59: Called dynanative into a paused plugin.
L 09/19/2016 - 01:17:59: [AMXX] Run time error 10 (plugin "codperk_godmode.amxx") (native "cod_register_perk") - debug not enabled!
L 09/19/2016 - 01:17:59: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
Executing AMX Mod X Configuration File 
Scrolling message displaying frequency: 10:00 minutes
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 12 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 OFF.
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.
couldn't exec addons/amxmodx/configs/Reklama/config.cfg
[S_API FAIL] SteamAPI_Init() failed; SteamAPI_IsSteamRunning() failed.
dlopen failed trying to load:
/home/nozofiles/s2719/.steam/sdk32/steamclient.so
with error:
/home/nozofiles/s2719/.steam/sdk32/steamclient.so: cannot open shared object file: No such file or directory
Looking up breakpad interfaces from steamclient
Calling BreakpadMiniDumpSystemInit
 
couldn't exec banned.cfg
couldn't exec listip.cfg
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"
Connection to Steam servers successful.
   VAC secure mode is activated.
L 09/19/2016 - 01:18:06: [mapchooser4.amxx] xvars for mapchooser 4 setuped.
 

 

 

Tak jak kazali tak napisałem.

 

 

 

Może założysz temat?
Może wkleisz logi?
Może pokażesz czy cokolwiek się ładuje przez zapytania do amxa?
Kto ma tutaj Ci pomóc?
Wróżbita Maciej bez informacji o czymkolwiek?

 

 


 


Informacji sam mam brak, brak dostępu to folderu Log.