⭐🚀 TkyNET | Blacklist ve Profesyonel DDoS Korumalı TeamSpeak 3 Sunucuları 🚀⭐
Sponsor Görsel
🇹🇷 TR Lokasyon | 🛡️ Gelişmiş DDoS Koruması | ⚡ Düşük Ping | 🎧 Kesintisiz TS3 | Hostlar
Sponsor Görsel 2
SponsorSponsor

Konu

#1
Kod:
AMX Mod X Compiler 1.10.0.5392
Copyright (c) 1997-2006 ITB CompuPhase
Copyright (c) 2004-2013 AMX Mod X Team

/home/araclar/compiler/include/colorchat.inc(31) : error 021: symbol already defined: "client_print_color"
/home/araclar/compiler/include/colorchat.inc(34) : error 010: invalid function or declaration
/home/araclar/compiler/include/colorchat.inc(36) : error 010: invalid function or declaration
/home/araclar/compiler/include/colorchat.inc(39) : error 010: invalid function or declaration
/home/araclar/compiler/include/colorchat.inc(45) : error 010: invalid function or declaration
/home/araclar/compiler/include/colorchat.inc(49) : error 010: invalid function or declaration
/home/araclar/compiler/include/colorchat.inc(56) : error 010: invalid function or declaration
/home/araclar/compiler/include/colorchat.inc(58) : error 010: invalid function or declaration
/home/araclar/compiler/include/colorchat.inc(62) : error 010: invalid function or declaration
/home/araclar/compiler/include/colorchat.inc(67) : erro 

Menüde bu hatayı veriyor
.smaBO-furienmenu.sma(Dosya Boyutu: 57,18 KB | İndirme Sayısı: 2)
Son Düzenleme: 06-05-2020, 00:35, Düzenleyen: DiSKoCuABDi.
#3
(06-05-2020, 00:45)QuryWesT Adlı Kullanıcıdan Alıntı: Benimkini Atayım Aynı menu Düzeltilmiş Hali Ama Siz Bicak Model Kendiniz Ayarlicaksınız Olurmu ?

Olur
#5
(06-05-2020, 00:46)QuryWesT Adlı Kullanıcıdan Alıntı: Yada Sizinkini Düzeltip Atayım

O daha makbule geçer Çok güldüm zahmet verdik size gece gece kusura bakmayın
#6
Buyrun Direk Sizinkini Düzeltip Denermisinz.

Nasıl Cozdugumu İsterseniz Cozumunude Soyleyebilirim.
.smaBO-furienmenu.sma(Dosya Boyutu: 59,45 KB | İndirme Sayısı: 2)
CS2 Ücretli Eklenti - CS 1.6 Ücretli Eklenti ~
#7
(06-05-2020, 00:48)QuryWesT Adlı Kullanıcıdan Alıntı: Buyrun Direk Sizinkini Düzeltip Denermisinz.

Nasıl Cozdugumu İsterseniz Cozumunude Soyleyebilirim.

Teşekkürler oldu. Nasıl çözüleceğini anlatır mısınız? Plugin işleriyle uğraşıyorum az çok sıklıkla karşılaştığım bir sorun
#8
Rica Ederim 

------------------
COZUM
------------------

Oncelikle 

Boyle Hatlarda Genelikle ChatColor Kodlması Yoktu Onun İçinde

Kod:
#if defined _colorchat_included
  #endinput
#endif
#define _colorchat_included

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

new TeamName[][] =
{
    "",
    "TERRORIST",
    "CT",
    "SPECTATOR"
}

ColorChat(id, Color:type, const msg[], {Float,Sql,Result,_}:...)
{
    if( !get_playersnum() ) return;
    
    new message[256];

    switch(type)
    {
        case NORMAL: // clients scr_concolor cvar color
        {
            message[0] = 0x01;
        }
        case GREEN: // Green
        {
            message[0] = 0x04;
        }
        default: // White, Red, Blue
        {
            message[0] = 0x03;
        }
    }

    vformat(message[1], 251, msg, 4);

    // Make sure message is not longer than 192 character. Will crash the server.
    message[192] = '^0';

    new team, ColorChange, index, MSG_Type;
    
    if(id)
    {
        MSG_Type = MSG_ONE;
        index = id;
    } else {
        index = FindPlayer();
        MSG_Type = MSG_ALL;
    }
    
    team = get_user_team(index);
    ColorChange = ColorSelection(index, MSG_Type, type);

    ShowColorMessage(index, MSG_Type, message);
        
    if(ColorChange)
    {
        Team_Info(index, MSG_Type, TeamName[team]);
    }
}

ShowColorMessage(id, type, message[])
{
    static bool:saytext_used;
    static get_user_msgid_saytext;
    if(!saytext_used)
    {
        get_user_msgid_saytext = get_user_msgid("SayText");
        saytext_used = true;
    }
    message_begin(type, get_user_msgid_saytext, _, id);
    write_byte(id)        
    write_string(message);
    message_end();    
}

Team_Info(id, type, team[])
{
    static bool:teaminfo_used;
    static get_user_msgid_teaminfo;
    if(!teaminfo_used)
    {
        get_user_msgid_teaminfo = get_user_msgid("TeamInfo");
        teaminfo_used = true;
    }
    message_begin(type, get_user_msgid_teaminfo, _, id);
    write_byte(id);
    write_string(team);
    message_end();

    return 1;
}

