Skocz do zawartości

Witamy w Nieoficjalnym polskim support'cie AMX Mod X

Witamy w Nieoficjalnym polskim support'cie AMX Mod X, jak w większości społeczności internetowych musisz się zarejestrować aby móc odpowiadać lub zakładać nowe tematy, ale nie bój się to jest prosty proces w którym wymagamy minimalnych informacji.
  • Rozpoczynaj nowe tematy i odpowiedaj na inne
  • Zapisz się do tematów i for, aby otrzymywać automatyczne uaktualnienia
  • Dodawaj wydarzenia do kalendarza społecznościowego
  • Stwórz swój własny profil i zdobywaj nowych znajomych
  • Zdobywaj nowe doświadczenia

Dołączona grafika Dołączona grafika

Guest Message by DevFuse
 

- - - - -

Ultimate ScreenShot v1.2


  • Nie możesz napisać tematu
  • Zaloguj się, aby dodać odpowiedź
67 odpowiedzi w tym temacie

#1 Gość__*

  • Gość

Reputacja: 0

Offline

Napisano 25.04.2008 18:16

Ultimate ScreenShot v1.2
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



#2 MafiaDL

    Naj-Najstarszy Moderator

  • Przyjaciel

Reputacja: 561
Wszechwiedzący

  • Postów:3 492
  • GG:
  • Imię:Łukasz
  • Lokalizacja:Warsaw
Offline

Napisano 25.04.2008 18:25

Spoko nawet :)

Jakby ktoś pytał

Czy da sie zrobic zeby screeny zapisywały sie u admina na kompie?
Nie niestety nie da sie :)


  • +
  • -
  • 0

#3 ESTCOBS

    Pomocny

  • Użytkownik

Reputacja: 4
Nowy

  • Postów:58
  • GG:
  • Lokalizacja:Kraków
Offline

Napisano 25.04.2008 18:47

Nazwa tematu do poprawy :D
Graczom :D Nie graczą :D
===
Ale trzeba pamiętać o tym że nie każdy WH na zdjęciu wyjdzie ;P
Niektóre się wyłączają kiedy ktoś próbuje wywołać komendę snapshot :] O:)
  • +
  • -
  • 0

#4 Gość__*

  • Autor tematu
  • Gość

Reputacja: 0

Offline

Napisano 25.04.2008 18:49

Nazwa tematu do poprawy
Graczom Nie graczą

Zrobione

Ale trzeba pamiętać o tym że nie każdy WH na zdjęciu wyjdzie ;P
Niektóre się wyłączają kiedy ktoś próbuje wywołać komendę snapshot

Nie wiem nie znam się na hakach ale plugin przydatny xP

#5 misio111

    Nowy

  • Użytkownik

Reputacja: 0
Nowy

  • Postów:3
  • GG:
Offline

Napisano 26.04.2008 09:01

Zrobiłbyś ze zamiast na ip banuje na steam id?
  • +
  • -
  • 0

#6 MafiaDL

    Naj-Najstarszy Moderator

  • Przyjaciel

Reputacja: 561
Wszechwiedzący

  • Postów:3 492
  • GG:
  • Imię:Łukasz
  • Lokalizacja:Warsaw
Offline

Napisano 06.08.2008 12:37

Da rade ktos przerobic aby nie przenosiło na spec ;/ tylko tak jak amx_screen2 ? ;/


#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, "screenshotPrea 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, "screenshot%s 's ip is %s!",name,ip)
console_print(id, "screenshot%s 's ip is %s!",name,ip)
console_print(id, "screenshot%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, "screenshotLast 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)
}

  • +
  • -
  • 0

#7 Saper

    Godlike

  • Przyjaciel

Reputacja: 221
Profesjonalista

  • Postów:1 315
  • GG:
  • Imię:Juzio ;d
  • Lokalizacja:Bialystok
Offline

Napisano 07.08.2008 22:24

A dalo by sie cos takiego zrobic zeby plugin robil screena z perspektywy gracza i wysylal je na server ??? Wtedy by bylo widac rowniez czy gracz ma wh lub jakiegos czita...
  • +
  • -
  • 0

#8 Siwson

    Zaawansowany

  • Użytkownik

Reputacja: 12
Początkujący

  • Postów:76
  • GG:
  • Imię:Michał
  • Lokalizacja:Wrocław
Offline

Napisano 07.08.2008 22:33

Nie jestem pewny, ale chyba się da. Podstawa to oczywiście wysłany screen do gracza. Jeśli mu zależy to napisze np. na forum i się wytłumaczy. Gdy odmówi dodania screena to masz pewność że nie grał czysto. Uważam że wersja, która została przedstawiona jest najlepsza.
  • +
  • -
  • 0

#9 Miczu

    Godlike

  • Przyjaciel

Reputacja: 657
Wszechmogący

  • Postów:2 862
Offline

Napisano 07.08.2008 22:36

