mer0n Posted November 18, 2007 Report Share Posted November 18, 2007 Sveiki. Nesen savam serverim uzliku amx_screen komandu, kuru var lietot administratori uznjemot screen citiem speleetaajiem (screen saglabaajas speletaja cstrike mapite). Jautaajums ir shaads: Kaads BURTS administratoram jaadod klat accessam, lai vinjsh vareetu lietot sho komandu? ? Link to comment Share on other sites More sharing options...
cntrL Posted November 18, 2007 Report Share Posted November 18, 2007 man liekas x Link to comment Share on other sites More sharing options...
mer0n Posted November 18, 2007 Author Report Share Posted November 18, 2007 varbūt kāds zin simtprocentīgi ? Link to comment Share on other sites More sharing options...
remix.cc Posted November 18, 2007 Report Share Posted November 18, 2007 burtinu tak var mainiit koda... bet peec standarta ir admin level a: register_concmd("amx_screen", "concmd_screen", ADMIN_LEVEL_A, "<authid, nick or #userid> <screens>") Link to comment Share on other sites More sharing options...
mer0n Posted November 18, 2007 Author Report Share Posted November 18, 2007 admin level a: register_concmd("amx_screen", "concmd_screen", ADMIN_LEVEL_A, "<authid, nick or #userid> <screens>") vari luudzu ielikt shaa amx_screen plugina SMA failu ? Link to comment Share on other sites More sharing options...
remix.cc Posted November 18, 2007 Report Share Posted November 18, 2007 download_sma /* AMX Mod X script. * * Admin Screen 2 v1.0 by uTg | bigpapajiggs * * Based on Admin Screen by Rav * * amx_screen <authid/nick/userid> <number of screens> * */ #include <amxmodx> #include <amxmisc> new player //PCVAR new maxss, ssinterval, timestamptype public plugin_init() { register_plugin("Admin Screen 2", "1.1", "uTg | bigpapajiggs") register_concmd("amx_screen", "concmd_screen", ADMIN_LEVEL_A, "<authid, nick or #userid> <screens>") maxss = register_cvar("amx_maxscreens", "10") ssinterval = register_cvar("amx_ssinterval", "1.0") timestamptype = register_cvar("amx_timestamptype", "3") } public concmd_screen(id, level, cid) { //Is the amx_screen'er an admin? if(!cmd_access(id, level, cid, 3)) { return PLUGIN_HANDLED } //Read the arguements new arg1[24], arg2[4] read_argv(1, arg1, 23) read_argv(2, arg2, 3) new screens = str_to_num(arg2) new maxscreens = get_pcvar_num(maxss) //Let us make sure that there aren't too many screenshots taken if(screens > maxscreens) { console_print(id, "[AMXX] You cannot take that many screenshots!") return PLUGIN_HANDLED } //Does the target exist? player = cmd_target(id, arg1, 1) if (!player) { return PLUGIN_HANDLED } //How many screenshots? new Float:interval = get_pcvar_float(ssinterval) new array[2] array[0] = id array[1] = player set_task(interval, "takeScreen", 0, array,2, "a", screens) return PLUGIN_HANDLED } public takeScreen(array[2]) { new player = array[1] new id = array[0] //Get time, admin name, and target name 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) //No timestamp if(get_pcvar_num(timestamptype) == 0) { client_print(player, print_chat, "** Screenshot taken on player ^"%s^" by admin ^"%s^" **", name, adminname) //Take the screenshot client_cmd(player, "snapshot") } //Client Print only else if(get_pcvar_num(timestamptype) == 1) { //client_print Timestamp Message client_print(player, print_chat, "** Screenshot taken on player ^"%s^" by admin ^"%s^" (%s) **", name, adminname, timestamp) //Take the screenshot client_cmd(player, "snapshot") } //HUD Message only else if(get_pcvar_num(timestamptype) == 2) { //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, "** TIMESTAMP - %s **", timestamp) show_hudmessage(player, timestampmsg) //Take the screenshot client_cmd(player, "snapshot") } //Both else if(get_pcvar_num(timestamptype) == 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, "** TIMESTAMP - %s **", timestamp) show_hudmessage(player, timestampmsg) //client_print Timestamp Message client_print(player, print_chat, "** Screenshot taken on player ^"%s^" by admin ^"%s^" (%s) **", name, adminname, timestamp) //Take the screenshot client_cmd(player, "snapshot") } return PLUGIN_CONTINUE } Link to comment Share on other sites More sharing options...
the. EwiL Posted January 13, 2008 Report Share Posted January 13, 2008 screeni valve saglabajaas ? Link to comment Share on other sites More sharing options...
*jancis38* Posted January 13, 2008 Report Share Posted January 13, 2008 valve/cstrike Link to comment Share on other sites More sharing options...
the. EwiL Posted January 13, 2008 Report Share Posted January 13, 2008 okzz tnxx Link to comment Share on other sites More sharing options...
tk1 Posted January 13, 2008 Report Share Posted January 13, 2008 jajav saglabajas speletaja mape ka lai es to varu apskatities? Link to comment Share on other sites More sharing options...
Kiwix Posted January 13, 2008 Report Share Posted January 13, 2008 Pie reizies... Kāds nevar iedot linku uz pamācību, lai nofočētie skrīni saglabājas WEB`ā, nevis spēlētājam cstrike mapē???? Link to comment Share on other sites More sharing options...
*jancis38* Posted January 13, 2008 Report Share Posted January 13, 2008 nevar tā izdarīt, tie skrīni tiek veidoti ar snapshot komandu. Link to comment Share on other sites More sharing options...
tk1 Posted January 13, 2008 Report Share Posted January 13, 2008 Vo tam jau buutu jeega XD Link to comment Share on other sites More sharing options...
samuray Posted January 14, 2008 Report Share Posted January 14, 2008 uztaisi programm, kas viņu uploados uz servera! Link to comment Share on other sites More sharing options...
Recommended Posts