Napiero zaczynam zabawę z robieniem serwa i mam problem z pluginami. Nie działają w nich dźwięki sprawdzałem już czy dźwięki są w dobrych folderach nie wiem co jest. Daje wam .sma od dwóch pluginów:
RoundSounds
Kod://RoundSound.amxx -by GryviMaster #include <amxmodx> public plugin_init() { register_plugin("RoundSound","1.0","PaintLancer") register_event("SendAudio", "t_win", "a", "2&%!MRAD_terwin") register_event("SendAudio", "ct_win", "a", "2&%!MRAD_ctwin") } public t_win() { new rand = random_num(0,2) client_cmd(0,"stopsound") switch(rand) { case 0: client_cmd(0,"spk misc/ttwin4don") // zmień tutaj na wlasna nazwe muzyki case 1: client_cmd(0,"spk misc/ttwin4don") // jak wyżej case 2: client_cmd(0,"spk misc/ttwin4don") // jak wyżej } return PLUGIN_HANDLED } public ct_win() { new rand = random_num(0,2) client_cmd(0,"stopsound") switch(rand) { case 0: client_cmd(0,"spk misc/ctwin4don") // zmień tutaj na wlasna nazwe muzyki case 1: client_cmd(0,"spk misc/ctwin4don") // jak wyzej case 2: client_cmd(0,"spk misc/ctwin4don") // jak wyzej } return PLUGIN_HANDLED } public plugin_precache() { precache_sound("misc/ctwin4don.wav") // tutaj musisz podac precache_sound("misc/ttwin4don.wav") // wszystkie return PLUGIN_CONTINUE }
Bomba
Bardzo bym prosi o rozwiązanie mojego problemu. :)Kod:#include <amxmodx> #include <csx> #define PLUGIN "Bomb Countdown HUD Timer" #define VERSION "0.2" #define AUTHOR "SAMURAI" // // KONFIGURACJA TUTAJ // #define muzyczka "misc/bomb4don.wav" #define czas 11 // // 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, "Bomba wybuchnie za: %d", g_c4timer); --g_c4timer; } } public plugin_precache() { precache_sound(muzyczka) return PLUGIN_CONTINUE }









