←  Problemy

AMXX.pl: Support AMX Mod X i SourceMod

»

CoD Nowy
Kłade pake i wywala serwer

  • +
  • -
eMek0406 - zdjęcie eMek0406 04.12.2012

Witam, zainstalowalem ten http://amxx.pl/topic...8-christmas-c4/ plugin, i go usunełem z powód takich, że gdy wyrzucamy pake to jej nie widac chodz na radarze jest. Po usunieciu pluginy wszystko chodzi ale gdy kłade pake to serwer sie crashuje ..

Logi, error logów nie ma.

L 12/04/2012 - 10:00:26: -------- Mapchange to de_westwood_big --------
L 12/04/2012 - 10:00:27: [amxbans_main.amxx] [AMXBans] Received DB Info Tuple from amxbans_core: 1 | bany
L 12/04/2012 - 10:00:27: [amxbans_main.amxx] [AMXBans] The server IP:PORT is: 31.186.84.66:27241
L 12/04/2012 - 10:00:27: [amxbans_main.amxx] [AMXBANS DEBUG] UPDATE `bany_serverinfo` SET timestamp=1354611627,hostname='CS-PRIDE.PL [ COD 401LVL FAST EXP ][ NOCNY EXP X2 ]',gametype='cstrike',amxban_version='1.5.1', amxban_menu=1 WHERE address = '31.186.84.66:27241'
L 12/04/2012 - 10:00:27: [amxbans_main.amxx] [AMXBans] AMXBans Gm 1.5.1 jest wlaczony
L 12/04/2012 - 10:00:27: [amxbans_main.amxx] [AMXBans] Nie znaleziono powodow banow w bazie danych. Zaladowano standardowe.
L 12/04/2012 - 10:00:30: [amxbans_main.amxx] [AMXBans] [AMXBans]<Sobieski^^> 79.135.163.166 STEAM_ID_LAN zostal wczesniej zbanowany 2 razy.
L 12/04/2012 - 10:00:39: -------- Mapchange to de_westwood_big --------
L 12/04/2012 - 10:00:40: [amxbans_main.amxx] [AMXBans] Received DB Info Tuple from amxbans_core: 1 | bany
L 12/04/2012 - 10:00:40: [amxbans_main.amxx] [AMXBans] The server IP:PORT is: 31.186.84.66:27241
L 12/04/2012 - 10:00:40: [amxbans_main.amxx] [AMXBANS DEBUG] UPDATE `bany_serverinfo` SET timestamp=1354611640,hostname='CS-PRIDE.PL [ COD 401LVL FAST EXP ][ NOCNY EXP X2 ]',gametype='cstrike',amxban_version='1.5.1', amxban_menu=1 WHERE address = '31.186.84.66:27241'
L 12/04/2012 - 10:00:40: [amxbans_main.amxx] [AMXBans] AMXBans Gm 1.5.1 jest wlaczony
L 12/04/2012 - 10:00:40: [amxbans_main.amxx] [AMXBans] Nie znaleziono powodow banow w bazie danych. Zaladowano standardowe.
L 12/04/2012 - 10:00:41: [amxbans_core.amxx] Login: "rtete<2><STEAM_0:1:54916499><>" became an admin (account "STEAM_0:1:54916499") (access "bcdefijlmnopqrstu") (address "31.41.26.213") (nick ";") (static 0)
L 12/04/2012 - 10:00:44: [amxbans_core.amxx] Login: "rtete<6><STEAM_0:1:54916499><>" became an admin (account "STEAM_0:1:54916499") (access "bcdefijlmnopqrstu") (address "31.41.26.213") (nick ";") (static 0)
L 12/04/2012 - 10:00:46: [amxbans_core.amxx] Login: "Shock<10><STEAM_0:0:51933899><>" became an admin (account "STEAM_0:0:51933899") (access "bcdefijlmnopqrstu") (address "78.50.28.54") (nick ";") (static 0)
L 12/04/2012 - 10:00:46: [amxbans_main.amxx] [AMXBans] [AMXBans]<Sobieski^^> 79.135.163.166 STEAM_ID_LAN zostal wczesniej zbanowany 2 razy.
L 12/04/2012 - 10:02:17: [amxbans_core.amxx] Login: "rtete<12><STEAM_0:1:54916499><>" became an admin (account "STEAM_0:1:54916499") (access "bcdefijlmnopqrstu") (address "31.41.26.213") (nick ";") (static 0)
L 12/04/2012 - 10:03:21: [adminchat.amxx] Chat: "Shock<10><STEAM_0:0:51933899><>" tsay "nie ma paki nie rozumiesz"
Odpowiedz

galus10 - zdjęcie galus10 04.12.2012

usun w sma christmas-c4 i wklej ten nowy kod co jest na dole do sma.




/* Christmas_C4 (CS 1.6) © 2006 MANCHIMOCYRUS ==>Description: A simple plugin that makes the old models of C4 to lok like a cristmas tree. ==>CVARS: NO cvars ==>Notes Requires Fakemeta Module */ #include  #include  #define PLUGIN "Christmas_C4" #define VERSION "1.0" #define AUTHOR "MANCHIMOCYRUS" new const modele[][] = { "models/balwan.mdl", "models/choinka.mdl", "models/prezent.mdl" } public plugin_init() { register_plugin(PLUGIN,VERSION,AUTHOR); register_forward(FM_SetModel,"fw_setmodel"); } public fw_setmodel(ent,model[]) { if(equali(model,"models/w_c4.mdl")) { engfunc(EngFunc_SetModel,ent, modele[random(sizeof(modele))]); return FMRES_SUPERCEDE; } return FMRES_IGNORED; } public plugin_precache() { for(new i = 0; i < sizeof(modele); i++) precache_model(modele[i]); }

Użytkownik CheQ edytował ten post 04.12.2012 16:33
Odpowiedz