1. sayfa (Toplam 1 sayfa)

Biri ChatColor Stocklarını ve İnclude'sini atabilirmi ?

Gönderilme zamanı: Cmt Şub 10, 2018 11:29 am
gönderen ToyBaby
Biri ChatColor Stocklarını ve İnclude'sini atabilirmi ? bir plugin tasarladım ancak chat color kullanmam gerekiyor daha güzel görünmesi için görmüştüm ancak şuan bulamadım biri atabilirmi ?

Biri ChatColor Stocklarını ve İnclude'sini atabilirmi ?

Gönderilme zamanı: Cmt Şub 10, 2018 11:31 am
gönderen Red
include satırlarının en altına şunu ekle direk hata vermeden çalışır eklenti ;

Kod: Tümünü seç

enum Renk
{
    NORMAL = 1, // clients scr_concolor cvar color
    GREEN, // Green Color
    TEAM_COLOR, // Red, grey, blue
    GREY, // grey
    RED, // Red
    BLUE, // Blue
}

stock ColorChat(const id, Renk:type,const input[], any:...)
{
    new count = 1, players[32]
    static msg[191]
    vformat(msg, 190, input, 3)
    switch(type)
    {
        case NORMAL: // clients scr_concolor cvar color
        {
            format(msg, sizeof(msg), "^1%s", msg)
        }
        case GREEN: // Green
        {
            format(msg, sizeof(msg), "^4%s", msg)
        }
        default: // White, Red, Blue
        {
            format(msg, sizeof(msg), "^3%s", msg)
        }
    }
    replace_all(msg, 190, "!g", "^4")
    replace_all(msg, 190, "!y", "^1")
    replace_all(msg, 190, "!t", "^3")
    
    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();
            }
        }
    }
} 

Biri ChatColor Stocklarını ve İnclude'sini atabilirmi ?

Gönderilme zamanı: Cmt Şub 10, 2018 11:43 am
gönderen noeldayi
bazı eklentilerin içini kontrol ederek alabilirsiniz arkadaşın attığını kurarsanız inc ye gerek kalmaz

Biri ChatColor Stocklarını ve İnclude'sini atabilirmi ?

Gönderilme zamanı: Cmt Şub 10, 2018 12:03 pm
gönderen PaZee

Kod: Tümünü seç

stock renkli_yazi(const id, const input[], any:...)
{
    new count = 1, players[32];
    static msg[191];
    vformat(msg, 190, input, 3);
    
    replace_all(msg, 190, "!n", "^x01"); // Default Renk(Sarı)
    replace_all(msg, 190, "!g", "^x04"); // Yeşil Renk
    replace_all(msg, 190, "!t", "^x03"); // Takım Renk( CT mavi , T kırmızı )
    
    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();
            }

        }
    }
}

Biri ChatColor Stocklarını ve İnclude'sini atabilirmi ?

Gönderilme zamanı: Cmt Şub 10, 2018 4:33 pm
gönderen Yek'-ta
client_print_color bunu kullan direkt. 1.8.3 otomatik tanımlı.
https://www.amxmodx.org/api/amxmodx/client_print_color

Biri ChatColor Stocklarını ve İnclude'sini atabilirmi ?

Gönderilme zamanı: Cmt Şub 10, 2018 7:20 pm
gönderen ToyBaby
@Yek'-ta Çok İyisin :)