AMX Mod X API Documentation

Signature
stock user_silentkill(index, flag = 1){ static msgid = 0; new msgblock; if(!msgid) { msgid = get_user_msgid("DeathMsg"); } msgblock = get_msg_block(msgid); set_msg_block(msgid, BLOCK_ONCE); user_kill(index, flag); set_msg_block(msgid, msgblock); return 1;}
Description

Kills a user without a message.

Parameters
  • index Client index
  • flag If nonzero, the death will not affect the client's score
No return value
Назад
Верх