Bl0kc | Дата: Воскресенье, 21.02.2010, 22:13:59 | Сообщение # 1 |
Полковник
Группа: Пользователи
Сообщений: 152
Статус: Не в сети
| Code #include <amxmodx> #include <hamsandwich> #include <fakemeta_util>
#define PLUGIN "FreeRun" #define VERSION "0.1.0" #define AUTHOR "PomanoB" // with add ~Free*.*KILL~ xD
new g_free new g_cvar_t_only new bool:timer[33] = false
public plugin_init() { register_plugin(PLUGIN, VERSION, AUTHOR)
g_cvar_t_only = register_cvar("dh_free_run_t_only", "1")
register_clcmd("say free", "cmdFree") register_clcmd("say /free", "cmdFree") register_event("HLTV", "eventRoundStart", "a", "1=0", "2=0") RegisterHam(Ham_Touch, "armoury_entity", "fwdTouch") RegisterHam(Ham_Touch, "weaponbox", "fwdTouch") RegisterHam(Ham_Use, "func_button", "fwdUse") }
public eventRoundStart(id) { g_free = false new i new maxplayers = get_maxplayers() for(i=1;i<= maxplayers;i++) { if(is_user_connected(i)) { set_task(20.0, "functask", i) timer[i] = false } } } public cmdFree(id) { if(timer[id] == false) { if (get_pcvar_num(g_cvar_t_only) && get_user_team(id) != 1) { client_print(id, print_center, "Only T can Use it!") return }
new players[32], plNum get_players(players, plNum, "ace", "TERRORIST")
g_free = true set_hudmessage(0, 255, 255, 0.02, -1.0, 0, 6.0, 12.0, 0.1, 0.2, 4) show_hudmessage(id, "Free and knife!") new i get_players(players, plNum, "ah") for (i = 0; i < plNum; i++) { fm_strip_user_weapons(players[i]) fm_give_item(players[i], "weapon_knife") } } else { client_print(id,print_chat, "FreeRun may call only 20 second after start a map") } }
public fwdTouch(ent, id) { if (is_user_alive(id) && g_free) return HAM_SUPERCEDE
return HAM_IGNORED }
public fwdUse(ent, idcaller, idactivator, use_type, Float:value) { if (is_user_alive(idactivator) && g_free && get_user_team(idactivator) == 1) { client_print(idactivator, print_center, "You choose FreeRun!") return HAM_SUPERCEDE }
return HAM_IGNORED } public functask(id) { timer[id] = true } Мне нужно чтобы в этом плагине после cmdFree у всех кто стреляет с какого либо оружия выполнялась команда drop, как бы так сделать?Добавлено (21.02.2010, 22:13:59) --------------------------------------------- Или чтобы drop делался только для USP
|
|
| |