Quote:
Originally Posted by georgik57
CS is not a fair game anymore for ages now. Stop wasting your time with tournaments played from home.
If they don't give you the demo when asked -> BAN and end of story.
Code:
#include <amxmodx> new g_recording[33]; public plugin_init() { register_clcmd("record", "clcmd_record") register_clcmd("stop", "clcmd_stop") register_clcmd("stopdemo", "clcmd_stop") } public client_disconnect(id) g_recording[id] = false; public clcmd_record(id) { new szArg[2]; read_argv(1, szArg, 1) if (szArg[0]) &nb sp;g_recording[id] = true; } public clcmd_stop(id) g_recording[id] = false;
|
That won't work, I tryed that.
Thank you all for your replies.