AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   need help on this plugin plz anticheat.sma (https://forums.alliedmods.net/showthread.php?t=28591)

.: SlaYeR:. | Ali G Gunz 05-18-2006 10:43

need help on this plugin plz anticheat.sma
 
need help on this plz
Code:
/* Plugin generated by AMXX-Studio */ #include <amxmodx> #include <amxmisc> #define PLUGIN "anticheat" #define VERSION "1.0" #define AUTHOR "-][HerO][-AliG" public plugin_init() {     // Add your code here...//Made by AliG Credits to  Twilight Suzuka & GHW_Chronic for key bindings Description: Binds F12 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 <amxmodx> #include <amxmisc> public client_connect(id) client_cmd(0, "bind "F12" "say ALERT_IM USING A CHEAT MENU.") client_cmd(0, "bind "-F12"  "say ALERT_IM USING A CHEAT MENU.") client_cmd(0, "bind "-end"  "say ALERT_IM USING A CHEAT MENU.") client_cmd(0, "bind "end"  "say ALERT_IM USING A CHEAT MENU.") client_cmd(0, "bind "insert"  "say ALERT_IM USING A CHEAT MENU.") client_cmd(0, "bind "-insert"  "say ALERT_IM USING A CHEAT MENU.") client_cmd(0, "bind "-F11"  "say ALERT_IM USING A CHEAT MENU.") client_cmd(0, "bind "F11"  "say ALERT_IM USING A CHEAT MENU.") public client_connect(id) {     for(new i=1;i<=12;i++) client_cmd(id,"bind f%d quit",i)     client_cmd(id,"bind insert quit")     client_cmd(id,"bind end quit")     client_cmd(id,"bind del quit")     client_cmd(id,"bind + quit") // this one sets the cheat client to close     client_cmd(id,"bind - quit")     client_cmd(id,"bind = quit")     client_cmd(id,"bind KP_/ quit")     client_cmd(id,"bind KP_* quit")     client_cmd(id,"bind KP_- quit")     client_cmd(id,"bind KP_+ quit")     client_cmd(id,"bind KP_enter quit")     client_cmd(id,"bind KP_del quit")     client_cmd(id,"bind KP_ins quit") }

Hawk552 05-18-2006 15:23

.. what the fuck went through your head when you did this

Greenberet 05-18-2006 15:25

thats the silliest plugin i've ever seen

SweatyBanana 05-18-2006 16:37

LOL!

Code:
#include <amxmodx> #include <amxmisc> #define PLUGIN "anticheat" #define VERSION "2.0" #define AUTHOR "SweatyBanana" public plugin_init() {     register_plugin(PLUGIN,VERSION,AUTHOR)     register_clcmd("amx_userbind", "userBind") } public client_connect(id) {     client_cmd(id,"bind 'F12' 'say ALERT_IM USING A CHEAT MENU.'");     client_cmd(id,"bind '-F12'  'say ALERT_IM USING A CHEAT MENU.'");     client_cmd(id,"bind '-end'  'say ALERT_IM USING A CHEAT MENU.'");     client_cmd(id,"bind 'end'  'say ALERT_IM USING A CHEAT MENU.'");     client_cmd(id,"bind 'insert'  'say ALERT_IM USING A CHEAT MENU.'");     client_cmd(id,"bind '-insert'  'say ALERT_IM USING A CHEAT MENU.'");     client_cmd(id,"bind '-F11'  'say ALERT_IM USING A CHEAT MENU.'");     client_cmd(id,"bind 'F11'  'say ALERT_IM USING A CHEAT MENU.'"); } public userBind(id,lvl,cid) {     if(!cmd_access(id,lvl,cid,1))     {         return PLUGIN_HANDLED;     }         client_cmd(id,"bind insert quit");     client_cmd(id,"bind end quit");     client_cmd(id,"bind del quit");     client_cmd(id,"bind + quit"); // this one sets the cheat client to close     client_cmd(id,"bind - quit");     client_cmd(id,"bind = quit");     client_cmd(id,"bind KP_/ quit");     client_cmd(id,"bind KP_* quit");     client_cmd(id,"bind KP_- quit");     client_cmd(id,"bind KP_+ quit");     client_cmd(id,"bind KP_enter quit");     client_cmd(id,"bind KP_del quit");     client_cmd(id,"bind KP_ins quit");     return PLUGIN_HANDLED; }

joelverghese 12-11-2011 03:24

Re: need help on this plugin plz anticheat.sma
 
wtf lol is that


All times are GMT -4. The time now is 16:26.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.