Jump to content

X3.!

Membru
  • Posts

    136
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by X3.!

  1. [RO]

    * Pentru ca cererea ban sa fie luata in considerare, trebuie sa urmezi modelul urmator, in caz contrar cererea ta va fi respinsa
    * Titlul trebuie sa fie [Cerere Ban] Numele Playerului Reclamat


    * Nickname-ul :
    * Numele Playerului Reclamat :
    * SteamID :
    * Dovada ( Demo , Screenshot )
    * Motivul :


    [EN]

    * You have to follow the following model, otherwise your request will be declined
    * The title must be [ Request Ban] Name of reported player


    * Your nickname :
    * Name of reported player
    :
    * SteamID :
    * Proof ( Demo , Screenshot)
    * The reason :

    • Like 1
  2. [RO]

    *Pentru ca cererea sa fie valida, trebuie sa urmezi modelul urmator, in caz contrar cererea ta va fi respinsa
    * Titlul trebuie sa fie [Cerere UnBan] Numele Tau

    * Numele : 
    * SteamID:
    * IP  ( Click ) :
    * Data şi ora de ban
    * Dovada ( Screenshot, Demo ) :
    * Motivul pentru ban

    [EN]

    * You have to follow the following model, otherwise your request will be declined
    * The title must be [ Request UnBan ] Your Name


    * Nickname :
    * SteamID :

    * IP  ( Click ) :
    * Data and time of ban :
    * Proof ( Screenshot, Demo ) :
    * Reason of Ban

    • Like 1
  3. Hi

    Im using zm vip 1.9.1 by aaarnas, what I wanted to do is to change the flags of vip printing list
    What I tried to do is >

    Spoiler

    public show_vips_online(id) 
    {
        new bool:first = true, message[256], len
        
        for (new i=0; i<maxplayers; i++) 
        {
            
            if(p_data[FLAGS] & AT_CHATTAG)
            {
                
                if (!first) {
                    
                    message[len++] = ','
                    message[len++] = ' '
                }
                message[len++] = '^4'
                message[len] = EOS
                len += get_user_name(i, message[len], charsmax(message)-len)
                message[len++] = '^1'
                message[len] = EOS
                
                first = false
            }
        }
        
        if (first) {
            if (is_amxmodx_new_version) client_print_color(id, id, "^4[VIP] ^1%L...", id, "NO_VIP_ONLINE")
            else _client_print_color(id, "^4[VIP] ^1%L...", id, "NO_VIP_ONLINE")
        }
        else {
            if (is_amxmodx_new_version) client_print_color(id, id, "^4[VIP] ^1%L: %s.", id, "ONLINE_VIPS", message)
            else _client_print_color(id, "^4[VIP] ^1%L: %s.", id, "ONLINE_VIPS", message)
        }
        
        print_admin_contacts(id)
        
        return PLUGIN_CONTINUE;
    }

    Also tried to change         if(p_data[FLAGS] & AT_CHATTAG) to         if(p_data[FLAGS] == AT_CHATTAG).. But its not printing for this flag ..

    AT_CHATTAG = flag q.
     

  4. [RO]

    * Pentru a primi slot, trebuie sa urmezi modelul urmator, in caz contrar cererea ta va fi respinsa
    * Varsta minima este de 13 ani
    * Trebuie sa ai macar 10 ore jucate pe server (daca esti prins stând AFK nu vei primi slot)
    * Titlul trebuie sa fie [Cerere Slot] Numele Tau

    * Numele :
    * Varsta :
    * Link cu orele jucate pe server ( Click )
    * Alte informatii

     

    [EN]

    * You have to follow the following model, otherwise your request will be declined
    * Minimum age for slot is 13
    * You must have at least 10 hours played on the server (if you're caught being AFK you won't get slot)
    * The title must be [ Request Slot ] Your Name

    * Nickname :
    * Age :
    * Link of hours played in server ( Click )
    * Other Informations

    • Like 4
  5. [RO]

    *Cererea de admin trebuie sa respecte obligatoriu modelul urmator altfel va fi automat respinsa.
    * Varsta minima este de 14 ani.
    * Trebuie sa ai macar 25 de ore jucate pe server (daca esti prins in repetate randuri ca stai AFK pentru ore cererea de admin este nula)
    * Titlul topicului trebuie sa fie obligatoriu [Cerere Admin] "Nickul tau"

       * Numele :
       * Joci CS pe Steam? ( Da , Nu )
       * Varsta : 
       * Experienta in adminat :
       * Motivul pentru care vrei admin:
       * Link cu orele jucate pe server ( Click ):
       * Alte informatii:

    [EN]

    * You have to follow the following model, otherwise your request will be declined
    * Minimum age is 14
    * You must have at least 25 hours played on the server (if you're caught being AFK you won't get admin )
    * The title must be [ Request Admin ] Your Name

    * Nickname :
    * Playing CS on Steam? ( Yes, No)
    * Age :
    * Experience as admin
    * The reason why you want to be an admin
    * Link with hours played on server
    ( Click )
    * Other Informations

    • Like 2
  6. Spoiler

    #include <amxmodx> 
    #include <fakemeta> 
    #include <amxmisc>

    #define VERSION "0.1.0" 

    new g_allowed[33]

    public plugin_init() 

        register_plugin("One Name", VERSION, "ConnorMcLeod") 
        register_forward(FM_ClientUserInfoChanged, "ClientUserInfoChanged") 
    }

    public client_connect(id)
    {
        g_allowed[id] = 0
    }

    public client_command(id)  
    {    
        static szCommand[ 33 ] , name[33]
        read_argv( 0, szCommand, 32 ) 
        read_argv( 1, name, 32 ) 

        if( contain( szCommand, "rcon amx_nick" )) 
        { 
            new player = cmd_target(id, name, 8)
            g_allowed[player] = 1
        }          
         
        return PLUGIN_CONTINUE; 
    }  

    public ClientUserInfoChanged(id) 

        if( is_user_admin( id ) )
        {
            return FMRES_IGNORED
        }
        
        static const name[] = "name" 
        static szOldName[32], szNewName[32] 
        pev(id, pev_netname, szOldName, charsmax(szOldName)) 
        if( szOldName[0] ) 
        { 
            get_user_info(id, name, szNewName, charsmax(szNewName)) 
            if( !equal(szOldName, szNewName) ) 
            {
                if(g_allowed[id])
                {
                    g_allowed[id] = 0
                    return FMRES_IGNORED
                }
                    
                set_user_info(id, name, szOldName) 
                return FMRES_HANDLED 
            } 
        } 
        return FMRES_IGNORED
    }  

    or 

    https://forums.alliedmods.net/showthread.php?t=302005

  7. Numele dvs : X3

     

    Numele adminului reclamat: E.N.D

     

    Data si ora : 9/8/2017

     

    Motiv : Block..

     

    Dovada ( print consola / demo ) : 

     

    Alte precizari : i infect him. and he blocking me and protect the other player..
  8. Numele dvs : X3

    Numele adminului reclamat: Contele

    Data si ora : 6/5/16

    Motiv : change map in 25 minutes / slayed me..

    Dovada ( print consola / demo ) : http://postimg.org/image/xsxmjy5vl/ this 1 for slayed me... /  http://postimg.org/image/n1oenoo5d  this 2 for voting in 25min left but i dont take the picture for the time you also can ask G@mBl3r

    Alte precizari : you can ask g@mbl3r for all that.. he was with me in server.

×
×
  • Create New...