Kullanıcı Tag Listesi

4 sonuçtan 1 ile 4 arası

Threaded View

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

    PHP- Kodu:
    #include <amxmodx>
    #include <amxmisc>

    #define PLUGIN "New Plug-In"
    #define VERSION "1.0"
    #define AUTHOR "author"

    #define ADMIN_FLAG ADMIN_BAN
    #define SLOT_FLAG ADMIN_RESERVATION

    new message_saytext;
    public 
    plugin_init() {
        
    register_plugin(PLUGINVERSIONAUTHOR)
        
        
    register_clcmd("say /admin","HookSay")
        
    register_clcmd("say /admins","HookSay")
        
        
    message_saytext get_user_msgid("SayText");
    }
    public 
    HookSay(id) {
        new 
    players[32],inum;
        new 
    a_text[256],s_text[256],a_count,s_count;
        
    get_players(players,inum)
        static 
    tempid,name[32];
        for(new 
    i;i<inum;i++) {
            
    tempid players[i];
            if(
    access(tempid,ADMIN_FLAG)) {
                
    get_user_name(tempid,name,31)
                
    format(a_text,255,"%s %s,",a_text,name)
                
    a_count++
            }
            else if(
    access(tempid,SLOT_FLAG)) {
                
    get_user_name(tempid,name,31)
                
    format(s_text,255,"%s %s,",s_text,name)
                
    s_count++
            }
        }
        
    format(a_text,255,"^4Online Adminler: ^3%s"a_count a_text "Online Admin Yok")
        
    format(s_text,255,"^4Online Slotlar: ^3%s"s_count s_text "Online Slot Yok")
        
    message_begin(MSG_ONEmessage_saytext, {0,0,0}, id)
        
    write_byte(id)
        
    write_string(a_text)
        
    message_end()
        
    message_begin(MSG_ONEmessage_saytext, {0,0,0}, id)
        
    write_byte(id)
        
    write_string(s_text)
        
    message_end()

    Konu akcaliberkk tarafından (28-06-13 Saat 21:14 ) değiştirilmiştir.

    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/


Benzer Konular

  1. Admin Yeşil v2.2 Plugini ( Kurucu Admin ve Slot Tagı )
    By NiCoMeDiA in forum [PLUGİN] Cs 1.6 Eklentiler
    Cevaplar: 546
    Son Mesaj: 09-02-18, 21:18
  2. Farklı Bir Hook Plugini
    By reset44 in forum Çözülmüş İstekler
    Cevaplar: 6
    Son Mesaj: 21-08-14, 00:28
  3. Farklı Respawn Plugini
    By batuopoz0770 in forum [PLUGİN] Cs 1.6 Eklentiler
    Cevaplar: 0
    Son Mesaj: 24-10-12, 15:22

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

admin plugini

csplague admin plugini

csplague online admin plugini

cs plague admin plugini

cs 1.6 admins online plugin csplague

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