User
Pass
2FA
 
 

[Rezolvat] cta.freakz.ro amx_blind care chiar functioneaza

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Freakz Forum Index -> Trash Bin -> CS 2006-2019 (Archived) -> Counter-Strike: Help zone
Author Message1550
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

           
Post 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
View user's profile Send private message Yahoo! Messenger ID
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

 
Post 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
View user's profile Send private message
destroi112

[DEV]



Status: Offline
(since 12-03-2020 22:13)
Joined: 24 May 2014
Posts: 4042, Topics: 119
Location: ---------

Reputation: 515.9
Votes: 118

   
Post Posted: 15-02-2015, 18:11:10 | Translate post to: ... (Click for more languages)

aici solved
Spoiler:



Retired from Amxmodx

0 0
  
Back to top
View user's profile Send private message
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

           
Post 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
View user's profile Send private message Yahoo! Messenger ID
^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

Post 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
View user's profile Send private message

  Topic locked


Topic is closed, you cannot post any messages in it anymore

Locked by AMG, 15 February 2015 16:57



 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    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

 
 
 







I forgot my password