Люди у меня стоит плагин ultimate_sounds.amxx мне надоели эти звуки, да и людей хочу освободить от закачки всех этих звуков. Хочу только оставить один звук headshot когда попадаешь в голову. Как исправить плагин? Помогите кто знает. За ранее спасибо.
Как здесь сделать что бы не светились на экране слова Go Go Go
/* AMX Mod script. * connect cs.makportal.net:27015 MOL | Classic * connect cs.makportal.net:27016 MOL | Aim Map * * AMX Public Restart Round Vote v1.0 (public_rr_vote) * * This file is provided as is (no warranties) * * Usage * ----- * - open file addons\amx\admin.cfg * - add these lines to admin.cfg : * amx_voterr_delay 60 * amx_voterr_time 10 * amx_voterr_ratio 0.60 * - save the changes to file admin.cfg * * CVARs * ----- * amx_voterr_delay -> minimum delay in seconds between two voting sessions (default 60 sec) * amx_voterr_time -> how long voting session goes on (default 10 sec) * amx_voterr_ratio -> ratio for voting success (default 0.60) * * You can customize the CVARs for your need of course. * * To do: * - command 'amx_voterr_enable' which admins can use to enable or disable public voting * - maybe more public say commands * */
#include <amxmod> #include <amxmisc>
new bool:cstrike new votefor = 0 new Float:vote_ratio
public restart_round(time[]) { server_cmd("sv_restartround %s",time) return PLUGIN_CONTINUE }
public delay_msg() { set_hudmessage(255, 0, 0, -1.0, 0.35, 1, 2.0, 6.0, 0.8, 0.8, 1) show_hudmessage(0,"Go Go Go :)") return PLUGIN_CONTINUE }
public check_votes() { new players[32],inum get_players(players,inum,"c") new Float:voteresult = inum ? (float(votefor) / float(inum)) : 0.0 if (voteresult<vote_ratio){ client_print(0,print_chat,"[MOL] Рестарта не будет! (ЗА ^"%d^") (ПРОТИВ ^"%d^") (НУЖНО ^"%.2f^" процентов).",votefor,inum-votefor,vote_ratio) return PLUGIN_HANDLED } set_task(6.0,"restart_round",0,"1",1) set_task(12.0,"delay_msg") client_print(0,print_chat,"[MOL] Большенство проголосовало за рестарт (ЗА ^"%.2f^") (ПРОТИВ ^"%.2f^").",voteresult,inum-votefor,vote_ratio) client_print(0,print_chat,"[MOL] Сейчас произойдёт рестарт!") return PLUGIN_HANDLED }
public count_votes(id,key){ new name[32] get_user_name(id,name,31) client_print(0,print_chat,"%s проголосовал %s.",name,key ? "ПРОТИВ" : "ЗА") if (!key) ++votefor return PLUGIN_HANDLED }
public voterr(id,level,cid) { new Float:voting = get_cvar_float("amx_last_voting") if (voting > get_gametime()){ client_cmd(id, "spk fvox/fuzz"); client_print(id,print_chat,"[MOL] Голосование уже запущенно...") return PLUGIN_HANDLED } if (voting && voting + get_cvar_float("amx_voterr_delay") > get_gametime()) { client_cmd(id, "spk fvox/fuzz"); client_print(id,print_chat,"[MOL] Голосование некоторое время недоступно!") return PLUGIN_HANDLED } new msg[256] new keys = (1<<0)|(1<<1) if(cstrike) format(msg,255,"\yДелать Рестарт?\r^n^n1. \wДа\r^n2. \wНет") else format(msg,255,"Делать Рестарт?^n^n1. Да^n2. Нет") new Float:vote_time = get_cvar_float("amx_voterr_time") + 2.0 set_cvar_float("amx_last_voting", get_gametime() + vote_time) vote_ratio = get_cvar_float("amx_voterr_ratio") show_menu(0,keys,msg,floatround(vote_time)) set_task(vote_time,"check_votes") client_cmd(id, "spk fvox/bell"); client_print(id,print_chat,"[MOL] Запущенно голосование за рестарт...") votefor = 0 return PLUGIN_HANDLED }
public plugin_init() { register_plugin("Vote Restart ROund","1.0","SeSh") register_menucmd(register_menuid("Делать Рестарт?") ,(1<<0)|(1<<1),"count_votes") register_clcmd("say /restart","voterr",0,"- starts a vote to restart round") register_cvar("amx_voterr_delay","60") register_cvar("amx_voterr_time","10") register_cvar("amx_voterr_ratio","0.60") register_cvar("amx_last_voting","0") set_cvar_float("amx_last_voting",0.0) new mod_name[32] get_modname(mod_name,31) cstrike = equal(mod_name,"cstrike") ? true : false return PLUGIN_CONTINUE }
4EREP, есть два варианта... 1. Просто удалить Go Go Go чтоб выглядело так - show_hudmessage(0,"") 2. Можно удалить, но тогда не даю гарантию что он скомпилиться...
Luxury Кода я удаляю лубую строчку компелирую устанавливаю плагин то вот что получается http://cstrike-club.clan.su/bezymjannyj123.bmp
Добавлено (2012-08-07, 19:50) --------------------------------------------- Звук слышу только я ака сделать что бы и другие могли загрузить только один звук Head Shot Люди кто понимает в написании плагина подскажите пожалуйста очень прошу
Там где new sSound[] в кавычках пишеш путь в звуку. Должно работать.
Добавлено (2012-08-07, 20:05) --------------------------------------------- Люди помогите вот мой исходник по ultimate_sounds как его исправить что бы люди не грузили все эти звуки себе. Я хочу оставить только один единственный звук при попадании в голову headshot
/******************************************************************************** * AMX Mod X script. * * Ultimate Sounds (Ultimate_Sounds.sma) * Copyright (C) 2006-2008 Bmann_420 / Dizzy / Hoboman * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * In addition, as a special exception, the author gives permission to * link the code of this program with the Half-Life Game Engine ("HL * Engine") and Modified Game Libraries ("MODs") developed by Valve, * L.L.C ("Valve"). You must obey the GNU General Public License in all * respects for all of the code used other than the HL Engine and MODs * from Valve. If you modify this file, you may extend this exception * to your version of the file, but you are not obligated to do so. If * you do not wish to do so, delete this exception statement from your * version. * ********************************************************************************* * * AMXX Ultimate Sounds Vers. 1.7 * Last Update: 1/26/2007 * * by Dizzy / Bmann_420 & Hoboman * Link: http://forums.alliedmods.net/showthread.php?t=7342 * * ********************************************************************************* * * /////////////////////////////////////////////////// * // AMXMOD[X] // * // ::Ultimate sounds:: // * // Origional: by Hephaistos // * // Ported by: Dizzy // * // Edited by: Hoboman, bmann_420 // * // // * // cvar: // * // streak_mode < flags > // * // "a" - messages // * // "b" - sounds // * // // * // knife_mode < flags > // * // "a" - messages // * // "b" - sounds // * // // * // hs_mode < flags > // * // "a" - messages // * // "b" - sounds // * // // * // lastman_mode < flags > // * // "a" - messages // * // "b" - hp // * // "c" - sounds // * /////////////////////////////////////////////////// * ********************************************************************************* */
// Plugin Info new const PLUGIN[] = "Ultimate Sounds" new const VERSION[] = "1.7" new const AUTHOR[] = "Dizzy / Bmann_420"