Kullanıcı Tag Listesi

16 sonuçtan 1 ile 10 arası

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: [JB] Aimin ortasında toplam tlerin ve yaşayan Tlerinin Sayısı

    PHP- Kodu:
    /* Plugin generated by AMXX-Studio */

    #include <amxmodx>
    #include <amxmisc>
    #include <engine>
    #include <hamsandwich>

    #define PLUGIN "Show Prisoners"
    #define VERSION "1.0"
    #define AUTHOR "akcaliberk"

    new canli,toplam;
    public 
    plugin_init() {
        
    register_plugin(PLUGINVERSIONAUTHOR)
        
        
        
    register_event("DeathMsg","DeathEvent","a")
        
    register_logevent("RoundStart",2,"1=Round_Start")
        
        
    RegisterHam(Ham_Spawn,"player","EventSpawn")
        
    }
    public 
    client_PreThink() {
        
    client_print(0,print_center,"Mahkumlar: %d/%d",canli,toplam)
    }
    public 
    EventSpawn(id) {
        
    checkTerror()
    }
    public 
    DeathEvent() {
        new 
    olen read_data(2);
        
        if(
    get_user_team(olen) == 1) {
            
    set_task(0.5,"checkTerror")
        }
    }
    public 
    RoundStart() {
        
    set_task(0.5,"checkTerror")
    }
    public 
    checkTerror() {
        
        new 
    players[32],terortop,teroralv;
        
    get_players(players,teroralv,"ae","TERRORIST")
        
    get_players(players,terortop,"e","TERRORIST")
            
        
    canli teroralv;
        
    toplam terortop;

    Olası bir fps düşürme problemi yok. Dedicated Serverda denedim. Eğer denediğin serverda bir problem olursa söyle prethinki set_task olarak değişirim.
    Konu akcaliberkk tarafından (15-10-12 Saat 19:13 ) 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. Sabit Skor ( Ekranın Ortasında Takım Skorları )
    By NiCoMeDiA in forum [PLUGİN] Cs 1.6 Eklentiler
    Cevaplar: 80
    Son Mesaj: 11-10-15, 12:39
  2. Dünyanın En İyi Cs Oyuncularının Cfgleri Toplam 1292 CFG !
    By fenerbahce07 in forum [CONFIG] CS 1.6 CFG
    Cevaplar: 0
    Son Mesaj: 24-09-12, 11:18
  3. quickLy CFG || Aimin Kaydığını Hissedeceksiniz (No-Recoil)
    By quickLy in forum [CONFIG] CS 1.6 CFG
    Cevaplar: 2
    Son Mesaj: 05-03-12, 18:13
  4. quickLy CFG || Aimin Kaydığını Hissedeceksiniz (No-Recoil)
    By quickLy in forum [CONFIG] CS 1.6 CFG
    Cevaplar: 0
    Son Mesaj: 05-03-12, 02:36

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

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