Kullanıcı Tag Listesi

5 sonuçtan 1 ile 5 arası
  1. #1
    cavus er shakespeare - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Jan 2012
    Mesajlar
    278
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    13

    Standart steamid kontrolunu komuta bağlama

    canberk merhaba bişey sormak istiyorum. plugin gayet güzel oldu steamid kontrolü ile oyuna giremiyolar. Fakat şöyle birşey denedim. Ben o eklentiye cvar koydum. cvar acık olunca tarama ypaıyo kapalı olunca taramayı yapmıyor. Fakat birşey daha yapmak istedim. Mesela eklenti cvarı kapalı. Sunucu steamid leri kontrol etmiyor. Diyelimki sw da admin bi anda steamid leri kontrol etmek istedi. O anda cvarı açınca sw daki adamların steamid leri eşleşmese bile sunucudan atılmıyo yani adam sunucudan çıkıp tekrar girmeye calıştıgında giremiyor. Mesela /tarama gibi bi komut yapmayı denedim. /tarama yazınca hemen sunucudakilere bakıyo ve steamid leri eşleşmeyince sunucudan anında atsın istedim fakat anında atma olayını yapamadım. Birşey eklemem gerekli mi ?
    MSN :
    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

    WEBSİTE :
    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
    color="Red">FACEBOOK
    :
    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
    color="#ff0000">-
    MatchArena.NET-
    Güvenli ve hızlı steam satışında doğru adres!


  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: steamid kontrolunu komuta bağlama

    for döngüsünü kullanarak oyundaki tüm oyuncuların steamid lerini dosya ile karşılaştırabilirsin. Yapamazsan sma yı at eklerim.

    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
    cavus er shakespeare - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Jan 2012
    Mesajlar
    278
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    13

    Standart Cevap: steamid kontrolunu komuta bağlama

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

    #include <amxmodx>
    #include <amxmisc>

    #define PLUGIN "SteamID WhiteList"
    #define VERSION "1.0"
    #define AUTHOR "akcaliberkk"

    new const file[] = "addons/amxmodx/configs/STEAMID.ini"

    public plugin_init() {
        
    register_plugin(PLUGINVERSIONAUTHOR)
        
        if(!
    file_exists(file)) {
            new 
    fopen(file,"wt")
            
    fclose(f);
        }
        
    }
    public 
    client_authorized(id) {
        new 
    steamid[32];
        
    get_user_authid(id,steamid,31)
        new 
    LineTime[32],LineID[32];
        
        new 
    szLineText[64],txtlen;
        new 
    maxlines file_size(file,1)
        for(new 
    line;line<maxlines;line++) {
            
    read_file(file,line,szLineText,63,txtlen)
            
    parse(szLineText,LineTime,31,LineID,31)
            if(
    correct_time(LineTime) && equali(LineID,steamid)) {
                return 
    PLUGIN_CONTINUE
            
    }
            
        }
        
    server_cmd("kick #%d ^"SteamID'niz Listede Bulunmamaktadir.^"",get_user_userid(id))
        return PLUGIN_HANDLED
    }  
    stock correct_time(const szTime[]) {
        new now[32];
        new mintime[32],maxtime[32];
        new iMinTime,iMaxTime,iTime;
        get_time("%H%M",now,31);
        copy(mintime,4,szTime)
        copy(maxtime,4,szTime[5])
        iMinTime = str_to_num(mintime)
        iMaxTime = str_to_num(maxtime)
        iTime = str_to_num(now)
        if(iMinTime <= iTime <= iMaxTime) return true;
        return false;
        

    canberkcim bu sma nın içerisine /tarama diye bi komut eklemek istiyorum. /tarama komutu uygulandığı zaman serverda, o an sunucudaki steamidleri kontrol edecek. Ve listemizdeki steamid ler ile eşleşmez ise oyundan atacak eşleşmeyenleri anında. Yani sunucudayken atacak eşleşme olmazsa. Ben denedim for ile. Fakat for ile oyunculara yaptırabiliyorum ama ini dosyasını okutamıyorum bu seferde. yardımcı olursan sevinirim. Teşekkürler.
    MSN :
    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

    WEBSİTE :
    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
    color="Red">FACEBOOK
    :
    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
    color="#ff0000">-
    MatchArena.NET-
    Güvenli ve hızlı steam satışında doğru adres!


  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: steamid kontrolunu komuta bağlama

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

    #include <amxmodx>
    #include <amxmisc>

    #define PLUGIN "SteamID WhiteList"
    #define VERSION "1.0"
    #define AUTHOR "akcaliberkk"

    new const file[] = "addons/amxmodx/configs/STEAMID.ini"

    public plugin_init() {
        
    register_plugin(PLUGINVERSIONAUTHOR)
        
        
    register_clcmd("say /tarama","cmdTara")
        
        if(!
    file_exists(file)) {
            new 
    fopen(file,"wt")
            
    fclose(f);
        }
        
    }
    public 
    cmdTara(id) {
        if(!
    access(id,ADMIN_BAN)) return PLUGIN_CONTINUE
        
        
    new players[32],inum;
        
    get_players(players,inum)
        new 
    steamid[32];
        
        new 
    LineTime[32],LineID[32];
        new 
    szLineText[64],txtlen;
        new 
    maxlines file_size(file,1)
        new 
    tempid;
        
        for(new 
    i;i<inum;i++) {
            
    tempid players[i];
            
    get_user_authid(tempid,steamid,31)
            for(new 
    line;line<maxlines;line++) {
                
    read_file(file,line,szLineText,63,txtlen)
                
    parse(szLineText,LineTime,31,LineID,31)
                if(!(
    correct_time(LineTime) && equali(LineID,steamid))) {
                    
    server_cmd("kick #%d ^"SteamID'niz Listede Bulunmamaktadir.^"",get_user_userid(tempid))
                }
                
            }
        }
        return PLUGIN_HANDLED
    }
    public client_authorized(id) {
        new steamid[32];
        get_user_authid(id,steamid,31)
        new LineTime[32],LineID[32];
        
        new szLineText[64],txtlen;
        new maxlines = file_size(file,1)
        for(new line;line<maxlines;line++) {
            read_file(file,line,szLineText,63,txtlen)
            parse(szLineText,LineTime,31,LineID,31)
            if(correct_time(LineTime) && equali(LineID,steamid)) {
                return PLUGIN_CONTINUE
            }
            
        }
        server_cmd("kick #%d ^"SteamID'
    niz Listede Bulunmamaktadir.^"",get_user_userid(id))
        return 
    PLUGIN_HANDLED
    }  
    stock correct_time(const szTime[]) {
        new 
    now[32];
        new 
    mintime[32],maxtime[32];
        new 
    iMinTime,iMaxTime,iTime;
        
    get_time("%H%M",now,31);
        
    copy(mintime,4,szTime)
        
    copy(maxtime,4,szTime[5])
        
    iMinTime str_to_num(mintime)
        
    iMaxTime str_to_num(maxtime)
        
    iTime str_to_num(now)
        if(
    iMinTime <= iTime <= iMaxTime) return true;
        return 
    false;
        


    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
    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: steamid kontrolunu komuta bağlama

    Çözülmüş İsteklere taşındı.

    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. saatli steamid girişi
    By shakespeare in forum Çözülmüş İstekler
    Cevaplar: 3
    Son Mesaj: 26-03-13, 21:31
  2. /ekle steamid
    By shakespeare in forum Çözülmüş İstekler
    Cevaplar: 6
    Son Mesaj: 22-03-13, 22:14
  3. steamid kontrol
    By shakespeare in forum Çözülmüş İstekler
    Cevaplar: 6
    Son Mesaj: 20-03-13, 02:19
  4. oyuncunun steamid sini gösterme
    By shakespeare in forum Çözülmüş İstekler
    Cevaplar: 11
    Son Mesaj: 04-01-13, 19:45

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.