wellasgood,
кстати может кому нибудь понадобится версия для старых Amxmodx 1.8.2-1.8.3
кстати может кому нибудь понадобится версия для старых Amxmodx 1.8.2-1.8.3
Код:
#include <amxmisc>
#include <cstrike>
#define PLUGIN "ALL-SPEC"
#define VERSION "1.0"
#define AUTHOR "wellasgood & SCHOCKKTOLOGY"
#define ALLSPEC ADMIN_MENU
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /spec", "all_spec")
}
public all_spec(id){
if (!access(id, ALLSPEC)) {
client_print(id, print_chat, "* У вас нет доступа к команде!")
client_cmd(id, "spk buttons/button2")
return PLUGIN_HANDLED
}
new iPlayers[32], iNum;
get_players(iPlayers, iNum, "h");
for(new i; i < iNum; i++)
{
new iDeaths = cs_get_user_deaths(iPlayers[i]);
user_kill(iPlayers[i]);
cs_set_user_team(iPlayers[i], CS_TEAM_SPECTATOR)
cs_set_user_deaths(iPlayers[i], iDeaths);
}
return PLUGIN_HANDLED
}