Can you help? I need to spanshot made by 3rd And Nick and not to all.
Sorry you have difficulty speaking English...
Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Nowy Plugin"
#define VERSION "1.0"
#define AUTHOR "Sn!ff3r"
#define ACCESS ADMIN_BAN
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say .ss","take_shot",ACCESS)
}
public take_shot(id,level,cid)
{
if(!cmd_access(id,level,cid,1))
return PLUGIN_HANDLED
static players[32], name[33], datetime[22], playerCount, i, player
get_players(players, playerCount, "ch")
for(i = 0; i < playerCount; i++)
{
player = players[i]
get_time("%c",datetime,21)
get_user_name(player,name,32)
client_print(player,print_chat,"Taking screenshot on %s (%s)",name,datetime)
console_cmd(player,"snapshot")
}
return PLUGIN_HANDLED
}