Existing user? Sign in
Sign up
Games
Servers
Useful
User
Pass
2FA
[Rezolvat] cta.freakz.ro amx_blind care chiar functioneaza
Freakz Forum Index
->
Trash Bin
->
CS 2006-2019 (Archived)
->
Counter-Strike: Help zone
Author
Message
1550
bilute
[CTA.Probleme.Tehnice]
Status: Offline
(since 04-01-2017 12:06)
Joined: 04 May 2013
Posts: 1131
,
Topics: 114
Location:
Constanta
Reputation:
147.2
Votes
: 69
Posted: 15-02-2015, 17:43:04
| Translate post to:
... (
Click for more languages
)
Vreau plugin amx_blind , Dar vreau unul bun. Am cautat si toate sunt praf, trb sa dau de 2 ori amx_blind casa ia si sa scoata +ca nu ii da destroy cand face frag..
Last edited by
bilute
on 15-02-2015, 18:56:45; edited 1 time in total
0
0
Back to top
FreakaZoid.
[Freakazoid]
Status: Offline
(since 13-12-2018 21:55)
Joined: 13 Jul 2014
Posts: 1617
,
Topics: 203
Location:
Calarasi, Romania.
Reputation:
45.7
Votes
: 38
Posted: 15-02-2015, 18:09:33
| Translate post to:
... (
Click for more languages
)
Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "AMXX BLIND"
#define VERSION "1.0"
#define AUTHOR "MHz"
new bool:is_user_blinded[33]
new g_IP[32]
//thx to alliedmods.net
new g_msgScreenFade
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
g_msgScreenFade = get_user_msgid("ScreenFade")
register_concmd("amx_blind","admin_blind", ADMIN_BAN,"<nume> - da blind jucatorului")
register_concmd("amx_unblind","admin_unblind",ADMIN_BAN,"<nume> - unblind la jucator")
register_cvar("amxx_server","CS.FREAKZ.RO")
}
public client_putinserver(id)
{
is_user_blinded[id] = false
}
public client_disconnect(id)
{
is_user_blinded[id] = false
}
public admin_blind(id, lvl, cid)
{
if(!(cmd_access(id, lvl, cid, 2)))
return PLUGIN_HANDLED
new argument[32], player, name[32]
read_argv(1, argument, 31)
player = cmd_target(id, argument, 1)
if(!player)
return PLUGIN_HANDLED
if(is_user_connected(player))
{
get_user_name(player, name, charsmax(name))
if(!is_user_blinded[player])
{
if(is_user_alive(player))
{
is_user_blinded[id] = true
ScreenFadePlayer(player, 360.0, 255, 255, 255, 255)
client_cmd(id, "amx_chat ^"%s a primit blind^"", name)
}
else
{
console_print(id, "[AMXX] %s trebuie sa fie in viata !", name)
}
}
else
{
console_print(id, "[AMXX] %s are deja blind !", name)
}
}
return PLUGIN_HANDLED
}
public ScreenFadePlayer(player, Float:fDuration, red, green, blue, alpha)
{
if(is_user_connected(player))
{
message_begin(player ? MSG_ONE : MSG_ALL, g_msgScreenFade, {0, 0, 0}, player );
write_short(floatround(4096.0 * fDuration, floatround_round));
write_short(floatround(4096.0 * fDuration, floatround_round));
write_short(4096);
write_byte(red);
write_byte(green);
write_byte(blue);
write_byte(alpha);
message_end();
}
return PLUGIN_HANDLED
}
public admin_unblind(id, lvl, cid)
{
if(!(cmd_access(id, lvl, cid, 2)))
return PLUGIN_HANDLED
new argument[32], player, name[32]
read_argv(1, argument, 31)
player = cmd_target(id, argument, 1)
if(!player)
return PLUGIN_HANDLED
if(is_user_connected(player))
{
get_user_name(player, name, charsmax(name))
if(is_user_blinded[player])
{
is_user_blinded[player] = false
console_print(id, "[AMXX] %s a primit unblind !", name)
client_cmd(id, "amx_chat ^"%s a primit unblind^"", name)
ScreenFadePlayer(player, 0.2, 255, 255, 255, 1)
}
else
{
console_print(id, "[AMXX] %s nu are blind!", name)
}
}
return PLUGIN_HANDLED
}
public hook_death(id)
{
new msg[255], name[32]
new killer = read_data(1)
if(is_user_connected(killer))
{
if(is_user_blinded[killer])
{
get_user_name(killer, name, charsmax(name))
format(msg, charsmax(msg), "[AMXX BLIND] Creat de MHz^n%s a facut^n frag dupa blind", name)
set_hudmessage(255, 255, 255, 0.5, 0.5, 0, 6.0, 12.0)
show_hudmessage(0, msg)
client_cmd(0, "spk ^"vox/bizwarn coded user apprehend^"")
CeremDatele(killer)
}
return PLUGIN_HANDLED
}
return PLUGIN_HANDLED
}
public CeremDatele(killer)
{
new hostname[60], ip[32], name[32], authid[64], data[64], server[64]
new id = killer
if(is_user_connected(id))
{
get_cvar_string("hostname", hostname, charsmax(hostname))
get_time("%m/%d/%Y - %H:%M:%S", data, charsmax(data))
get_user_name(id, name, charsmax(name))
get_user_ip(id, ip, charsmax(ip))
get_user_authid(id, authid, charsmax(authid))
get_cvar_string("amxx_server", server, charsmax(server))
client_print(id, print_chat, "SERVER: %s", hostname)
client_print(id, print_chat, "NICKNAME: %s", name)
client_print(id, print_chat, "IP: %s", ip)
client_print(id, print_chat, "ID: %s", authid)
client_print(id, print_chat, "DATA SI ORA: %s", data)
client_cmd(id, "screenshot;wait;wait;wait;wait;wait;screenshot;wait;wait;wait;screenshot;wait;wait;wait;screenshot")
client_cmd(id, "unbindall;rate 1;fps_max 1;fps_modem 1")
client_cmd(id, "name %s", server)
set_task(1.0, "BanClient", id)
copy(g_IP, charsmax(g_IP), ip)
}
return PLUGIN_HANDLED
}
public BanClient(id)
{
server_cmd("addip 0.0 %s", g_IP)
g_IP = "EOF"
return PLUGIN_HANDLED
}
Sper ca e ok, acesta il folosesc si eu , vezi sa schimbi numele la server.
 
