Kullanıcı Tag Listesi

Sayfa 2/4 İlkİlk 1234 SonSon
33 sonuçtan 11 ile 20 arası
  1. #11
    er er
    Üyelik tarihi
    Oct 2014
    Mesajlar
    4
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    10

    Standart Cevap: /admin Plugin'ini Düzenleme ( Renklendirme )

    Teşekkürler Hocam Gercekten Kök Salmış Sağlam bir Pluginci Oldugunu Bu Tur Seylerle Kanıtlıyorsun. Yalnız Benim Resimde Attığım Gibi Yapabilirsen iyi olabılır Bazı Yerlerı atlamıssın

  2. #12
    er er
    Üyelik tarihi
    Oct 2014
    Mesajlar
    4
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    10

    Standart Cevap: /admin Plugin'ini Düzenleme ( Renklendirme )

    Reis Şimdi Hata Yapmıssın Galiba Cunkı Biraz Değişik Olmus. benim Attığım Örnekteki Gibi Yapabılrısen İyi Olur suan Attığım Resim Bize düzenleyip verdiğin /admin plugini düzeltebilirsen sevinirim

    #akcaliberkk

    - - - - - - - - - -

    Reis Şimdi Hata Yapmıssın Galiba Cunkı Biraz Değişik Olmus. benim Attığım Örnekteki Gibi Yapabılrısen İyi Olur suan Attığım Resim Bize düzenleyip verdiğin /admin plugini düzeltebilirsen sevinirim

    #akcaliberkk
    Ekli Küçük Resimler Ekli Küçük Resimler Resmi gerçek boyutunda görmek için tıklayın.

