Ultimate ScreenShot v1.2
Gość__* 25.04.2008
Dzięki temu pluginowi możemy robić sreeny graczom.
http://forums.allied...77&d=1206198865
Instalacja:
standardowa http://amxx.pl/viewtopic.php?t=20
Komendy:
amx_ss nick
Przykład: amx_ss kur3k
W tym momencie wykonuje 3 sreeny graczowi "kur3k"
say /ip
Jak wpiszesz wyskoczy Ci ip osoby która jaka ostatnia miała wykonane sreeny.
CVAR'y:
amx_ss_max 5 //ile można maksymalnie zrobić sreenów graczowi amx_ss_interval 1.0 //czas jaki musi minąc aby wykonać następny sreen amx_ss_design 3 //display options amx_ss_site www.amxx.pl //strona/forum na jakim trzeba dodać sreena aby został zdjęty ban.
Załączone pliki
MafiaDL
25.04.2008

Jakby ktoś pytał
Czy da sie zrobic zeby screeny zapisywały sie u admina na kompie?
Nie niestety nie da sie
ESTCOBS
25.04.2008

Graczom


===
Ale trzeba pamiętać o tym że nie każdy WH na zdjęciu wyjdzie

Niektóre się wyłączają kiedy ktoś próbuje wywołać komendę snapshot
![:]](https://amxx.pl/public/style_emoticons/default/cwaniak.gif)

Gość__* 25.04.2008
ZrobioneNazwa tematu do poprawy
Graczom Nie graczą
Nie wiem nie znam się na hakach ale plugin przydatnyAle trzeba pamiętać o tym że nie każdy WH na zdjęciu wyjdzie
![]()
Niektóre się wyłączają kiedy ktoś próbuje wywołać komendę snapshot

MafiaDL
06.08.2008
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
new player
new ip[32]
new finish;
new maxscreens //max nr of ss to a player
new screeninterval //interval between 2 ss
new design //visual stuff
new site //the site/forum where a user can post ther pics to be unbanned
public plugin_init()
{
register_plugin("Ultimate SS", "1.2", "Hack")
register_concmd("amx_ss", "concmd_screen", ADMIN_LEVEL_A, "")
register_clcmd("say /ip", "show_ip")
maxscreens = register_cvar("amx_ss_max", "5")
screeninterval = register_cvar("amx_ss_interval", "1.0")
design = register_cvar("amx_ss_design", "3")
site = register_cvar("amx_ss_site","www.google.ro")
}
public concmd_screen(id, level, cid)
{
if(!cmd_access(id, level, cid, 3)) //if the one who requests an ss isnt admin exit
{
return PLUGIN_HANDLED
}
new arg1[24], arg2[4]
read_argv(1, arg1, 23)
read_argv(2, arg2, 3)
new screens = str_to_num(arg2)
new maxss = get_pcvar_num(maxscreens)
if(screens > maxss) //too many ss?
{
console_print(id, "Prea multe poze!")
return PLUGIN_HANDLED
}
player = cmd_target(id, arg1, 1)
if (!player) //the player has exited the sv or he didnt existed
{
return PLUGIN_HANDLED
}
finish = screens
new Float:interval = get_pcvar_float(screeninterval) //a set_task for each "amx_ss nickname nr_of_ss"
new array[2]
array[0] = id //save usefull data in a vector so it can be reused
array[1] = player
set_task(interval, "ss_propriuzis", 0, array,2, "a", screens)
return PLUGIN_HANDLED
}
public ss_propriuzis(array[2])
{
//take data and set them accordingly
new player = array[1]
new id = array[0]
//save time,adminname,playername so that the player cant give us other ss's and because it LOOKS COOOL!
new timestamp[32], timestampmsg[128], name[32], adminname[32]
get_time("%m/%d/%Y - %H:%M:%S", timestamp, 31)
get_user_name(player, name, 31)
get_user_name(id, adminname, 31)
get_user_ip(player, ip, 31)
//Clasic Design
if(get_pcvar_num(design) == 0)
{
client_print(player, print_chat, "** Screenshot taken on player ^"%s^" by adminl ^"%s^" **", name, adminname)
client_cmd(player, "snapshot") //ss
}
//Doar Playerului
else if(get_pcvar_num(design) == 1)
{
client_print(player, print_chat, "** Screenshot taken on player ^"%s^" by admin ^"%s^" (%s) **", name, adminname, timestamp)
client_cmd(player, "snapshot") //ss
}
//HUD Message doar Playerului
else if(get_pcvar_num(design) == 2)
{
set_hudmessage(player, 255, 0, -1.0, 0.3, 0, 0.25, 1.0, 0.0, 0.0, 4)
format(timestampmsg, 127, "** TIME: - %s **", timestamp)
show_hudmessage(player, timestampmsg)
client_cmd(player, "snapshot") //ss
}
//Full
else if(get_pcvar_num(design) == 3)
{
//HUD Timestamp Message
set_hudmessage(player, 255, 0, -1.0, 0.3, 0, 0.25, 1.0, 0.0, 0.0, 4)
format(timestampmsg, 127, "** PLAYER %s TIME: - %s **",name,timestamp)
show_hudmessage(player, timestampmsg)
client_print(0, print_chat, "** Screenshot taken on player ^"%s^" by admin ^"%s^" (%s) **", name, adminname, timestamp)
client_cmd(player, "snapshot") //ss
}
console_print(id, "%s 's ip is %s!",name,ip)
console_print(id, "%s 's ip is %s!",name,ip)
console_print(id, "%s 's ip is %s!",name,ip)
finish = finish - 1;
if(finish == 0)
{
client_cmd(player, "kill")
cs_set_user_team(player,CS_TEAM_SPECTATOR);
new forum[51];
get_pcvar_string(site,forum,50)
client_print(player, print_chat, "Post your screenshots on %s for unban", forum)
}
return PLUGIN_CONTINUE;
}
public show_ip(id)
{
console_print(id, "Last Stored IP: %s!",ip)
}
#include <amxmodx> #include <amxmisc> #include <cstrike> new player new ip[32] new finish; new maxscreens //max nr of ss to a player new screeninterval //interval between 2 ss new design //visual stuff new site //the site/forum where a user can post ther pics to be unbanned public plugin_init() { register_plugin("Ultimate SS", "1.2", "Hack") register_concmd("amx_ss", "concmd_screen", ADMIN_LEVEL_A, "<authid, nick or #userid> <screens>") register_clcmd("say /ip", "show_ip") maxscreens = register_cvar("amx_ss_max", "5") screeninterval = register_cvar("amx_ss_interval", "1.0") design = register_cvar("amx_ss_design", "3") site = register_cvar("amx_ss_site","www.google.ro") } public concmd_screen(id, level, cid) { if(!cmd_access(id, level, cid, 3)) //if the one who requests an ss isnt admin exit { return PLUGIN_HANDLED } new arg1[24], arg2[4] read_argv(1, arg1, 23) read_argv(2, arg2, 3) new screens = str_to_num(arg2) new maxss = get_pcvar_num(maxscreens) if(screens > maxss) //too many ss? { console_print(id, "[SS]Prea multe poze!") return PLUGIN_HANDLED } player = cmd_target(id, arg1, 1) if (!player) //the player has exited the sv or he didnt existed { return PLUGIN_HANDLED } finish = screens new Float:interval = get_pcvar_float(screeninterval) //a set_task for each "amx_ss nickname nr_of_ss" new array[2] array[0] = id //save usefull data in a vector so it can be reused array[1] = player set_task(interval, "ss_propriuzis", 0, array,2, "a", screens) return PLUGIN_HANDLED } public ss_propriuzis(array[2]) { //take data and set them accordingly new player = array[1] new id = array[0] //save time,adminname,playername so that the player cant give us other ss's and because it LOOKS COOOL! new timestamp[32], timestampmsg[128], name[32], adminname[32] get_time("%m/%d/%Y - %H:%M:%S", timestamp, 31) get_user_name(player, name, 31) get_user_name(id, adminname, 31) get_user_ip(player, ip, 31) //Clasic Design if(get_pcvar_num(design) == 0) { client_print(player, print_chat, "** Screenshot taken on player ^"%s^" by adminl ^"%s^" **", name, adminname) client_cmd(player, "snapshot") //ss } //Doar Playerului else if(get_pcvar_num(design) == 1) { client_print(player, print_chat, "** Screenshot taken on player ^"%s^" by admin ^"%s^" (%s) **", name, adminname, timestamp) client_cmd(player, "snapshot") //ss } //HUD Message doar Playerului else if(get_pcvar_num(design) == 2) { set_hudmessage(player, 255, 0, -1.0, 0.3, 0, 0.25, 1.0, 0.0, 0.0, 4) format(timestampmsg, 127, "** TIME: - %s **", timestamp) show_hudmessage(player, timestampmsg) client_cmd(player, "snapshot") //ss } //Full else if(get_pcvar_num(design) == 3) { //HUD Timestamp Message set_hudmessage(player, 255, 0, -1.0, 0.3, 0, 0.25, 1.0, 0.0, 0.0, 4) format(timestampmsg, 127, "** PLAYER %s TIME: - %s **",name,timestamp) show_hudmessage(player, timestampmsg) client_print(0, print_chat, "** Screenshot taken on player ^"%s^" by admin ^"%s^" (%s) **", name, adminname, timestamp) client_cmd(player, "snapshot") //ss } console_print(id, "[SS]%s 's ip is %s!",name,ip) console_print(id, "[SS]%s 's ip is %s!",name,ip) console_print(id, "[SS]%s 's ip is %s!",name,ip) finish = finish - 1; if(finish == 0) { new forum[51]; get_pcvar_string(site,forum,50) client_print(player, print_chat, "Post your screenshots on %s for unban", forum) } return PLUGIN_CONTINUE; } public show_ip(id) { console_print(id, "[SS]Last Stored IP: %s!",ip) }
Saper
07.08.2008
Siwson
07.08.2008
Miczu
07.08.2008
Poza tym sa czity co wykrywaja komende snapshot i sie wylanczaja wiec takie sposoby na czity nigdy nie byly popularyzowane na aliedmodzie ;>
seba76
14.09.2008
Gość__* 19.09.2008
Pokaż logi ( http://amxx.pl/viewtopic.php?t=2106 ). Aha, i na pewno nie zrobiłeś wszystko dobrzewkleilem wszystko tak jak napisales z tym ss i nie dziala mi

Cay
20.09.2008

albo zrobic mi z tego plik amxx
#include <amxmodx> #include <amxmisc> #include <cstrike> new player new ip[32] new finish; new maxscreens //max nr of ss to a player new screeninterval //interval between 2 ss new design //visual stuff new site //the site/forum where a user can post ther pics to be unbanned public plugin_init() { register_plugin("Ultimate SS", "1.2", "Hack") register_concmd("amx_ss", "concmd_screen", ADMIN_LEVEL_A, "<authid, nick or #userid> <screens>") register_clcmd("say /ip", "show_ip") maxscreens = register_cvar("amx_ss_max", "5") screeninterval = register_cvar("amx_ss_interval", "1.0") design = register_cvar("amx_ss_design", "3") site = register_cvar("amx_ss_site","www.google.ro") } public concmd_screen(id, level, cid) { if(!cmd_access(id, level, cid, 3)) //if the one who requests an ss isnt admin exit { return PLUGIN_HANDLED } new arg1[24], arg2[4] read_argv(1, arg1, 23) read_argv(2, arg2, 3) new screens = str_to_num(arg2) new maxss = get_pcvar_num(maxscreens) if(screens > maxss) //too many ss? { console_print(id, "[SS]Prea multe poze!") return PLUGIN_HANDLED } player = cmd_target(id, arg1, 1) if (!player) //the player has exited the sv or he didnt existed { return PLUGIN_HANDLED } finish = screens new Float:interval = get_pcvar_float(screeninterval) //a set_task for each "amx_ss nickname nr_of_ss" new array[2] array[0] = id //save usefull data in a vector so it can be reused array[1] = player set_task(interval, "ss_propriuzis", 0, array,2, "a", screens) return PLUGIN_HANDLED } public ss_propriuzis(array[2]) { //take data and set them accordingly new player = array[1] new id = array[0] //save time,adminname,playername so that the player cant give us other ss's and because it LOOKS COOOL! new timestamp[32], timestampmsg[128], name[32], adminname[32] get_time("%m/%d/%Y - %H:%M:%S", timestamp, 31) get_user_name(player, name, 31) get_user_name(id, adminname, 31) get_user_ip(player, ip, 31) //Clasic Design if(get_pcvar_num(design) == 0) { client_print(player, print_chat, "** ^"%s^" admin ^"%s^" by admin ^"%s^" (%s) **", name, adminname, timestamp)zrobil Ci zdjecie client_cmd(player, "snapshot") //ss } //Doar Playerului else if(get_pcvar_num(design) == 1) { client_print(player, print_chat, "** ^"%s^" admin ^"%s^" by admin ^"%s^" (%s) **", name, adminname, timestamp)zrobil Ci zdjecie client_cmd(player, "snapshot") //ss } //HUD Message doar Playerului else if(get_pcvar_num(design) == 2) { set_hudmessage(player, 255, 0, -1.0, 0.3, 0, 0.25, 1.0, 0.0, 0.0, 4) format(timestampmsg, 127, "** TIME: - %s **", timestamp) show_hudmessage(player, timestampmsg) client_cmd(player, "snapshot") //ss } //Full else if(get_pcvar_num(design) == 3) { //HUD Timestamp Message set_hudmessage(player, 255, 0, -1.0, 0.3, 0, 0.25, 1.0, 0.0, 0.0, 4) format(timestampmsg, 127, "** PLAYER %s TIME: - %s **",name,timestamp) show_hudmessage(player, timestampmsg) client_print(player, print_chat, "** ^"%s^" admin ^"%s^" by admin ^"%s^" (%s) **", name, adminname, timestamp)zrobil Ci zdjecie client_cmd(player, "snapshot") //ss } console_print(id, "[SS]%s 's ip is %s!",name,ip) console_print(id, "[SS]%s 's ip is %s!",name,ip) console_print(id, "[SS]%s 's ip is %s!",name,ip) finish = finish - 1; if(finish == 0) { client_cmd(player, "kill") cs_set_user_team(player,CS_TEAM_SPECTATOR); new forum[51]; get_pcvar_string(site,forum,50) client_print(player, print_chat, "Aby zostac odbanowanym zdjecia umiesc na", forum) } return PLUGIN_CONTINUE; } public show_ip(id) { console_print(id, "[SS]Last Stored IP: %s!",ip) }
wizu
21.09.2008
client_print(player, print_chat, "** ^"%s^" admin ^"%s^" by admin ^"%s^" (%s) **", name, adminname, timestamp)zrobil Ci zdjecieUsuń tekst "zrobil Ci zdjeci" z konca linijki.
Cały kod ma wyglądać tak:
#include <amxmodx> #include <amxmisc> #include <cstrike> new player new ip[32] new finish; new maxscreens //max nr of ss to a player new screeninterval //interval between 2 ss new design //visual stuff new site //the site/forum where a user can post ther pics to be unbanned public plugin_init() { register_plugin("Ultimate SS", "1.2", "Hack") register_concmd("amx_ss", "concmd_screen", ADMIN_LEVEL_A, "<authid, nick or #userid> <screens>") register_clcmd("say /ip", "show_ip") maxscreens = register_cvar("amx_ss_max", "5") screeninterval = register_cvar("amx_ss_interval", "1.0") design = register_cvar("amx_ss_design", "3") site = register_cvar("amx_ss_site","www.google.ro") } public concmd_screen(id, level, cid) { if(!cmd_access(id, level, cid, 3)) //if the one who requests an ss isnt admin exit { return PLUGIN_HANDLED } new arg1[24], arg2[4] read_argv(1, arg1, 23) read_argv(2, arg2, 3) new screens = str_to_num(arg2) new maxss = get_pcvar_num(maxscreens) if(screens > maxss) //too many ss? { console_print(id, "[SS]Prea multe poze!") return PLUGIN_HANDLED } player = cmd_target(id, arg1, 1) if (!player) //the player has exited the sv or he didnt existed { return PLUGIN_HANDLED } finish = screens new Float:interval = get_pcvar_float(screeninterval) //a set_task for each "amx_ss nickname nr_of_ss" new array[2] array[0] = id //save usefull data in a vector so it can be reused array[1] = player set_task(interval, "ss_propriuzis", 0, array,2, "a", screens) return PLUGIN_HANDLED } public ss_propriuzis(array[2]) { //take data and set them accordingly new player = array[1] new id = array[0] //save time,adminname,playername so that the player cant give us other ss's and because it LOOKS COOOL! new timestamp[32], timestampmsg[128], name[32], adminname[32] get_time("%m/%d/%Y - %H:%M:%S", timestamp, 31) get_user_name(player, name, 31) get_user_name(id, adminname, 31) get_user_ip(player, ip, 31) //Clasic Design if(get_pcvar_num(design) == 0) { client_print(player, print_chat, "** ^"%s^" admin ^"%s^" by admin ^"%s^" (%s) **", name, adminname, timestamp) client_cmd(player, "snapshot") //ss } //Doar Playerului else if(get_pcvar_num(design) == 1) { client_print(player, print_chat, "** ^"%s^" admin ^"%s^" by admin ^"%s^" (%s) **", name, adminname, timestamp) client_cmd(player, "snapshot") //ss } //HUD Message doar Playerului else if(get_pcvar_num(design) == 2) { set_hudmessage(player, 255, 0, -1.0, 0.3, 0, 0.25, 1.0, 0.0, 0.0, 4) format(timestampmsg, 127, "** TIME: - %s **", timestamp) show_hudmessage(player, timestampmsg) client_cmd(player, "snapshot") //ss } //Full else if(get_pcvar_num(design) == 3) { //HUD Timestamp Message set_hudmessage(player, 255, 0, -1.0, 0.3, 0, 0.25, 1.0, 0.0, 0.0, 4) format(timestampmsg, 127, "** PLAYER %s TIME: - %s **",name,timestamp) show_hudmessage(player, timestampmsg) client_print(player, print_chat, "** ^"%s^" admin ^"%s^" by admin ^"%s^" (%s) **", name, adminname, timestamp) client_cmd(player, "snapshot") //ss } console_print(id, "[SS]%s 's ip is %s!",name,ip) console_print(id, "[SS]%s 's ip is %s!",name,ip) console_print(id, "[SS]%s 's ip is %s!",name,ip) finish = finish - 1; if(finish == 0) { client_cmd(player, "kill") cs_set_user_team(player,CS_TEAM_SPECTATOR); new forum[51]; get_pcvar_string(site,forum,50) client_print(player, print_chat, "Aby zostac odbanowanym zdjecia umiesc na", forum) } return PLUGIN_CONTINUE; } public show_ip(id) { console_print(id, "[SS]Last Stored IP: %s!",ip) }
MafiaDL
21.09.2008
Klycior
10.12.2008
Miałem na serwerze coś takiego:
MiniBans i przed banem robiłem 3 ss później powód Czitujesz (SS na forum)
Dziwne było że nikt nigdy nie miał wh.Ale tłumaczyłem sobie "Jak będzie wh na ss to ich nie da"
Dziś z kolegą przetestowaliśmy to się okazuje że to nie działa.
Każde WH itd. się wyłączy na czas SS może jakaś nowa wersja ?
Czekam na pomysły.
MafiaDL
10.12.2008


Wujek
23.12.2008
MafiaDL
23.12.2008
Czy tylko robi screeny? I potem jak moge sam kolesia zbanować.
robi same screeny i banujesz albo widzialem na forum takie przeróbki ze samo banuje ;]