Kullanıcı Tag Listesi

Sayfa 1/4 1234 SonSon
33 sonuçtan 1 ile 10 arası
  1. #1
    onbasi er
    Üyelik tarihi
    Jul 2014
    Yer
    Bursa
    Mesajlar
    56
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    10

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

    Merhaba arkadaşlar, istedigim basit birşey yapan arkadaşlara şimdiden teşekkürlerimi sunuyorum. Ayrica yapabilen arkadaşa istegi taktirde public serverda Adminlikte verilebilir, reklamını yapabiliriz. Örnek Resim Olarak ;



    SFP GAMİNG

  2. #2
    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 )

    Düzenlenecek plugin nerede? sma yı da koyun

    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/


  3. #3
    onbasi er
    Üyelik tarihi
    Jul 2014
    Yer
    Bursa
    Mesajlar
    56
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    10

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


  4. #4
    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 )

    smayı pastebin.com a yapıştırıp gönderin. Bu linkten indiremedim.

    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/


  5. #5
    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"%s [SFP]ADMINS ONLINE: ",COLOR)
        if(
    count 0) {
            for(
    count x++) {
                
    len += format(message[len], "255+69+0"-len"%s%s "adminnames[x], < (count-1) ? ", ":"")
                if(
    len 96 ) {
                    
    print_message(usermessage)
                    
    len format(message"255+69+0""%s ",COLOR)
                }
            }
            
    print_message(usermessage)
        }
        else {
            
    len += format(message[len], 255-len"No admins online.")
            
    print_message(usermessage)
        }
        
        
    get_cvar_string("amx_contactinfo"contact63)
        if(
    contact[0])  {
            
    format(contactinfo111"%s Contact Server Admin -- %s"COLORcontact)
            
    print_message(usercontactinfo)
        }
    }

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


  6. #6
    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"%s [SFP]ADMINS ONLINE: ^x03",COLOR)
        if(
    count 0) {
            for(
    count x++) {
                
    len += format(message[len], "255+69+0"-len"%s%s "adminnames[x], < (count-1) ? ", ":"")
                if(
    len 96 ) {
                    
    print_message(usermessage)
                    
    len format(message"255+69+0""%s ",COLOR)
                }
            }
            
    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 -- %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/


  7. #7
    onbasi er
    Üyelik tarihi
    Jul 2014
    Yer
    Bursa
    Mesajlar
    56
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    10

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

    Çok teşekkürler arkadaşlar ilginiz için çok makbule geçti hemen deniyeceğim.

  8. #8
    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 )

    Türkçesini istersen ingilizce kısımları kendin ayarlayabilirsin sıkıntı olacağını sanmam.

  9. #9
    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 )

    Dostum, Plugin Amxx e cevirilmiyor su hatayı veriyor ;

    adminonline.sma(44) : error 033: array must be indexed (variable "-unknown-")
    adminonline.sma(47) : error 035: argument type mismatch (argument 2)

    Düzeltebilirsen Sevinirim Bu Arada Gercekten Plugin İçin Teşekkür ediyorum Dilersen Reklamınıda Yapabilirim

  10. #10
    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"%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"%s ",COLOR)
                }
            }
            
    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 -- %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/


Sayfa 1/4 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