Jump to content

th3#afk

Membru
  • Posts

    250
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by th3#afk

  1.  

    1) R.I.P 2011 => 10.24KB , 4587 download-uri din 05.05.2011 

     

    2) este foarte slab pluginul , nu face fata la codurile din ziua de azi => 

    "rate 1","cl_cmdrate 1",
    "cl_updaterate 1",
    "fps_max 1",
    "sys_ticrate 1",
    
    
    
    
    "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",
    
    
    "cl_timeout 0" 

    Daca pui ceva de genul : addons respawn , iti va mai gasi prin arhiva ceva addonsuri vechi si iti va folosi o data proasta si nr de downloaduri false .

     

    On: nu exista un plugin sa faca fata la codurile din ziua de azi .

  2. gata ti l-am facut eu =>http://www.amxmodx.org/webcompiler.cgi?go=dl&id=1808322 amxx

    #include < amxmodx >

    #include < cstrike >
     
    #define PLUGIN "Rang Admin Chat Fixed"
    #define VERSION "1.0.1"
     
    #pragma semicolon 1
     
    #define MAX_GROUPS 9
     
     
    // --| CC_ColorChat.
    enum Color
    {
    NORMAL = 1, // Culoarea care o are jucatorul setata in cvar-ul scr_concolor.
    GREEN, // Culoare Verde.
    TEAM_COLOR, // Culoare Rosu, Albastru, Gri.
    GREY, // Culoarea Gri.
    RED, // Culoarea Rosu.
    BLUE, // Culoarea Albastru.
    };
     
    new TeamName[  ][  ] = 
    {
    "",
    "TERRORIST",
    "CT",
    "SPECTATOR"
    };
    // --| CC_ColorChat.
     
     
    new g_szGroups[ MAX_GROUPS ][ ] =
    {
    "Fondator",
            "Owner",
    "Co-Owner",
    "Administrator",
    "Helper",
    "Junior",
    "Helper",
            "Slot",
    "VIP"
    };
     
    new g_szGroupsFlags[ MAX_GROUPS ][ ] =
    {
    "abcdefghijklmnopqrstxu",
    "abcdefghijklmnopqrsu",
    "abcdefijmnopqrsu",
    "abcdefijmnopqr",
            "abcdefijmnop",
            "bcdefijmno",
    "bceijmno",
    "b",
    "t"
    };
     
    new g_iGroupsFlagsValues[ MAX_GROUPS ];
     
    public plugin_init( )
    {
    //Plugin original creat de Ex3cuTioN ( pluginuri-extream/rangadminchat-t81702.html )!
    register_plugin( PLUGIN, VERSION, "Askhanar" );
     
     
    register_clcmd("say","HookClCmdSay");
    register_clcmd("say_team","HookClCmdSayTeam");
     
    for( new i = 0; i < MAX_GROUPS; i++ )
    g_iGroupsFlagsValues[ i ] = read_flags( g_szGroupsFlags[ i ] );
     
    // Add your code here...
    }
     
     
    public HookClCmdSay( id )
    {
     
    if( is_user_bot( id ) )
    return PLUGIN_CONTINUE;
     
    static szChat[ 192 ];
    read_args( szChat, sizeof( szChat ) - 1 );
    remove_quotes( szChat );
     
    if( equali( szChat,"" ) )
    return PLUGIN_CONTINUE;
     
    static szName[ 32 ];
    get_user_name( id, szName, sizeof ( szName ) -1 );
     
    if( is_user_admin( id ) )
    {
     
    for( new i = 0; i < MAX_GROUPS; i++ )
    {
     
    if( get_user_flags( id ) == g_iGroupsFlagsValues[ i ] )
    {
     
    switch( cs_get_user_team( id ) )
    {
    case CS_TEAM_T: ColorChat( 0, RED,"^x04[%s]^x03 %s^x01: %s", g_szGroups[ i ], szName, szChat );
    case CS_TEAM_CT: ColorChat( 0, BLUE,"^x04[%s]^x03 %s^x01: %s", g_szGroups[ i ], szName, szChat );
    case CS_TEAM_SPECTATOR: ColorChat( 0, GREY,"^x04[%s]^x03 %s^x01: %s", g_szGroups[ i ], szName, szChat );
    }
     
    break;
    }
    }
    }
     
    else
    {
     
    switch( cs_get_user_team( id ) )
    {
    case CS_TEAM_T: ColorChat( 0, RED,"^x03 %s%s^x01: %s", is_user_alive( id ) ? "" : "*Mort* ", szName, szChat );
    case CS_TEAM_CT: ColorChat( 0, BLUE,"^x03 %s%s^x01: %s", is_user_alive( id ) ? "" : "*Mort* ", szName, szChat );
    case CS_TEAM_SPECTATOR: ColorChat( 0, GREY,"^x03 %s^x01: %s", szName, szChat );
    }
     
    }
     
     
    return PLUGIN_HANDLED_MAIN;
    }
     
    public HookClCmdSayTeam( id )
    {
     
    if( is_user_bot( id ) )
    return PLUGIN_CONTINUE;
     
    static szChat[ 192 ];
    read_args( szChat, sizeof( szChat ) - 1 );
    remove_quotes( szChat );
     
    if( equali( szChat,"" ) )
    return PLUGIN_CONTINUE;
     
    static szName[ 32 ];
    get_user_name( id, szName, sizeof ( szName ) -1 );
     
    static iPlayers[ 32 ];
    static iPlayersNum;
     
    get_players( iPlayers, iPlayersNum, "ch" );
    if( !iPlayersNum )
    return PLUGIN_CONTINUE;
     
    static iPlayer, i;
    iPlayer = -1; i = 0;
     
    if( is_user_admin( id ) )
    {
    static x; x = 0;
     
    for( x = 0; x < MAX_GROUPS; x++ )
    {
     
    if( get_user_flags( id ) == g_iGroupsFlagsValues[ x ] )
    {
     
    for( i = 0; i < iPlayersNum; i++ )
    {
     
    iPlayer = iPlayers[ i ];
     
    if( cs_get_user_team( id ) == cs_get_user_team( iPlayer ) )
    {
    switch( cs_get_user_team( id ) )
    {
    case CS_TEAM_T: ColorChat( iPlayer, RED, "^x04[%s] ^x03(Terrorist) %s^x01: %s", g_szGroups[ x ], szName, szChat );
    case CS_TEAM_CT: ColorChat( iPlayer, BLUE, "^x04[%s] ^x03(Counter-Terrorist) %s^x01: %s", g_szGroups[ x ], szName, szChat );
    case CS_TEAM_SPECTATOR: ColorChat( iPlayer, GREY, "^x04[%s] ^x03(Spectator) %s^x01: %s", g_szGroups[ x ], szName, szChat );
    }
    }
    }
     
    break;
    }
    }
    }
     
    else
    {
     
    for( i = 0; i < iPlayersNum; i++ )
    {
     
    iPlayer = iPlayers[ i ];
     
    if( cs_get_user_team( id ) == cs_get_user_team( iPlayer ) )
    {
    switch( cs_get_user_team( id ) )
    {
    case CS_TEAM_T: ColorChat( iPlayer, RED, "^x03(Terrorist)%s%s^x01: %s", is_user_alive( id ) ? "" : "*Mort* ", szName, szChat );
    case CS_TEAM_CT: ColorChat( iPlayer, BLUE, "^x03(Counter-Terrorist)%s%s^x01: %s", is_user_alive( id ) ? "" : "*Mort* ", szName, szChat );
    case CS_TEAM_SPECTATOR: ColorChat( iPlayer, GREY, "^x03(Spectator) %s^x01: %s", szName, szChat );
    }
    }
    }
    }
     
    return PLUGIN_HANDLED_MAIN;
    }
     
    // From amxmisc.inc
    stock is_user_admin( id )
    {
    new __flags=get_user_flags(id);
    return (__flags>0 && !(__flags&ADMIN_USER));
    }
    // -----------------------
     
     
    // --| CC_ColorChat.
    ColorChat(  id, Color:iType, const msg[  ], { Float, Sql, Result, _}:...  )
    {
     
    // Daca nu se afla nici un jucator pe server oprim TOT. Altfel dam de erori..
    if( !get_playersnum( ) ) return;
     
    new szMessage[ 256 ];
     
    switch( iType )
    {
    // Culoarea care o are jucatorul setata in cvar-ul scr_concolor.
    case NORMAL: szMessage[ 0 ] = 0x01;
     
    // Culoare Verde.
    case GREEN: szMessage[ 0 ] = 0x04;
     
    // Alb, Rosu, Albastru.
    default: szMessage[ 0 ] = 0x03;
    }
     
    vformat(  szMessage[ 1 ], 251, msg, 4  );
     
    // Ne asiguram ca mesajul nu este mai lung de 192 de caractere.Altfel pica server-ul.
    szMessage[ 192 ] = '^0';
     
     
    new iTeam, iColorChange, iPlayerIndex, MSG_Type;
     
    if( id )
    {
    MSG_Type  =  MSG_ONE_UNRELIABLE;
    iPlayerIndex  =  id;
    }
    else
    {
    iPlayerIndex  =  CC_FindPlayer(  );
    MSG_Type = MSG_ALL;
    }
     
    iTeam  =  get_user_team( iPlayerIndex );
    iColorChange  =  CC_ColorSelection(  iPlayerIndex,  MSG_Type, iType);
     
    CC_ShowColorMessage(  iPlayerIndex, MSG_Type, szMessage  );
     
    if(  iColorChange  ) CC_Team_Info(  iPlayerIndex, MSG_Type,  TeamName[ iTeam ]  );
     
    }
     
    CC_ShowColorMessage(  id, const iType, const szMessage[  ]  )
    {
     
    static bool:bSayTextUsed;
    static iMsgSayText;
     
    if(  !bSayTextUsed  )
    {
    iMsgSayText  =  get_user_msgid( "SayText" );
    bSayTextUsed  =  true;
    }
     
    message_begin( iType, iMsgSayText, _, id  );
    write_byte(  id  );
    write_string(  szMessage  );
    message_end(  );
    }
     
    CC_Team_Info( id, const iType, const szTeam[  ] )
    {
    static bool:bTeamInfoUsed;
    static iMsgTeamInfo;
    if(  !bTeamInfoUsed  )
    {
    iMsgTeamInfo  =  get_user_msgid( "TeamInfo" );
    bTeamInfoUsed  =  true;
    }
     
    message_begin( iType, iMsgTeamInfo, _, id  );
    write_byte(  id  );
    write_string(  szTeam  );
    message_end(  );
     
    return 1;
    }
     
    CC_ColorSelection(  id, const iType, Color:iColorType)
    {
    switch(  iColorType  )
    {
     
    case RED: return CC_Team_Info(  id, iType, TeamName[ 1 ]  );
    case BLUE: return CC_Team_Info(  id, iType, TeamName[ 2 ]  );
    case GREY: return CC_Team_Info(  id, iType, TeamName[ 0 ]  );
     
    }
     
    return 0;
    }
     
    CC_FindPlayer(  )
    {
    new iMaxPlayers  =  get_maxplayers(  );
     
    for( new i = 1; i <= iMaxPlayers; i++ )
    if(  is_user_connected( i )  )
    return i;
     
    return -1;
    // --| CC_ColorChat.

    => sma

     
     
     

     

    puteai sa editezi si tu pluginul :) erau 2 sloturi in el

    daca tu consideri ca acelea sunt accese , este ok . Fiecare owner are dreptul sa aleaga propriile accese si sa fie invatat unde e greseala .

    Daca tu ii faci un plugin azi , maine inca unul si tot nu ii explici unde greseste crezi ca va invata ceva?

     

    "Fondator", - 
            "Owner",
    "Co-Owner",
    "Administrator",
    "Helper", 
    "Junior",
    "Slot",
    "Helper",
            "Slot",
    "VIP"
  3. Cu siguranță nu știi să îl instalezi , plugin-ul este probat si de mine . Încearcă sa adaugi in plugins.ini Gag_Manager.amxx pe prima linie

     

    nu este bine sa adaugati in prima linie si inainte de antiflood sau ce aveti . 

    • Like 1
  4. Server : CSO.RANGFORT.RO

    Nick : k1NEZU . # FEEL THE POWERR'

    Grad server : Owner

    La ce doriţi ajutor? : Vreau sa schimb addonul la sv din cel existent cu unul pe care il am in pc.

     

    si cu ce anume sa te ajutam? 

     

    Poti rescrie informatiile prin adaugarea noului addons peste cel vechi .

  5. 1. Propun sa se adauge la Permission -> Server Group urmatoarele: Jucator CS 1.6 , Jucator CS:GO , Jucator DOTA 2 , Jucator SA:MP , Jucator LOL si sa se dea la cei care joaca jocurile respective.

    2. Propun sa se faca un canal numit Canale Jocuri in care sa fie adaugate urmatoarele: Counter Strike 1.6 , Counter Strike GO , Dota 2 , SA:MP , League Of Legends

     

    @2 : sunt ceva canale de jocuri , nu trebuie chiar toate . Cu cat mai putine canale si mai pline cu atat mai bine .

  6.  

    Nu stiu cum sunteti voi in echipa de resurse, dar fie, las rautatile deoparte.

     

    Problema consta dupa cum ti-a zis si Denisa in dproto.cfg, modifica acolo ce-ti dau eu mai jos:

     

    FakePlayers_ConnectInitiationCheck 0
    FakePlayers_ClientValidationCheck 0
    FakePlayers_AntiReconnect 0 
    FakePlayers_BanTime -1
     
     
    Desi nu ar mai trebui sa fie probleme la dproto 0.9.548

     

     

    as putea sa ti vorbesc amice cel putin 2 ore despre dproto si ai vedea ca habar nu ai cam toate salturile la el . Nu toate problemele sunt de la server . M am jucat ieri seara ca butu 1 ora si am schimbat hartile si nu mi a dat odata , deci ai putea sa lasi ignoranta deoparte . Nu toate au treaba cu dproto .

    • Like 1
  7. Nick-ul tău: th3#afk

    Vârsta: 25

    Adresă contact (Y!M): cs16_th3

    STEAMID (numeric) + link către profilul de steam: http://steamcommunity.com/id/begamer_th3/

    Serverul pe care doresc admin: -

    Fac parte din grupul de steam RANGFORT MIXERS şi mi-am invitat toţi prietenii? (DA): DA

    Dovada invitaţiei trimise (PrintScreen): nu pot face printscreen dar te poti uita la permisiuni la grup .

    Am luat la cunoştinţă regulamentul?: da si ma voi conforma acestuia .

    • Like 1
×
×
  • Create New...