Resmin ismi:  2015-01-10_00001.jpg
Görüntüleme: 130
Büyüklüğü:  236,2 KB (Kilobyte)
ID:	10241  

  3. #13
    onbasi er mlhcnshn - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Jan 2012
    Yer
    İstanbul
    Mesajlar
    97
    Bahsedildi
    3 Mesaj
    Etiketlenmiş
    2 Konu
    Tecrübe Puanı
    13

    Standart Cevap: /admin Plugin'ini Düzenleme ( Renklendirme )

    Renk sorunundan mı bahsediyorsun kardeşim?

  4. #14
    onbasi er
    Üyelik tarihi
    Dec 2014
    Mesajlar
    55
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    10

    Standart Cevap: /admin Plugin'ini Düzenleme ( Renklendirme )

    Alıntı mlhcnshn Nickli Üyeden Alıntı Mesajı göster
    Renk sorunundan mı bahsediyorsun kardeşim?
    patroon06'nın verdiği resimdeki gibi yapılırsa güzel olur bence.

    - - - - - - - - - -

    Alıntı mlhcnshn Nickli Üyeden Alıntı Mesajı göster
    Renk sorunundan mı bahsediyorsun kardeşim?
    patroon06'nın verdiği resimdeki gibi yapılırsa güzel olur bence.
    MaMi [$]
    95.173.173.
    111
    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
    /DGJail

    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
    /DissidenTJail

    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
    /DGClannn
    Skype: DissidenT.Gaming

  5. #15
    Nemesis* coadmin akcaliberkk - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Jun 2012
    Yer
    İstanbul
    Mesajlar
    2.027
    Bahsedildi
    105 Mesaj
    Etiketlenmiş
    10 Konu
    Tecrübe Puanı
    10

    Standart Cevap: /admin Plugin'ini Düzenleme ( Renklendirme )

    PHP- Kodu:
    #include <amxmodx>

    /*---------------EDIT ME------------------*/
    #define ADMIN_CHECK ADMIN_KICK

    static const COLOR[] = "^x04" //green
    static const CONTACT[] = ""
    /*----------------------------------------*/

    new maxplayers
    new gmsgSayText

    public plugin_init() {
        
    register_plugin("Admin Check""1.51""OneEyed")
        
    maxplayers get_maxplayers()
        
    gmsgSayText get_user_msgid("SayText")
        
    register_clcmd("say""handle_say")
        
    register_cvar("amx_contactinfo"CONTACTFCVAR_SERVER)
    }

    public 
    handle_say(id) {
        new 
    said[192]
        
    read_args(said,192)
        if( ( 
    containi(said"who") != -&& containi(said"admin") != -) || contain(said"/admin") != -)
            
    set_task(0.1,"print_adminlist",id)
        return 
    PLUGIN_CONTINUE
    }

    public 
    print_adminlist(user
    {
        new 
    adminnames[33][32]
        new 
    message[256]
        new 
    contactinfo[256], contact[112]
        new 
    idcountxlen
        
        
    for(id id <= maxplayers id++)
            if(
    is_user_connected(id))
            if(
    get_user_flags(id) & ADMIN_CHECK)
            
    get_user_name(idadminnames[count++], 31)
        
        
    len format(message255"^x01[SFP]%s ADMINS ONLINE: ^x03",COLOR)
        if(
    count 0) {
            for(
    count x++) {
                
    len += format(message[len], 255-len"%s%s "adminnames[x], < (count-1) ? ", ":"")
                if(
    len 96 ) {
                    
    print_message(usermessage)
                    
    len format(message255"^x03 ")
                }
            }
            
    print_message(usermessage)
        }
        else {
            
    len += format(message[len], 255-len"^x03 No admins online.")
            
    print_message(usermessage)
        }
        
        
    get_cvar_string("amx_contactinfo"contact63)
        if(
    contact[0])  {
            
    format(contactinfo111"%s Contact Server Admin -- ^x03 %s"COLORcontact)
            
    print_message(usercontactinfo)
        }
    }

    print_message(idmsg[]) {
        
    message_begin(MSG_ONEgmsgSayText, {0,0,0}, id)
        
    write_byte(id)
        
    write_string(msg)
        
    message_end()


    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.



    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


    CS:GO ve CS 1.6 için ücretli eklenti yapılır.
    Plugin yazmak isteyenlere yardımcı olabilirim.
    Skype adresimden ulaşabilirsiniz:
    destek_596
    Steam: http://steamcommunity.com/id/ca-nemesis/


  6. #16
    er er
    Üyelik tarihi
    Oct 2014
    Mesajlar
    4
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    10

    Standart Cevap: /admin Plugin'ini Düzenleme ( Renklendirme )

    Teşekkürler Kardeşim Ellerine Kollarına Sağlık..

  7. #17
    Nemesis* coadmin akcaliberkk - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Jun 2012
    Yer
    İstanbul
    Mesajlar
    2.027
    Bahsedildi
    105 Mesaj
    Etiketlenmiş
    10 Konu
    Tecrübe Puanı
    10

    Standart Cevap: /admin Plugin'ini Düzenleme ( Renklendirme )

    Rica ederim

    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.



    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


    CS:GO ve CS 1.6 için ücretli eklenti yapılır.
    Plugin yazmak isteyenlere yardımcı olabilirim.
    Skype adresimden ulaşabilirsiniz:
    destek_596
    Steam: http://steamcommunity.com/id/ca-nemesis/


  8. #18
    onbasi er
    Üyelik tarihi
    Dec 2014
    Mesajlar
    55
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    10

    Standart Cevap: /admin Plugin'ini Düzenleme ( Renklendirme )

    Alıntı mlhcnshn Nickli Üyeden Alıntı Mesajı göster
    Renk sorunundan mı bahsediyorsun kardeşim?
    Melih kardeş şu plugini türkçe olarak yapma şansın var mı ? akçalı yapmış ama türkçe olarak değiştirebilirmisin
    #include <amxmodx>

    /*---------------EDIT ME------------------*/
    #define ADMIN_CHECK ADMIN_KICK

    static const COLOR[] = "^x04" //green
    static const CONTACT[] = ""
    /*----------------------------------------*/

    new maxplayers
    new gmsgSayText

    public plugin_init() {
    register_plugin("Admin Check", "1.51", "OneEyed")
    maxplayers = get_maxplayers()
    gmsgSayText = get_user_msgid("SayText")
    register_clcmd("say", "handle_say")
    register_cvar("amx_contactinfo", CONTACT, FCVAR_SERVER)
    }

    public
    handle_say(id) {
    new
    said[192]
    read_args(said,192)
    if( (
    containi(said, "who") != -1 && containi(said, "admin") != -1 ) || contain(said, "/admin") != -1 )
    set_task(0.1,"print_adminlist",id)
    return
    PLUGIN_CONTINUE
    }

    public
    print_adminlist(user)
    {
    new
    adminnames[33][32]
    new
    message[256]
    new
    contactinfo[256], contact[112]
    new
    id, count, x, len

    for(id = 1 ; id <= maxplayers ; id++)
    if(
    is_user_connected(id))
    if(
    get_user_flags(id) & ADMIN_CHECK)
    get_user_name(id, adminnames[count++], 31)

    len = format(message, 255, "^x01[SFP]%s ADMINS ONLINE: ^x03",COLOR)
    if(
    count > 0) {
    for(
    x = 0 ; x < count ; x++) {
    len += format(message[len], 255-len, "%s%s ", adminnames[x], x < (count-1) ? ", ":"")
    if(
    len > 96 ) {
    print_message(user, message)
    len = format(message, 255, "^x03 ")
    }
    }
    print_message(user, message)
    }
    else {
    len += format(message[len], 255-len, "^x03 No admins online.")
    print_message(user, message)
    }

    get_cvar_string("amx_contactinfo", contact, 63)
    if(
    contact[0]) {
    format(contactinfo, 111, "%s Contact Server Admin -- ^x03 %s", COLOR, contact)
    print_message(user, contactinfo)
    }
    }

    print_message(id, msg[]) {
    message_begin(MSG_ONE, gmsgSayText, {0,0,0}, id)
    write_byte(id)
    write_string(msg)
    message_end()
    }


    - - - - - - - - - -

    Alıntı mlhcnshn Nickli Üyeden Alıntı Mesajı göster
    Renk sorunundan mı bahsediyorsun kardeşim?
    Melih kardeş şu plugini türkçe olarak yapma şansın var mı ? akçalı yapmış ama türkçe olarak değiştirebilirmisin
    #include <amxmodx>

    /*---------------EDIT ME------------------*/
    #define ADMIN_CHECK ADMIN_KICK

    static const COLOR[] = "^x04" //green
    static const CONTACT[] = ""
    /*----------------------------------------*/

    new maxplayers
    new gmsgSayText

    public plugin_init() {
    register_plugin("Admin Check", "1.51", "OneEyed")
    maxplayers = get_maxplayers()
    gmsgSayText = get_user_msgid("SayText")
    register_clcmd("say", "handle_say")
    register_cvar("amx_contactinfo", CONTACT, FCVAR_SERVER)
    }

    public
    handle_say(id) {
    new
    said[192]
    read_args(said,192)
    if( (
    containi(said, "who") != -1 && containi(said, "admin") != -1 ) || contain(said, "/admin") != -1 )
    set_task(0.1,"print_adminlist",id)
    return
    PLUGIN_CONTINUE
    }

    public
    print_adminlist(user)
    {
    new
    adminnames[33][32]
    new
    message[256]
    new
    contactinfo[256], contact[112]
    new
    id, count, x, len

    for(id = 1 ; id <= maxplayers ; id++)
    if(
    is_user_connected(id))
    if(
    get_user_flags(id) & ADMIN_CHECK)
    get_user_name(id, adminnames[count++], 31)

    len = format(message, 255, "^x01[SFP]%s ADMINS ONLINE: ^x03",COLOR)
    if(
    count > 0) {
    for(
    x = 0 ; x < count ; x++) {
    len += format(message[len], 255-len, "%s%s ", adminnames[x], x < (count-1) ? ", ":"")
    if(
    len > 96 ) {
    print_message(user, message)
    len = format(message, 255, "^x03 ")
    }
    }
    print_message(user, message)
    }
    else {
    len += format(message[len], 255-len, "^x03 No admins online.")
    print_message(user, message)
    }

    get_cvar_string("amx_contactinfo", contact, 63)
    if(
    contact[0]) {
    format(contactinfo, 111, "%s Contact Server Admin -- ^x03 %s", COLOR, contact)
    print_message(user, contactinfo)
    }
    }

    print_message(id, msg[]) {
    message_begin(MSG_ONE, gmsgSayText, {0,0,0}, id)
    write_byte(id)
    write_string(msg)
    message_end()
    }
    MaMi [$]
    95.173.173.
    111
    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
    /DGJail

    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
    /DissidenTJail

    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
    /DGClannn
    Skype: DissidenT.Gaming

  9. #19
    onbasi er mlhcnshn - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Jan 2012
    Yer
    İstanbul
    Mesajlar
    97
    Bahsedildi
    3 Mesaj
    Etiketlenmiş
    2 Konu
    Tecrübe Puanı
    13

    Standart Cevap: /admin Plugin'ini Düzenleme ( Renklendirme )

    PHP- Kodu:

    #include <amxmodx>

    /*---------------EDIT ME------------------*/
    #define ADMIN_CHECK ADMIN_KICK

    static const COLOR[] = "^x04" //green
    static const CONTACT[] = ""
    /*----------------------------------------*/

    new maxplayers
    new gmsgSayText

    public plugin_init() {
        
    register_plugin("Admin Check""1.51""OneEyed")
        
    maxplayers get_maxplayers()
        
    gmsgSayText get_user_msgid("SayText")
        
    register_clcmd("say""handle_say")
        
    register_cvar("amx_contactinfo"CONTACTFCVAR_SERVER)
    }

    public 
    handle_say(id) {
        new 
    said[192]
        
    read_args(said,192)
        if( ( 
    containi(said"who") != -&& containi(said"admin") != -) || contain(said"/admin") != -)
            
    set_task(0.1,"print_adminlist",id)
        return 
    PLUGIN_CONTINUE
    }

    public 
    print_adminlist(user
    {
        new 
    adminnames[33][32]
        new 
    message[256]
        new 
    contactinfo[256], contact[112]
        new 
    idcountxlen
        
        
    for(id id <= maxplayers id++)
            if(
    is_user_connected(id))
            if(
    get_user_flags(id) & ADMIN_CHECK)
            
    get_user_name(idadminnames[count++], 31)
        
        
    len format(message255"^x01[SV]%s ONLINE ADMINLER: ^x03",COLOR)
        if(
    count 0) {
            for(
    count x++) {
                
    len += format(message[len], 255-len"%s%s "adminnames[x], < (count-1) ? ", ":"")
                if(
    len 96 ) {
                    
    print_message(usermessage)
                    
    len format(message255"^x03 ")
                }
            }
            
    print_message(usermessage)
        }
        else {
            
    len += format(message[len], 255-len"^x03 Online Admin Bulunmuyor.")
            
    print_message(usermessage)
        }
        
        
    get_cvar_string("amx_contactinfo"contact63)
        if(
    contact[0])  {
            
    format(contactinfo111"%s Sunucu Sahibi Iletisim -- ^x03 %s"COLORcontact)
            
    print_message(usercontactinfo)
        }
    }

    print_message(idmsg[]) {
        
    message_begin(MSG_ONEgmsgSayText, {0,0,0}, id)
        
    write_byte(id)
        
    write_string(msg)
        
    message_end()


  10. #20
    onbasi er
    Üyelik tarihi
    Dec 2014
    Mesajlar
    55
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    10

    Standart Cevap: /admin Plugin'ini Düzenleme ( Renklendirme )

    Teşekkürler.
    MaMi [$]
    95.173.173.
    111
    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
    /DGJail

    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
    /DissidenTJail

    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
    /DGClannn
    Skype: DissidenT.Gaming

Sayfa 2/4 İlkİlk 1234 SonSon

Benzer Konular

  1. Rocket Plugin Renklendirme
    By kanun67 in forum [İSTEK] Cs 1.6 Plugin İstek Bölümü
    Cevaplar: 5
    Son Mesaj: 29-03-15, 18:16

Kullanıcıların arama motorlarındaki kullandığı taglar:

Counter Strike 1.6 Cfg, plugin, eklenti, sxe, config, skin, setup
Counter Strike

Bu Konudaki Etiketler

Yetkileriniz

  • Konu Acma Yetkiniz Yok
  • Cevap Yazma Yetkiniz Yok
  • Eklenti Yükleme Yetkiniz Yok
  • Mesajınızı Değiştirme Yetkiniz Yok
  •  

SEO by vBSEO 3.6.0 ©2011, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121