Kullanıcı Tag Listesi

10 sonuçtan 1 ile 10 arası

Konu: Cross renk

Hybrid View

  1. #1
    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: Cross renk

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

    #define PLUGIN         "Crosshair Color"
    #define VERSION     "1.0"
    #define AUTHOR         "akcaliberkk"

    #pragma semicolon 1

    new is_friend[33];

    public 
    plugin_init()
    {
        
    register_plugin(PLUGINVERSIONAUTHOR);
        
        
    register_event("StatusValue""event_statusvalue_team""be""1=1");
        
    register_event("StatusValue""event_status_value""be""1=2""2!0");
        
    register_event("StatusValue""event_statusvalue_hide""be""1=1""2=0");
        
    }

    public 
    event_statusvalue_team(id)
    {
        if(!
    is_user_bot(id) && is_user_connected(id))
        {
            
    is_friend[id] = read_data(2);
        }
    }

    public 
    event_status_value(id)
    {
        if(!
    is_user_bot(id) && is_user_connected(id))
        {
            if(
    is_friend[id] == 1)
            {
                
    client_cmd(id"cl_crosshair_color ^"0 0 255^"");
            }
            else
            {
                
    client_cmd(id"cl_crosshair_color ^"255 0 0^"");
            }
        }
    }

    public 
    event_statusvalue_hide(id)
    {
        if(!
    is_user_bot(id) && is_user_connected(id))
        {
            
    client_cmd(id"cl_crosshair_color ^"0 0 255^"");
        }

    Konu akcaliberkk tarafından (15-04-13 Saat 18:53 ) 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. All Sniper Cross ( Butun Dürbünlülere Crosshair ) Plugini
    By NiCoMeDiA in forum [PLUGİN] Cs 1.6 Eklentiler
    Cevaplar: 73
    Son Mesaj: 26-01-16, 16:10
  2. Renk Renk Modeller
    By ard26tr in forum [MODEL] Cs 1.6 Skin Bölümü
    Cevaplar: 1
    Son Mesaj: 08-11-14, 01:06
  3. Counter Strike 1.6 AWP Cross
    By VaLienTe in forum AWP
    Cevaplar: 201
    Son Mesaj: 06-01-14, 18:20
  4. Lazer Cross Awp Süper Bi Şey
    By ExTReMe in forum AWP
    Cevaplar: 6
    Son Mesaj: 19-11-12, 20:56
  5. Cross.cfg || CsPlague.com' a Özel || WizarD
    By WizarD in forum [CONFIG] CS 1.6 CFG
    Cevaplar: 1
    Son Mesaj: 16-03-12, 01:09

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