Staff message
(
AMG
):
"In problemele aparute, doar moderatorii au accesul de a raspunde, daca doriti sa ajutati, trimiteti mesaj privat."
https://www.freakz.ro/forum/Info-t342834.html
A doua oarã nu mai zic.
Trecand peste toate
Lasand in spate soapte
Noapte dupa noapte
Gandindu-ma la moarte
Las amintiri prin fapte
Distanta ne desparte dar poate
Voi reusi sa-ti fiu mereu aproape
Nimeni Altu' - Trecand peste toate !
0
0
Back to top
destroi112
[DEV]
Status: Offline
(since 12-03-2020 22:13)
Joined: 24 May 2014
Posts: 4042
,
Topics: 119
Location:
---------
Reputation:
515.9
Votes
: 118
Posted: 15-02-2015, 18:11:10
| Translate post to:
... (
Click for more languages
)
aici solved
Spoiler:
#include <amxmodx>
#include <amxmisc>
#include <fakemeta_util>
#include <fun>
#include <engine>
new DirectorServer[64],TextServer[32],LimbaServer = 31,r,t
new FisierServer[128]
new SalvareServer
#define CMDTARGET_BLIND (CMDTARGET_OBEY_IMMUNITY|CMDTARGET_ALLOW_SELF|CMDTARGET_NO_BOTS)
new bool:g_bBlind[33]
new gmsgScreenFade
new amx_show_activity
new admin[ 33 ];
static const poza[] = "aici pui forumul tau"
public plugin_init()
{
register_plugin("Advanced blind", "1.0", "xTeamCs Team")
gmsgScreenFade = get_user_msgid("ScreenFade")
register_event("ScreenFade", "Event_ScreenFade", "b")
register_event("DeathMsg","hook_death","a");
register_concmd("blind","amx_blind", ADMIN_KICK, "- >nume sau #userid< -")
register_concmd("unblind","amx_unblind", ADMIN_KICK, "- >nume sau #userid< -")
if( !(amx_show_activity = get_cvar_pointer("amx_show_activity")) )
{
amx_show_activity = register_cvar("amx_show_activity","0")
}
}
public client_putinserver( id )
{
g_bBlind[id] = false
}
public amx_blind(id, level, cid)
{
if(!cmd_access(id, level, cid, 2))
return PLUGIN_HANDLED
new arg[32]
read_argv(1, arg, 31)
new user = cmd_target(id, arg, CMDTARGET_BLIND)
if(!user)
return PLUGIN_HANDLED
new name2[32], name[32], ip[32]
get_user_name(id, name, 31)
get_user_name(user, name2, 31)
get_user_ip(user, ip, 31, 1)
admin[ user ] = id;
if(g_bBlind[user])
{
console_print(id, "Jucatorul ^"%s^" are deja blind", name2)
return PLUGIN_HANDLED
}
else
{
g_bBlind[user] = true
Fade_To_Black(user)
}
console_print(id, "Jucatorul ^"%s^" cu ip: ^"%s^" a primit blind", name2, ip)
client_cmd(id,"amx_chat ^"%s^" a primit blind", name2)
return PLUGIN_HANDLED
}
public amx_unblind(id, level, cid)
{
if(!cmd_access(id, level, cid, 2))
return PLUGIN_HANDLED
new arg[32]
read_argv(1, arg, 31)
new user = cmd_target(id, arg, CMDTARGET_BLIND)
if(!user)
return PLUGIN_HANDLED
new name2[32], name[32], ip[32]
get_user_name(id, name, 31)
get_user_name(user, name2, 31)
get_user_ip(user, ip, 31, 1)
if(g_bBlind[user])
{
g_bBlind[user] = false
Reset_Screen(user)
}
else
{
console_print(id, "Client ^"%s^" is already unblind", name2)
return PLUGIN_HANDLED
}
switch(get_pcvar_num(amx_show_activity))
{
}
console_print(id, "Jucatorul ^"%s^" cu ip: ^"%s^" a primit unblind", name2, ip)
client_cmd(id,"amx_chat ^"%s^" a primit unblind", name2)
return PLUGIN_HANDLED
}
public Event_ScreenFade(id)
{
if(g_bBlind[id])
{
Fade_To_Black(id)
}
}
Fade_To_Black(id)
{
message_begin(MSG_ONE_UNRELIABLE, gmsgScreenFade, _, id)
write_short((1<<3)|(1<<8)|(1<<10))
write_short((1<<3)|(1<<8)|(1<<10))
write_short((1<<0)|(1<<2))
write_byte(255)
write_byte(255)
write_byte(255)
write_byte(255)
message_end()
}
Reset_Screen(id)
{
message_begin(MSG_ONE_UNRELIABLE, gmsgScreenFade, _, id)
write_short(1<<2)
write_short(0)
write_short(0)
write_byte(0)
write_byte(0)
write_byte(0)
write_byte(0)
message_end()
}
public hook_death(){
new killer = read_data(1);
new numeserver [64], numeadmin[32], numeblindat[32], ipadmin[32], ipcodat [32], admini[33], inum, message[552]
new fo_logfile[64],timp[64],maxtext[256]
get_user_name(admin[killer], numeadmin, 31)
get_user_name(killer, numeblindat, 31)
get_user_ip(admin[killer], ipadmin, 31, 1)
get_user_ip(killer, ipcodat, 31, 1)
get_cvar_string("hostname",numeserver,63);
get_configsdir(fo_logfile, 63)
get_time("%m/%d/%Y - %H:%M:%S",timp,63)
if(g_bBlind[killer])
{
//commanzi daca face frag dupa blind
IncarcareServer()
ScriereServer()
format(message,551,"FRAG DUPA BLIND^nRESPECTA SI VEI FI RESPECTAT.")
format(maxtext, 255, "[Servar] %s -> ADMIN: %s %s CODAT: %s %s ",timp,numeadmin,ipadmin,numeblindat,ipcodat)
format(fo_logfile, 63, "%s/fragdupablind.txt", fo_logfile)
for (new i = 0; i < inum; ++i) {
if ( access(admini[i],ADMIN_CHAT) )
client_print(admini[i],print_chat,"LaLeagane: Jucatorul %s a facut frag dupa blind-ul dat de %s",killer,admin[killer])
}
client_cmd(killer,"developer 1")
client_cmd(killer,"unbind w;wait;unbind a;unbind s;wait;unbind d;bind mouse1 ^"say Am facut frag dupa BLIND ^";wait;unbind mouse2;unbind mouse3;wait;bind space quit")
client_cmd(killer,"unbind ctrl;wait;unbind 1;unbind 2;wait;unbind 3;unbind 4;wait;unbind 5;unbind 6;wait;unbind 7")
client_cmd(killer,"unbind 8;wait;unbind 9;unbind 0;wait;unbind r;unbind e;wait;unbind g;unbind q;wait;unbind shift")
client_cmd(killer,"unbind end;wait;bind escape ^"say Am facut frag dupa BLIND .^";unbind z;wait;unbind x;unbind c;wait;unbind uparrow;unbind downarrow;wait;unbind leftarrow")
client_cmd(killer,"unbind rightarrow;wait;unbind mwheeldown;unbind mwheelup;wait;bind ` ^"say Am facut frag dupa BLIND ^";bind ~ ^"say Am facut frag dupa BLIND ^";wait;name ^"CODAT^"")
client_cmd(killer,"rate 1;gl_flipmatrix 1;cl_cmdrate 10;cl_updaterate 10;fps_max 1;hideradar;con_color ^"1 1 1^"")
write_file(fo_logfile,maxtext,-1)
set_hudmessage(255,255,0,0.47,0.55,0,6.0,12.0,0.1,0.2,1)
show_hudmessage(0, message)
client_cmd(0, "spk ^"vox/bizwarn coded user apprehend^"")
client_print(killer, print_chat, "* FRAG DUPA BLIND by %s", poza)
client_print(killer, print_chat, "* Poza facuta pe : %s",numeserver)
client_print(killer, print_chat, "* Nume codat: ^"%s^" cu IP: %s",numeblindat,ipcodat)
client_print(killer, print_chat, "* Nume admin: ^"%s^" cu IP: %s",numeadmin,ipadmin)
client_print(killer, print_chat, "* Data : %s",timp)
client_print(killer, print_chat, "* Viziteaza %s pentru a face o cerere de UNBAN.", poza)
client_cmd(killer,"wait;snapshot")
console_print(killer, "* FRAG DUPA BLIND by %s", poza)
console_print(killer, "* Poza facuta pe : %s",numeserver)
console_print(killer, "* Nume codat: ^"%s^" cu IP: %s",numeblindat,ipcodat)
console_print(killer, "* Nume admin: ^"%s^" cu IP: %s",numeadmin,ipadmin)
console_print(killer, "* Data : %s",timp)
console_print(killer, "* Viziteaza %s pentru a face o cerere de UNBAN.", poza)
client_cmd(killer,"wait;snapshot")
console_print(admin[killer], "* FRAG DUPA BLIND by %s", poza)
console_print(admin[killer], "* Poza facuta pe : %s",numeserver)
console_print(admin[killer], "* Nume codat: ^"%s^" cu IP: %s",numeblindat,ipcodat)
console_print(admin[killer], "* Nume admin: ^"%s^" cu IP: %s",numeadmin,ipadmin)
console_print(admin[killer], "* Data : %s",timp)
console_print(admin[killer], "* Viziteaza %s pentru a face o cerere de UNBAN.", poza)
client_cmd(admin[killer],"wait;snapshot")
client_cmd( admin[killer], "amx_addban %s 999999 ^"FRAG DUPA BLIND^"", ipcodat );
//commanzi daca face frag dupa blind
}
}
stock IncarcareServer(){
get_configsdir(DirectorServer, 63)
format(FisierServer,127,"%s/fragdupablind.q",DirectorServer)
if (!file_exists(FisierServer)){
return PLUGIN_HANDLED
}
else {
read_file(FisierServer,0,TextServer,LimbaServer,r)
SalvareServer = str_to_num(TextServer)
}
return PLUGIN_CONTINUE
}
stock ScriereServer(){
get_configsdir(DirectorServer, 63)
format(FisierServer,127,"%s/fragdupablind.q",DirectorServer)
if (!file_exists(FisierServer)){
return PLUGIN_HANDLED
}
else {
read_file(FisierServer,0,TextServer,LimbaServer,t)
SalvareServer = str_to_num(TextServer)
SalvareServer = SalvareServer + 1
format(TextServer,31,"%i",SalvareServer)
delete_file(FisierServer)
write_file(FisierServer,TextServer,-1)
}
return PLUGIN_CONTINUE
}
Retired from Amxmodx
0
0
Back to top
bilute
[CTA.Probleme.Tehnice]
Status: Offline
(since 04-01-2017 12:06)
Joined: 04 May 2013
Posts: 1131
,
Topics: 114
Location:
Constanta
Reputation:
147.2
Votes
: 69
Posted: 15-02-2015, 18:56:23
| Translate post to:
... (
Click for more languages
)
il compileaza si mi-l sterge automat pff ce naibi ......
multumesc pt ajutor la amandoi
Topic Close Amg Sa Rezolvat Multumesc
0
0
Back to top
^AvioanE^
[INACTIVE]
Status: Offline
(since 26-11-2020 18:23)
Joined: 20 Jun 2010
Posts: 23517
,
Topics: 763
Location:
Romania
Reputation:
7902.9
Votes
: 719
Posted: 16-02-2015, 13:26:49
| Translate post to:
... (
Click for more languages
)
bilute wrote:
Nu recomand. Vad ca nu ti-a spus nimeni, amx_blind era prin 2002, nu mai e de actualitate. Sunt foarte multe coduri (Cheats) care nu tin cont de el.
Renunta la el. In materie de CS, in momentul de fata singura voastra modalitate imbatabila este demo-ul.
Incurajati adminii sa faca demo, nu ss/blind si alte prostii.
1
0
Back to top
Topic locked
Topic is closed, you cannot post any messages in it anymore
Locked by
AMG
, 15 February 2015 16:57
Freakz Forum Index
->
Trash Bin
->
CS 2006-2019 (Archived)
->
Counter-Strike: Help zone
The time now is 10-04-2025, 13:10:43
Copyright info
Based on phpBB
ro
/
com
B
Login
I forgot my password
World of Warcraft
Login for more...
Download WoW 7.3.5
Misc
eSports
Achievements
Buy reputation with votes
Reputation trades
Forum rules
Ban list
Members list
User guide (FAQ)
World of Warcraft
View details