Kullanıcı Tag Listesi

5 sonuçtan 1 ile 5 arası
Like Tree1Likes
  • 1 Post By kApO

Konu: Merhaba,

Threaded View

  1. #1
    onbasi banned
    Üyelik tarihi
    Dec 2013
    Mesajlar
    63
    Bahsedildi
    5 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    0

    Standart Merhaba,

    Vipmenü'ye #define ADMIN_LEVEL_Q ADMIN_RCON eklersek rcon menüsü mü olur?

    ÖRNEK BİR YER VEREYİM BAŞINDAN:

    #include <amxmodx>#include <amxmisc>
    #include <fakemeta>
    #include <fakemeta_util>
    #include <fun>
    #include <hamsandwich>


    #define PLUGIN "VipMenu"
    #define VERSION "1.0"
    #define AUTHOR "Optimist"
    #define ADMIN_LEVEL_Q ADMIN_RCON
    new const PREFIX[] = {
    "!g[!tL Menu!g] !n"
    };
    const WEAPONS_BITSUM = (1<<CSW_KNIFE|1<<CSW_HEGRENADE|1<<CSW_FLASHBANG|1< <CSW_SMOKEGRENADE|1<<CSW_C4);


    #if cellbits == 32
    const OFFSET_CLIPAMMO = 51 ;
    #else
    const OFFSET_CLIPAMMO = 65 ;
    #endif
    new ananzaaxd[33];
    new Float:cok_hizli = 600.0;
    new Float:normal_hizli = 250.0;
    new Float: cl_pushangle[33][3];
    new sinirsizmermi[33],
    health,
    g_max_clients,
    menukullanim[33],
    hizver2[33],
    mermisekmeme[33];


    public plugin_init() {
    register_plugin(PLUGIN, VERSION, AUTHOR)

    register_clcmd("say /lmenu","VmenuKomut")
    register_event("HLTV", "YeniTur", "a", "1=0", "2=0");

    g_max_clients = get_maxplayers();
    }
    public VmenuKomut(id) {
    if(get_user_flags(id) & ADMIN_IMMUNITY && !(menukullanim[id]) && get_user_team(id) == 2){
    VipMenu(id);
    }
    else if(menukullanim[id]){
    client_printc(id, "%s Zaten !gYRD-CPT Shop!nu daha once kullandiniz. Lutfen yeni turu bekleyin...", PREFIX);
    }
    else if(get_user_team(id) == 1){
    VipMenuT(id);
    }
    else{
    client_printc(id, "%s !gYRD-CPT Shop!nu kullanabilmeniz icin !gYRD veya CPT!n olmaniz gerekir.", PREFIX);
    return PLUGIN_HANDLED;
    }
    return PLUGIN_HANDLED;
    }
    Konu Dexterz tarafından (15-01-14 Saat 00:54 ) değiştirilmiştir.

Benzer Konular

  1. Merhaba
    By scarty in forum Ben Kimim
    Cevaplar: 5
    Son Mesaj: 14-02-13, 21:33
  2. Merhaba
    By f4r2an in forum Ben Kimim
    Cevaplar: 13
    Son Mesaj: 01-05-12, 22:41
  3. -_-Merhaba-_-
    By ByHack13 in forum Ben Kimim
    Cevaplar: 1
    Son Mesaj: 04-04-12, 19:12
  4. -_-Merhaba-_-
    By fruk99 in forum Ben Kimim
    Cevaplar: 4
    Son Mesaj: 04-04-12, 19:09
  5. Merhaba :)
    By 0zen in forum Ben Kimim
    Cevaplar: 7
    Son Mesaj: 08-01-12, 13:46

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