Kullanıcı Tag Listesi

33 sonuçtan 1 ile 10 arası

Hybrid View

  1. #1
    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ı
    14

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

    Renk sorunundan mı bahsediyorsun kardeşim?

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

    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

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

    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

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