[PEDIDO] RGB Hitskin_logo Hitskin.com

Isto é uma pré-visualização de um tema em Hitskin.com
Instalar o temaVoltar para a ficha do tema

Zplague

Gostaria de reagir a esta mensagem? Crie uma conta em poucos cliques ou inicie sessão para continuar.

Seu portal de Zombie Plague no Brasil

Zumbis Online

Últimos assuntos

» [ANÚNCIO] Alguem vivo ai?
por [Dk]Serial-Killer Ontem à(s) 12:46 am

» The Fen1xS CLan | Zombie Plague | [XP/LEVELS] #2024
por hevy 5/7/2024, 8:28 pm

»
por Eclipse 29/2/2024, 12:30 am

» [Plugin] /vm Com Status
por Isr7 4/6/2023, 3:24 pm

» Alguém pra manter um servidor comigo?
por Isr7 3/6/2023, 4:52 pm

» Alguém querendo criar um servidor de zp? eu pago a host quem quiser deixar o discord ai Isr7#6920
por Isr7 3/6/2023, 3:18 pm

» PEDIDO: Multijump pros VIP
por Madness 15/3/2023, 3:44 pm

» [ZP] Modo padre para 5.0
por XperitosEspetinho123 15/7/2022, 3:31 pm

» [KZ] Servidores de cs 1.6
por [Dk]Serial-Killer 7/5/2022, 4:12 am

» [PLUGIN BY SKVD & WILLIAN] SHOP DE FANTASIAS
por dushowW 23/7/2020, 5:44 pm

Os membros mais ativos da semana

Frases filosóficas Zplague:

....

Google Adsense

Estatísticas

Os nossos membros postaram um total de 38142 mensagens em 6680 assuntos

Temos 2796 usuários registrados

O último membro registrado é zmplugins - Henrique


3 participantes

    [PEDIDO] RGB

    gaah101
    gaah101
    Humano


    Nick : SUB-ZERO=)
    Masculino Número de Mensagens : 86
    A vida nao é facil mais se eu fosse scripter do mundo tornaria mais facil
    Ammo Packs : 4578
    Honra : 4
    Data de inscrição : 24/05/2012

    [PEDIDO] RGB Empty [PEDIDO] RGB

    Mensagem por gaah101 6/5/2014, 12:19 am

    Gostaria que alguem pudesse fazer esse plugin ( telar jogador e aparecer quem esta telando ele em RGB = Trocar de cor a cada 2 seg )

    PLUGIN AKI -> https://zplague.forumeiro.com/t6213-spectator-list-4fun   <-PLUGIN AKI


    TAMBEM SE POSSIVEL ENSINAR BOTAR ESSAS INCLUDES E ETC...


    SMA. 


    #include
    #include

    #pragma semicolon 1

    #define RED 64
    #define GREEN 64
    #define BLUE 64
    #define UPDATEINTERVAL 1.0

    // Comment below if you do not want /speclist showing up on chat
    #define ECHOCMD

    // Admin flag used for immunity
    #define FLAG ADMIN_IMMUNITY

    new const PLUGIN[] = "SpecList";
    new const VERSION[] = "1.2a";
    new const AUTHOR[] = "FatalisDK";

    new gMaxPlayers;
    new gCvarOn;
    new gCvarImmunity;
    new bool:gOnOff[33] = { true, ... };

    public plugin_init()
    {
    register_plugin(PLUGIN, VERSION, AUTHOR);

    register_cvar(PLUGIN, VERSION, FCVAR_SERVER, 0.0);
    gCvarOn = register_cvar("amx_speclist", "1", 0, 0.0);
    gCvarImmunity = register_cvar("amx_speclist_immunity", "1", 0, 0.0);

    register_clcmd("say /speclist", "cmdSpecList", -1, "");

    gMaxPlayers = get_maxplayers();

    set_task(UPDATEINTERVAL, "tskShowSpec", 123094, "", 0, "b", 0);
    }

    public cmdSpecList(id)
    {
    if( gOnOff[id] )
    {
    client_print(id, print_chat, "[AMXX] You will no longer see who's spectating you.");
    gOnOff[id] = false;
    }
    else
    {
    client_print(id, print_chat, "[AMXX] You will now see who's spectating you.");
    gOnOff[id] = true;
    }

    #if defined ECHOCMD
    return PLUGIN_CONTINUE;
    #else
    return PLUGIN_HANDLED;
    #endif
    }

    public tskShowSpec()
    {
    if( !get_pcvar_num(gCvarOn) )
    {
    return PLUGIN_CONTINUE;
    }

    static szHud[1102];//32*33+45
    static szName[34];
    static bool:send;

    // FRUITLOOOOOOOOOOOOPS!
    for( new alive = 1; alive <= gMaxPlayers; alive++ )
    {
    new bool:sendTo[33];
    send = false;

    if( !is_user_alive(alive) )
    {
    continue;
    }

    sendTo[alive] = true;

    get_user_name(alive, szName, 32);
    format(szHud, 45, "Spectating %s:^n", szName);

    for( new dead = 1; dead <= gMaxPlayers; dead++ )
    {
    if( is_user_connected(dead) )
    {
    if( is_user_alive(dead)
    || is_user_bot(dead) )
    {
    continue;
    }

    if( pev(dead, pev_iuser2) == alive )
    {
    if( !(get_pcvar_num(gCvarImmunity)&&get_user_flags(dead, 0)&FLAG) )
    {
    get_user_name(dead, szName, 32);
    add(szName, 33, "^n", 0);
    add(szHud, 1101, szName, 0);
    send = true;
    }

    sendTo[dead] = true;

    }
    }
    }

    if( send == true )
    {
    for( new i = 1; i <= gMaxPlayers; i++ )
    {
    if( sendTo[i] == true
    && gOnOff[i] == true )
    {
    set_hudmessage(RED, GREEN, BLUE,
    0.75, 0.15, 0, 0.0, UPDATEINTERVAL + 0.1, 0.0, 0.0, -1);

    show_hudmessage(i, szHud);
    }
    }
    }
    }

    return PLUGIN_CONTINUE;
    }

    public client_connect(id)
    {
    gOnOff[id] = true;
    }

    public client_disconnect(id)
    {
    gOnOff[id] = true;
    }


    Última edição por gaah101 em 6/5/2014, 6:15 pm, editado 1 vez(es)
    jesus123
    jesus123
    Humano


    Masculino Número de Mensagens : 111
    Ammo Packs : 4022
    Honra : -8
    Data de inscrição : 19/11/2013

    [PEDIDO] RGB Empty Re: [PEDIDO] RGB

    Mensagem por jesus123 6/5/2014, 3:26 am

    eu ia tentar + nem sma tem ..x..
    lovenina12
    lovenina12
    Humano


    Nick : Angel Fenix
    Masculino Número de Mensagens : 32
    Engraçado e.e
    Ammo Packs : 4435
    Honra : 0
    Data de inscrição : 08/10/2012

    [PEDIDO] RGB Empty Re: [PEDIDO] RGB

    Mensagem por lovenina12 18/5/2014, 3:53 am

    Mano, taí eu não testei pq sou forever alone e to com preguiça nesse momento, mais esse aqui era pra ta piscando em verde/azul

    Spoiler:

    Conteúdo patrocinado


    [PEDIDO] RGB Empty Re: [PEDIDO] RGB

    Mensagem por Conteúdo patrocinado


      Data/hora atual: 26/11/2024, 4:09 pm