ColorSelection(index, type, Color:Type)
{
    switch(Type)
    {
        case RED:
        {
            return Team_Info(index, type, TeamName[1]);
        }
        case BLUE:
        {
            return Team_Info(index, type, TeamName[2]);
        }
        case GREY:
        {
            return Team_Info(index, type, TeamName[0]);
        }
    }

    return 0;
}

FindPlayer()
{
    new i = -1;

    while(i <= get_maxplayers())
    {
        if(is_user_connected(++i))
            return i;
    }

    return -1;
}

#define PLUGIN "Gelismis Furien"
#define VERSION "1.0"
#define AUTHOR "Kirito"
#define TASK_ID_SWAPTEAMS 2000

/* Ortak New Komutlari */
new
g_sohbet[33],
paraal[33],
sidespeed;

Bu Kodlama Koyulur Ve #include <colorchat> Bu Şekildeyken >> //#include <colorchat> Ama Bu Hata OYT Ve CSD Panelerinde Degişiyor
Bakman Gereken Satır Sayıları 15 Satır'dan Başla 162 Satıra Kadar Okuyun.


YETKİLİLER KONU COZULDU "KİLİT"

Sw İp Niz Nedir Bi Goz Atmak İsterim.
CS2 Ücretli Eklenti - CS 1.6 Ücretli Eklenti ~
Son Düzenleme: 06-05-2020, 01:01, Düzenleyen: QuryWesT.
#9
(06-05-2020, 00:54)QuryWesT Adlı Kullanıcıdan Alıntı: Rica Ederim 

------------------
COZUM
------------------

Oncelikle 

Boyle Hatlarda Genelikle ChatColor Kodlması Yoktu Onun İçinde

Kod:
#if defined _colorchat_included
  #endinput
#endif
#define _colorchat_included

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

new TeamName[][] =
{
    "",
    "TERRORIST",
    "CT",
    "SPECTATOR"
}

ColorChat(id, Color:type, const msg[], {Float,Sql,Result,_}:...)
{
    if( !get_playersnum() ) return;
    
    new message[256];

    switch(type)
    {
        case NORMAL: // clients scr_concolor cvar color
        {
            message[0] = 0x01;
        }
        case GREEN: // Green
        {
            message[0] = 0x04;
        }
        default: // White, Red, Blue
        {
            message[0] = 0x03;
        }
    }

    vformat(message[1], 251, msg, 4);

    // Make sure message is not longer than 192 character. Will crash the server.
    message[192] = '^0';

    new team, ColorChange, index, MSG_Type;
    
    if(id)
    {
        MSG_Type = MSG_ONE;
        index = id;
    } else {
        index = FindPlayer();
        MSG_Type = MSG_ALL;
    }
    
    team = get_user_team(index);
    ColorChange = ColorSelection(index, MSG_Type, type);

    ShowColorMessage(index, MSG_Type, message);
        
    if(ColorChange)
    {
        Team_Info(index, MSG_Type, TeamName[team]);
    }
}

ShowColorMessage(id, type, message[])
{
    static bool:saytext_used;
    static get_user_msgid_saytext;
    if(!saytext_used)
    {
        get_user_msgid_saytext = get_user_msgid("SayText");
        saytext_used = true;
    }
    message_begin(type, get_user_msgid_saytext, _, id);
    write_byte(id)        
    write_string(message);
    message_end();    
}

Team_Info(id, type, team[])
{
    static bool:teaminfo_used;
    static get_user_msgid_teaminfo;
    if(!teaminfo_used)
    {
        get_user_msgid_teaminfo = get_user_msgid("TeamInfo");
        teaminfo_used = true;
    }
    message_begin(type, get_user_msgid_teaminfo, _, id);
    write_byte(id);
    write_string(team);
    message_end();

    return 1;
}

ColorSelection(index, type, Color:Type)
{
    switch(Type)
    {
        case RED:
        {
            return Team_Info(index, type, TeamName[1]);
        }
        case BLUE:
        {
            return Team_Info(index, type, TeamName[2]);
        }
        case GREY:
        {
            return Team_Info(index, type, TeamName[0]);
        }
    }

    return 0;
}

FindPlayer()
{
    new i = -1;

    while(i <= get_maxplayers())
    {
        if(is_user_connected(++i))
            return i;
    }

    return -1;
}

#define PLUGIN "Gelismis Furien"
#define VERSION "1.0"
#define AUTHOR "Kirito"
#define TASK_ID_SWAPTEAMS 2000

/* Ortak New Komutlari */
new
g_sohbet[33],
paraal[33],
sidespeed;

Bu Kodlama Koyulur Ve #include <colorchat> Bu Şekildeyken >> //#include <colorchat> Ama Bu Hata OYT Ve CSD Panelerinde Degişiyor
Bakman Gereken Satır Sayıları 15 Satır'dan Başla 162 Satıra Kadar Okuyun.


YETKİLİLER KONU COZULDU "KİLİT"

Sw İp Niz Nedir Bi Goz Atmak İsterim.


213.238.173.144 eklentileri şuan devre dışı furienin az önce test ettim furien menüden bıçak almadı nedense hata falan yok herşey sorunsuz açılıyor menüden bıçak alınca ele gelmiyor sebebi nedir?

Bir hesap oluşturun veya yorum yapmak için giriş yapın

Yorum yapmak için üye olmanız gerekiyor

ya da
Task