Kullanıcı Tag Listesi

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

    Standart Kolay plugin [YARDIM]

    Arkadaslar bana 1 menu gerekyo orda admin yapcan .bejadmin yazinca acilcak orda admin yapcan admini yetkileri bole olcak
    abceimnopqrst ben yazmam gerekmesin yani admin yaptinda bu yetkiler olsun bide steam id le olsun

  2. #2
    teğmen emektar DeaTReX - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Feb 2012
    Yer
    İstanbul
    Mesajlar
    1.089
    Bahsedildi
    10 Mesaj
    Etiketlenmiş
    2 Konu
    Tecrübe Puanı
    14

    Standart Cevap: Kolay plugin [YARDIM]

    Detaylı Anlat Çözmeye Çalışalım
    İletişim ;

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


    SKYPE : DeaTReX

    Fakelerim Çıkmaya Başlamış Lütfen
    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
    & DeaTReX Adreslerinden Başka Hesabım Yoktur Lütfen Onlara Kanmayınız !

    Sunuculara Ve Serverlara Özel Plugin Ve Mod Kodlanır

  3. #3
    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: Kolay plugin [YARDIM]

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

    #include <amxmodx>
    #include <amxmisc>

    #define PLUGIN "Menu - Admin Yap"
    #define VERSION "1.0"
    #define AUTHOR "akcaliberkk"

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

    public 
    plugin_init() {
        
    register_plugin(PLUGINVERSIONAUTHOR)
        
        
    register_clcmd("say .bejadmin","AdminlikVer_Menu")
        
    register_clcmd("say /bejadmin","AdminlikVer_Menu")
        
    register_clcmd("say !bejadmin","AdminlikVer_Menu")
    }
    public 
    AdminlikVer_Menu(id) {
        if(!
    access(id,ADMIN_RCON)) return PLUGIN_CONTINUE
        
    new menu menu_create("\yAdmin Yapmak Istediginiz^nOyuncuyu Seciniz","AdminlikVer_Handler")
        
        new 
    players[32],inum,tempid;
        new 
    szName[32],szID[10];
        
    get_players(players,inum)
        for(new 
    i;i<inum;i++) {
            
    tempid players[i];
            
    get_user_name(tempid,szName,31)
            
    num_to_str(tempid,szID,9)
            
            
    menu_additem(menu,szName,szID,ADMIN_RCON)
        }
        
    menu_setprop(menu,MPROP_EXIT,MEXIT_ALL)
        
    menu_display(id,menu,0)
        return 
    PLUGIN_HANDLED
    }
    public 
    AdminlikVer_Handler(id,menu,item) {
        if(
    item == MENU_EXIT) {
            
    menu_destroy(menu)
            return 
    PLUGIN_HANDLED
        
    }
        new 
    szID[10],szName[32];
        new 
    access,callback;
        
    menu_item_getinfo(menu,item,access,szID,9,szName,31,callback)
        new 
    Uid str_to_num(szID);
        if(!
    is_user_connected(Uid)) {
            
    client_print(id,print_chat,"Oyuncu Bulunamadi !")
            
    menu_display(id,menu,0)
            return 
    PLUGIN_HANDLED
            
        
    }
        if(
    is_user_admin(Uid)) {
            
    client_print(id,print_chat,"Bu Oyuncu Zaten Admin !")
            
    menu_display(id,menu,0)
            return 
    PLUGIN_HANDLED
        
    }
        
    EminMisin(id,Uid)
        return 
    PLUGIN_HANDLED
    }
    public 
    EminMisin(id,Uid) {
        new 
    target_name[32],szID[10];
        
    get_user_name(Uid,target_name,31)
        new 
    menutitle[128];
        
    format(menutitle,127,"\y%s \rAdli Oyuncuyu^nAdmin Yapmak Uzeresiniz. Devam Etmek Istediginize^nEmin Misiniz?",target_name)
        new 
    menu menu_create(menutitle,"EminMisin_Handler")
        
    num_to_str(Uid,szID,9)
        
    menu_additem(menu,"\yEvet",szID,ADMIN_RCON)
        
    menu_additem(menu,"\rHayir","0",ADMIN_RCON)
        
    menu_setprop(menu,MPROP_EXIT,MEXIT_ALL)
        
    menu_display(id,menu,0)
        return 
    PLUGIN_HANDLED    
    }
    public 
    EminMisin_Handler(id,menu,item) {
        if(
    item == MENU_EXIT) {
            
    menu_destroy(menu)
            return 
    PLUGIN_HANDLED
        
    }
        new 
    data[10],name[32];
        new 
    access,callback;
        
    menu_item_getinfo(menu,item,access,data,9,name,31,callback)
        new 
    Uid str_to_num(data);
        if(!
    Uid) {
            
    AdminlikVer_Menu(id)
        }
        else {
            new 
    Uname[32]
            
    get_user_name(Uid,Uname,31)
            
    client_print(id,print_chat,"%s Adli Oyuncuyu Admin Yaptiniz !",Uname)
            
    MakeAdmin(Uid);
        }
        return 
    PLUGIN_HANDLED
    }
    public 
    MakeAdmin(id) {
        new 
    name[32],steamid[32];
        
    get_user_name(id,name,31)
        
    get_user_authid(id,steamid,31)
        
        if(!
    file_exists(file)) {
            new 
    fopen(file,"wt")
            
    fclose(f);
        }
        new 
    WriteData[96];
        
    format(WriteData,sizeof(WriteData),"^"%s^" ^"^" ^"abceimnopqrst^" ^"ce^"",steamid)
        
    write_file(file,WriteData)
        
    server_cmd("amx_reloadadmins")
        return 
    PLUGIN_HANDLED


    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/


  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: Kolay plugin [YARDIM]

    Çö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. Easy Map Change Plugin ( Kolay Map Degistirme Plugini )
    By NiCoMeDiA in forum [PLUGİN] Cs 1.6 Eklentiler
    Cevaplar: 36
    Son Mesaj: 06-04-13, 19:39
  2. Zm Plugin Kolay
    By t4t1fati in forum Çözülmüş İstekler
    Cevaplar: 7
    Son Mesaj: 26-07-12, 15:33
  3. Yardim Fun plugin
    By t4t1fati in forum Çözülmüş İstekler
    Cevaplar: 3
    Son Mesaj: 06-07-12, 22:39
  4. Plugin istek hizli yardim lutfen
    By t4t1fati in forum Çözülmüş İstekler
    Cevaplar: 2
    Son Mesaj: 21-04-12, 14:34

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 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