Участник
Пользователь
- Сообщения
- 67
- Реакции
- 85
Задача: отловить события потери бомбы игроком.
Отбой. Задачу решил. Тему закрываю.
"Cstrike_TitlesTXT_Game_bomb_drop" "%s1 dropped the bomb"
1 Мар 2019
C-like:
#include <amxmodx>
new const msg_bomb_drop[] = "#Game_bomb_drop"
new const text_bomb_drop[] = "%s потерял бомбу..."
public plugin_init()
{
register_plugin("Bomb dropped", "1.0", "Leo_[BH]")
register_message(get_user_msgid("TextMsg"), "OnTextMsg")
}
public OnTextMsg(msg, dest, id)
{
static szMessage[64]
get_msg_arg_string(2, szMessage, charsmax(szMessage))
// client_print(0, print_chat, szMessage) // test
if(equal(szMessage, msg_bomb_drop))
{
func_hud_drop_c4(id)
}
}
public func_hud_drop_c4(id)
{
new name[32]
get_user_name(id, name, charsmax(name))
set_hudmessage(200, 50, 0, -1.0, 0.70, 2, 3.0, 3.5, 0.0, 1.5);
show_hudmessage(0, text_bomb_drop, name)
}