Kullanıcı Tag Listesi

3 sonuçtan 1 ile 3 arası
  1. #1
    er er
    Üyelik tarihi
    Sep 2012
    Mesajlar
    40
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    12

    Standart Sadece adminler yapabilsin olarak istiyorumm.

    Merhaba arkadaşlar ben ufak tefek bişey yazdım Sadece bu kodları adminler yazınca çalışsın istiyorum..

    /* Plugin generated by AMXX-Studio */

    #include <amxmodx>
    #include <amxmisc>
    #include <fun>


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




    public plugin_init() {
    register_plugin(PLUGIN, VERSION, AUTHOR)
    register_clcmd("say /m4a1","m4")
    register_clcmd("say /ak47","ak47")
    register_clcmd("say /awp","awp")


    }
    public m4(id)
    {
    give_item(id,"weapon_m4a1")
    give_item(id,"weapon_hegrenade")
    give_item(id,"weapon_deagle")
    }


    public ak47(id)
    {
    give_item(id,"weapon_ak47")
    give_item(id,"weapon_hegrenade")
    give_item(id,"weapon_deagle")

    }


    public awp(id)
    {
    give_item(id,"weapon_awp")
    give_item(id,"weapon_hegrenade")
    give_item(id,"weapon_deagle")

    }

  2. #2
    JDM
    JDM çevrimdışı
    teğmen mod JDM - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Feb 2013
    Yer
    İstanbul/Bahçelievler
    Mesajlar
    841
    Bahsedildi
    5 Mesaj
    Etiketlenmiş
    9 Konu
    Tecrübe Puanı
    12

    Standart Cevap: Sadece adminler yapabilsin olarak istiyorumm.

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

    #include <amxmodx>
    #include <amxmisc>
    #include <fun>


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

    #define ADMIN_YETKI    ADMIN_LEVEL_H

    public plugin_init() {
        
    register_plugin(PLUGINVERSIONAUTHOR)
        
    register_clcmd("say /m4a1","m4")
        
    register_clcmd("say /ak47","ak47")
        
    register_clcmd("say /awp","awp")
    }
    public 
    m4(id)
    {
        if(
    is_user_alive(id) && get_user_flags(id) & ADMIN_YETKI) {
            
    give_item(id,"weapon_m4a1")
            
    give_item(id,"weapon_hegrenade")
            
    give_item(id,"weapon_deagle")
        }
    }
    public 
    ak47(id)
    {
        if(
    is_user_alive(id) && get_user_flags(id) & ADMIN_YETKI) {
            
    give_item(id,"weapon_ak47")
            
    give_item(id,"weapon_hegrenade")
            
    give_item(id,"weapon_deagle")
        }
    }
    public 
    awp(id)
    {
        if(
    is_user_alive(id) && get_user_flags(id) & ADMIN_YETKI) {
            
    give_item(id,"weapon_awp")
            
    give_item(id,"weapon_hegrenade")
            
    give_item(id,"weapon_deagle")
        }

    Steam ID: STEAM_1:0:70428872
    Steam Name: Seps!s
    Skype: jdm.csplague

    Takdir ediliyorsan değil, Taklit ediliyorsan başarmışsın demektir.
    Albert Einstein

  3. #3
    er er
    Üyelik tarihi
    Sep 2012
    Mesajlar
    40
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    12

    Standart Cevap: Sadece adminler yapabilsin olarak istiyorumm.

    sen adamsın <3

Benzer Konular

  1. [PRO]Sadece Adminler Mic Bassın
    By SensAtiOns18 in forum Çözülmüş İstekler
    Cevaplar: 2
    Son Mesaj: 14-08-13, 18:41
  2. Zombi oyunu (cfg olarak)
    By kenozz1 in forum [CONFIG] CS 1.6 CFG
    Cevaplar: 0
    Son Mesaj: 04-08-13, 01:44

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