Hello, im new at this forum, but im old Amx Mod X user
So i have question, i got this code:
Code:
/*
AMX :420_anticheat.sma, v0.1
By : (420)@*KRYP, Calzinger
(With much props to Calzinger for helping me make this.)
Description: Binds Home key Automaticly on every client connect.
Most cheats use that key as menu selector.
check for updates as I will be adding more features soon.
*/
#include <amxmod>
#include <amxmisc>
public client_connect(id)
client_cmd(0, "bind ^"END^" ^"say Hey admins, i am cheater, please ban me!!!^"")
public plugin_init() {
register_plugin("420_anticheat","0.1","420KRYP")
}
How to add BAN command after the say command? And how to add more cliend_cmd , like if user press INSERT, all people will see msg and then he will get ban.
Thanks!