Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <amxmodx.inc>
- new pPlugin;
- public plugin_init() {
- pPlugin = register_cvar("amx_adi", "1");
- register_clcmd("say /function", "Function");
- }
- public Function(id) {
- if(get_pcvar_num(pPlugin) == 0) return 1;
- client_print(id, print_chat, "Plugin Is ENABLED !!!");
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment