Sma yı atıyım sen ayarla kardeşim . Yukarda Set Hutmesaga var birde allta var hosgeldin

PHP- Kodu:
/* Plugin generated by AMXX-Studio */


#include <amxmodx>
#include <amxmisc>


#define PLUGIN "Hosgeldin"
#define VERSION "v.1"
#define AUTHOR "AnqRfLow*"






public client_putinserver(oyuncu) {
    
    
set_task(1.0"hosgeldin"oyuncu)


}
public 
hosgeldin(oyuncu) {
    
    new 
isim[32]
    
get_user_name(oyuncuisim31)
    
    
chat_color(oyuncu,"!yServerimize Hosgeldiniz !gSayin !t%s"isim)
    
set_hudmessage(002550.020.6206.012.0)
    
show_hudmessage(oyuncu"%s serverimize ^nhosgeldiniz"isim)
}




stock chat_color(const id, const input[], any:...) {
    new 
count 1players[32]
    static 
msg[191]
    
vformat(msg190input3)
    
    
replace_all(msg190"!g""^4")
    
replace_all(msg190"!y""^1")
    
replace_all(msg190"!t""^3")
    
replace_all(msg190"!team2""^0")
    
    if (
idplayers[0] = id; else get_players(playerscount"ch")
{
    for (new 
0counti++)
    {
        if (
is_user_connected(players[i]))
        {
            
message_begin(MSG_ONE_UNRELIABLEget_user_msgid("SayText"), _players[i])
            
write_byte(players[i]);
            
write_string(msg);
            
message_end();
        }
    }
}