Amxx nie ma mozliwosci dzialania na plikach graczy - bo by moza inaczej wykradac pliki i prywatne dane.

Poza tym sa czity co wykrywaja komende snapshot i sie wylanczaja wiec takie sposoby na czity nigdy nie byly popularyzowane na aliedmodzie ;>
  • +
  • -
  • 0

#10 seba76

    Pomocny

  • Użytkownik

Reputacja: 0
Nowy

  • Postów:56
  • GG:
  • Lokalizacja:Katowice
Offline

Napisano 14.09.2008 00:59

hmm a plugin co wymusza ex_interp 0.01 ?? nie dziala na kompie gracza ??
  • +
  • -
  • 0

#11 Mysliwy^^

    Wszechwidzący

  • Użytkownik

Reputacja: 10
Początkujący

  • Postów:264
  • GG:
  • Lokalizacja:Mragowo
Offline

Napisano 19.09.2008 08:47

wkleilem wszystko tak jak napisales z tym ss i nie dziala mi :(
  • +
  • -
  • 0

#12 Gość__*

  • Autor tematu
  • Gość

Reputacja: 0

Offline

Napisano 19.09.2008 20:27

wkleilem wszystko tak jak napisales z tym ss i nie dziala mi :(

Pokaż logi ( http://amxx.pl/viewtopic.php?t=2106 ). Aha, i na pewno nie zrobiłeś wszystko dobrze ;)

#13 Cay

    Życzliwy

  • Użytkownik

Reputacja: 0
Nowy

  • Postów:39
Offline

Napisano 20.09.2008 20:46

mam pytanie czy moglby ktos przerobic ten plug na PL, ja cos probowalem ale gdy chcialem skombilowac plik .amxx to wyskoczyly bledy :(

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)
}

  • +
  • -
  • 0

#14 wizu

    Godlike

  • Przyjaciel

Reputacja: 224
Profesjonalista

  • Postów:1 217
  • GG:
  • Lokalizacja:Sanok
Offline

Napisano 21.09.2008 09:08

Coś popsułeś. Problem stwarzają 3 identyczne linijki:
client_print(player, print_chat, "** ^"%s^" admin ^"%s^" by admin ^"%s^" (%s) **", name, adminname, timestamp)zrobil Ci zdjecie
Usuń 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)
}

  • +
  • -
  • 0

#15 MafiaDL

    Naj-Najstarszy Moderator

  • Przyjaciel

Reputacja: 561
Wszechwiedzący

  • Postów:3 492
  • GG:
  • Imię:Łukasz
  • Lokalizacja:Warsaw
Offline

Napisano 21.09.2008 16:15

łap moje wykasowalem ze przezuca do SPEC i zabija gracza. Wiec leci ss i gra dalej.

wyglada tak:

Dołączona grafika

Załączone pliki


  • +
  • -
  • 0

#16 Klycior

    Wszechpomocny

  • Użytkownik

Reputacja: 43
Pomocny

  • Postów:370
  • GG:
  • Lokalizacja:Tarnowskie Góry
Offline

Napisano 10.12.2008 22:04

Jak dla mnie to jest żalowe.

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.
  • +
  • -
  • 0

#17 MafiaDL

    Naj-Najstarszy Moderator

  • Przyjaciel

Reputacja: 561
Wszechwiedzący

  • Postów:3 492
  • GG:
  • Imię:Łukasz
  • Lokalizacja:Warsaw
Offline

Napisano 10.12.2008 22:07

wiekszosc czitów wylacza sie na polecenie snapshot nie oczekuj ze to jakis VAC :P mi wpadlo kilka osob i bylo widac typa przez sciane albo name przez sciane :P
  • +
  • -
  • 0

#18 Klycior

    Wszechpomocny

  • Użytkownik

Reputacja: 43
Pomocny

  • Postów:370
  • GG:
  • Lokalizacja:Tarnowskie Góry
Offline

Napisano 11.12.2008 21:10

To trzeba czekać aż ktoś coś sensownego wymyśli.

:)
  • +
  • -
  • 0

#19 Wujek

    Wszechwidzący

  • Użytkownik

Reputacja: 14
Początkujący

  • Postów:279
Offline

Napisano 23.12.2008 11:36

Mam pytanie. Czy ten plugin od razu banuje? Czy tylko robi screeny? I potem jak moge sam kolesia zbanować.
  • +
  • -
  • 0

Reksio FFA, najstarszy serwer CS 1.6 w Polsce - 193.33.177.14:27051

SRU :)


#20 MafiaDL

    Naj-Najstarszy Moderator

  • Przyjaciel

Reputacja: 561
Wszechwiedzący

  • Postów:3 492
  • GG:
  • Imię:Łukasz
  • Lokalizacja:Warsaw
Offline

Napisano 23.12.2008 11:43

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 ;]
  • +
  • -
  • 0




Użytkownicy przeglądający ten temat: 0

0 użytkowników, 0 gości, 0 anonimowych