Участник
Пользователь
- Сообщения
- 278
- Реакции
- 137
Hello,
I am trying to send text for amx_heal. But there is a problem I can't fix.
I am trying to send text for amx_heal. But there is a problem I can't fix.
PHP:
send_print(const id, const arg[])
{
static teamname[18];
formatex(teamname, charsmax(teamname), "%s", arg[1] == 'C' ? "Counter-Terrorist" : arg[1] == 'T' ? "Terrorist" : "all");
client_print_color(0, 0, "%n gave something to %s players.", id, teamname);
// Array Must Be Indexed
client_print_color(0, 0, "%n gave something to %s players.", id, teamname[0]);
// PurposeLess gave something to C players. (for CT) a players (for all)
client_print_color(0, 0, "%n gave something to %s players.", id, arg[1]);
// PurposeLess gave something to C players. (for CT) a players (for all)
// arg = "@CT" or "@TERRORIST" or "@all"
}