Kullanıcı Tag Listesi

4 sonuçtan 1 ile 4 arası
  1. #1
    binbaşı er
    Üyelik tarihi
    Jan 2012
    Mesajlar
    416
    Bahsedildi
    1 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    13

    Standart [İSTEK] Rcon Menu SXE Ayarlari Rcon ayarlari

    Merhaba Abiler Ablalar
    Benim Sizden İstedigim Şöle Bir Rcon Menu

    HTML-Kodu:
    sxe ac
    sxe opsional
    sxe kapa 
    sxe güncelle
    Rcon sifresini Degiştir
    Rcon Restart at
    Bunların Hepsini Sadece
    Server_cmd olarak yapiniz
    Sadece Rcon Yetkili Olan Adminler Menuyu Açsın
    Şimdiden Teşekürler
    CelikGame Türkçe Mod Paketlerinin Yapildi Yer
    (Mod Paketleri Sadece Pluginlerin Birleşmesiyle Oluşuyor )
    Not : Benim Editlediğim Pluginlerde Var

    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

  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: [İSTEK] Rcon Menu SXE Ayarlari Rcon ayarlari

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

    #include <amxmodx>
    #include <amxmisc>

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

    new pwcache[33][32];
    new 
    bool:Yeni_Sifre_Giris[33];
    new 
    bool:Yeni_Sifre_Dogrula_Giris[33];
    new 
    bool:Eski_Sifre_Giris[33];
    public 
    plugin_init() {
        
    register_plugin(PLUGINVERSIONAUTHOR)
        
        
    register_clcmd("Eski_Sifre","mEski_Sifre")
        
    register_clcmd("Yeni_Sifre","mYeni_Sifre")
        
    register_clcmd("Yeni_Sifre_Dogrula","mYeni_Sifre_Dogrula")
        
        
    register_clcmd("say /rcon","RconMenu")
    }
    public 
    RconMenu(id) {
        if(!
    access(id,ADMIN_RCON)) return PLUGIN_CONTINUE
        
        
    new menu menu_create("\rRcon Menu","RconMenu_Handle")
        
        
    menu_additem(menu,"Sxe Ac","1",ADMIN_RCON)
        
    menu_additem(menu,"Sxe Opsiyonel","2",ADMIN_RCON)
        
    menu_additem(menu,"Sxe Kapat","3",ADMIN_RCON)
        
    menu_additem(menu,"Rcon Sifre Degistir","4",ADMIN_RCON)
        
    menu_additem(menu,"Rcon Restart","5",ADMIN_RCON)
        
        
    menu_setprop(menu,MPROP_EXIT,MEXIT_ALL)
        
    menu_display(id,menu,0)
        return 
    PLUGIN_HANDLED
    }
    public 
    RconMenu_Handle(id,menu,item) {
        if(
    item == MENU_EXIT) {
            
    menu_destroy(menu)
            return 
    PLUGIN_HANDLED
        
    }
        new 
    data[6],name[32];
        new 
    access,callback;
        
    menu_item_getinfo(menu,item,access,data,5,name,31,callback)
        switch(
    str_to_num(data)) {
            case 
    1:{
                
    server_cmd("__sxei_required 1")
            }
            case 
    2:{
                
    server_cmd("__sxei_required 0")
            }
            case 
    3:{
                
    server_cmd("__sxei_required -1")
            }
            case 
    4:{
                
    client_print(id,print_chat,"Suanki Rcon Sifresini Giriniz.")
                
    client_cmd(id,"messagemode Eski_Sifre")
                
    Eski_Sifre_Giris[id] = true;
            }
            case 
    5:{
                
    server_cmd("restart")
            }
        }
        
    menu_destroy(menu)
        return 
    PLUGIN_HANDLED
    }
    public 
    mEski_Sifre(id) {
        if(!
    Eski_Sifre_Giris[id]) {
            
    console_cmd(id,"Gecersiz Istek")
            return 
    PLUGIN_HANDLED
        
    }
        new 
    text[32],rconpw[32];
        
    get_cvar_string("rcon_password",rconpw,31)
        
    read_args(text,31)
        
    remove_quotes(text)
        if(!
    equal(rconpw,text)) {
            
    client_print(id,print_chat,"ERISIM BLOKLANDI: Yanlis Sifre !")
            return 
    PLUGIN_HANDLED
        
    }
        
    client_print(id,print_chat,"Yeni Rcon Sifresini Giriniz.")
        
    client_cmd(id,"messagemode Yeni_Sifre")
        
    Yeni_Sifre_Giris[id] = true;
        
    Eski_Sifre_Giris[id] = false;
        return 
    PLUGIN_HANDLED
    }
    public 
    mYeni_Sifre(id) {
        if(!
    Yeni_Sifre_Giris[id]) {
            
    console_cmd(id,"Gecersiz Istek")
            return 
    PLUGIN_HANDLED
        
    }
        new 
    text[32];
        
    read_args(text,31)
        
    remove_quotes(text)
        
    copy(pwcache[id],31,text)
        
    client_print(id,print_chat,"Yeni Rcon Sifresini Dogrulayiniz.")
        
    client_cmd(id,"messagemode Yeni_Sifre_Dogrula")
        
    Yeni_Sifre_Dogrula_Giris[id] = true;
        
    Yeni_Sifre_Giris[id] = false;
        return 
    PLUGIN_HANDLED
    }
    public 
    mYeni_Sifre_Dogrula(id) {
        if(!
    Yeni_Sifre_Dogrula_Giris[id]) {
            
    console_cmd(id,"Gecersiz Istek")
            return 
    PLUGIN_HANDLED
        
    }
        new 
    text[32];
        
    read_args(text,31)
        
    remove_quotes(text)
        if(!
    equal(text,pwcache[id])) {
            
    client_print(id,print_chat,"ERISIM BLOKLANDI: Sifreler Uyusmuyor !")
            return 
    PLUGIN_HANDLED
        
    }
        
    set_cvar_string("rcon_password",text)
        
    client_print(id,print_chat,"ERISIM DOGRULANDI: Yeni Sifrenizi Basariyla [ %s ] Olarak Ayarladiniz !",text)
        
    Yeni_Sifre_Dogrula_Giris[id] = false;
        return 
    PLUGIN_HANDLED

    Bir dene bakalım

    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
    binbaşı er
    Üyelik tarihi
    Jan 2012
    Mesajlar
    416
    Bahsedildi
    1 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    13

    Standart Cevap: [İSTEK] Rcon Menu SXE Ayarlari Rcon ayarlari

    Tebrik Ederim
    CelikGame Türkçe Mod Paketlerinin Yapildi Yer
    (Mod Paketleri Sadece Pluginlerin Birleşmesiyle Oluşuyor )
    Not : Benim Editlediğim Pluginlerde Var

    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

  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: [İSTEK] Rcon Menu SXE Ayarlari Rcon ayarlari

    Çö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. Jed's Half-Life Model Viewer Tools Ayarlari
    By freezmen in forum [MODEL] Cs 1.6 Skin Bölümü
    Cevaplar: 11
    Son Mesaj: 17-06-14, 22:02
  2. [ÖZEL] MDL AYARLARI [CSPlague.com]
    By tigin123 in forum CFG Kodları
    Cevaplar: 0
    Son Mesaj: 23-10-12, 14:16
  3. Boom v3 Cfg ( Aim Ayarlari Mevcut )
    By NiCoMeDiA in forum [CONFIG] CS 1.6 CFG
    Cevaplar: 4
    Son Mesaj: 05-10-12, 19:20
  4. [JB] El Sonu Butun Ayarlari Eski Haline Getirme Plugini
    By ruttemfaal in forum Çözülmüş İstekler
    Cevaplar: 35
    Son Mesaj: 17-06-12, 17:47

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

Menusxe

kapasxe

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