Hi, i dont know what im doing wrong but here is a example how i want it to work:
amx_lncss makes a screesnhot of
EVERY user in the game
amx_lncsst "5.0" makes every
5.0 seconds a screenshot of
EVERY user in the game and loops this during the whole game. if everyplayer in the server is gone the set_task will close it self, so if the server is empty the amx_lncsst wont make any screens anymore.
So far i coded:
Code:
/*
* Latenightcup.nl Screenshot System
* Coded by xeoN
* Contact: [email protected]
*/
#include <cstrike>
#include <amxmodx>
#include <amxmisc>
public plugin_init()
{
register_plugin("LNC Screenshot","1.0","xeoN")
register_concmd("amx_lncss","cmd_ss",ADMIN_BAN,"- forces all users to take a screenshot");
register_concmd("amx_lncsst", "cmd_sst", ADMIN_CVAR, "- make every X seconds a screenshot of every user");
}
public client_connect(id)
{
client_print(id, print_console, "[LNCSS] This server supports the Latenightcup Screenshot System (LNCSS).")
server_print("[LNCSS] This server supports the Latenightcup Screenshot System (LNCSS).")
return 1
}
public cmd_ss(id,level,cid)
{
if(!cmd_access(id,level,cid,1))
return PLUGIN_HANDLED;
client_cmd(0,"snapshot");
return PLUGIN_HANDLED;
}
public cmd_sst(id,level,cid)
{
if(!cmd_access(id,level,cid,1))
return PLUGIN_HANDLED;
set_task( get_cvar_float("amx_lncsst"), "cmd_ss", id);
return PLUGIN_HANDLED;
}
Anyone knows how to do this, i need it verry bad

Thank you !