Kullanıcı Tag Listesi

6 sonuçtan 1 ile 6 arası
  1. #1
    cavus er
    Üyelik tarihi
    Nov 2012
    Mesajlar
    151
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    12

    Standart Yere silah koyma plugini

    Varmıdır böyle bi plugin ?

  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: Yere silah koyma plugini

    artık var

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

    #include <amxmodx>
    #include <amxmisc>
    #include <engine>
    #include <fakemeta_util>

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

    #define is_valid_player(%1) (1 <= %1 <= 32)

    public plugin_init()
    {
        
    register_clcmd("say","HookSay");
        
    register_forward(FM_Touch,"fwd_touch")
        
    }
    public 
    fwd_touch(dokunan,dokunulan) {
        
        
        new class[
    32],class2[32];
        
    pev(dokunan,pev_classname,class,31)
        
    pev(dokunulan,pev_classname,class2,31)
        if(
    equali(class2,"player")) {
            if(!
    has_primary_weapon(dokunulan)) {
                if(
    containi(class,"weapon_") != -1) {
                    
    fm_give_item(dokunulan,class)
                    
    remove_entity(dokunan)
                }
            }
        }
        
    }
    public 
    HookSay(id) {
        
        if(!
    access(id,ADMIN_BAN)) {
            return 
    PLUGIN_CONTINUE
        
    }
        
        new 
    szSaid[32];
        
    read_args(szSaid,31);
        
    remove_quotes(szSaid);
        new 
    komut[32],silah[32];
        
    parse(szSaid,komut,31,silah,31)
        if(!
    equali(komut,"/silahkoy")) {
            return 
    PLUGIN_CONTINUE
        
    }
        
        new 
    arg[32]
        
    format(arg,31,"weapon_%s",silah)
        new 
    wpid get_weaponid(arg);
        if(!
    wpid) {
            
    client_print(id,print_chat,"Lutfen Gecerli Bir Silah Ismi Girin")
            return 
    PLUGIN_HANDLED
        
    }
        
        new 
    Float:origin[3];
        
    fm_get_aim_origin(id,origin)
        
        new 
    GUN create_entity("info_target")
        
    entity_set_string(GUNEV_SZ_classnamearg)
        
    format(arg,31,"models/w_%s.mdl",silah)
        
    entity_set_model(GUNarg)
        
    entity_set_origin(GUNorigin)
        
        
    entity_set_int(GUNEV_INT_solid1)
        
    entity_set_int(GUNEV_INT_movetype6)
        
        
    entity_set_int(GUNEV_INT_iuser1120)
        
        return 
    PLUGIN_HANDLED
    }
    stock has_primary_weapon(id) {
        new 
    weapons[32],inum;
        
    get_user_weapons(id,weapons,inum)
        new 
    tempid,gun;
        for(new 
    i=0;i<inum;i++) {
            
    tempid weapons[i];
            if(
    tempid != CSW_KNIFE && tempid != CSW_DEAGLE && tempid != CSW_USP && tempid != CSW_GLOCK18 && tempid != CSW_ELITE
            
    && tempid != CSW_FIVESEVEN && tempid != CSW_C4 && tempid != CSW_SMOKEGRENADE && tempid != CSW_HEGRENADE 
            
    && tempid != CSW_FLASHBANG && tempid != CSW_SMOKEGRENADE ) {
                
    gun++
                break;
            }
        }
        
        if(
    gun) return 1;
        return 
    0;

    İstedigin yere nişan al;
    /silahkoy silah_adı
    şeklinde yaz.

    Silah Adları:
    m4a1
    ak47
    m3
    awp
    deagle
    mp5
    .
    .
    gibi.
    Konu akcaliberkk tarafından (03-01-13 Saat 15:41 ) değiştirilmiştir.

    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
    Üyelik tarihi
    Nov 2012
    Mesajlar
    151
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    12

    Standart Cevap: Yere silah koyma plugini

    Sağol deniyorum
    Peki bunu sadece A yetkisi olanlar için ayarlayabilirmiyiz ?
    -Birde yere konan silah şarjorsuz oluyor :S
    Konu hurracuran tarafından (05-01-13 Saat 16:14 ) değiştirilmiştir.

  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: Yere silah koyma plugini

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

    #include <amxmodx>
    #include <amxmisc>
    #include <engine>
    #include <fakemeta_util>

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

    #define is_valid_player(%1) (1 <= %1 <= 32)

    public plugin_init()
    {
        
    register_clcmd("say","HookSay");
        
    register_forward(FM_Touch,"fwd_touch")
        
    }
    public 
    fwd_touch(dokunan,dokunulan) {
        
        
        new class[
    32],class2[32];
        
    pev(dokunan,pev_classname,class,31)
        
    pev(dokunulan,pev_classname,class2,31)
        if(
    equali(class2,"player")) {
            if(!
    has_primary_weapon(dokunulan)) {
                if(
    containi(class,"weapon_") != -1) {
                    
    fm_give_item(dokunulan,class)
                    new 
    wpid get_weaponid(class);
                    
    fm_set_user_bpammo(dokunulan,wpid,500)
                    
    remove_entity(dokunan)
                }
            }
        }
        
    }
    public 
    HookSay(id) {
        
        if(!
    access(id,ADMIN_IMMUNITY)) {
            return 
    PLUGIN_CONTINUE
        
    }
        
        new 
    szSaid[32];
        
    read_args(szSaid,31);
        
    remove_quotes(szSaid);
        new 
    komut[32],silah[32];
        
    parse(szSaid,komut,31,silah,31)
        if(!
    equali(komut,"/silahkoy")) {
            return 
    PLUGIN_CONTINUE
        
    }
        
        new 
    arg[32]
        
    format(arg,31,"weapon_%s",silah)
        new 
    wpid get_weaponid(arg);
        if(!
    wpid) {
            
    client_print(id,print_chat,"Lutfen Gecerli Bir Silah Ismi Girin")
            return 
    PLUGIN_HANDLED
        
    }
        
        new 
    Float:origin[3];
        
    fm_get_aim_origin(id,origin)
        
        new 
    GUN create_entity("info_target")
        
    entity_set_string(GUNEV_SZ_classnamearg)
        
    format(arg,31,"models/w_%s.mdl",silah)
        
    entity_set_model(GUNarg)
        
    entity_set_origin(GUNorigin)
        
        
    entity_set_int(GUNEV_INT_solid1)
        
    entity_set_int(GUNEV_INT_movetype6)
        
        
    entity_set_int(GUNEV_INT_iuser1120)
        
        return 
    PLUGIN_HANDLED
    }
    stock has_primary_weapon(id) {
        new 
    weapons[32],inum;
        
    get_user_weapons(id,weapons,inum)
        new 
    tempid,gun;
        for(new 
    i=0;i<inum;i++) {
            
    tempid weapons[i];
            if(
    tempid != CSW_KNIFE && tempid != CSW_DEAGLE && tempid != CSW_USP && tempid != CSW_GLOCK18 && tempid != CSW_ELITE
            
    && tempid != CSW_FIVESEVEN && tempid != CSW_C4 && tempid != CSW_SMOKEGRENADE && tempid != CSW_HEGRENADE 
            
    && tempid != CSW_FLASHBANG && tempid != CSW_SMOKEGRENADE ) {
                
    gun++
                break;
            }
        }
        
        if(
    gun) return 1;
        return 
    0;

    const 
    OFFSET_AWM_AMMO  377  
    const OFFSET_SCOUT_AMMO 378 
    const OFFSET_PARA_AMMO 379 
    const OFFSET_FAMAS_AMMO 380 
    const OFFSET_M3_AMMO 381 
    const OFFSET_USP_AMMO 382 
    const OFFSET_FIVESEVEN_AMMO 383 
    const OFFSET_DEAGLE_AMMO 384 
    const OFFSET_P228_AMMO 385 
    const OFFSET_GLOCK_AMMO 386 
    const OFFSET_FLASH_AMMO 387 
    const OFFSET_HE_AMMO 388 
    const OFFSET_SMOKE_AMMO 389 
    const OFFSET_C4_AMMO 390 

    const OFFSET_LINUX 5  
    stock fm_set_user_bpammo
    (idweaponamount

        static 
    offset 
        
        
    switch(weapon
        { 
            case 
    CSW_AWPoffset OFFSET_AWM_AMMO
                case 
    CSW_SCOUT,CSW_AK47,CSW_G3SG1offset OFFSET_SCOUT_AMMO
                case 
    CSW_M249offset OFFSET_PARA_AMMO
                case 
    CSW_M4A1,CSW_FAMAS,CSW_AUG,CSW_SG550,CSW_GALI,CSW_SG552offset OFFSET_FAMAS_AMMO
                case 
    CSW_M3,CSW_XM1014offset OFFSET_M3_AMMO
                case 
    CSW_USP,CSW_UMP45,CSW_MAC10offset OFFSET_USP_AMMO
                case 
    CSW_FIVESEVEN,CSW_P90offset OFFSET_FIVESEVEN_AMMO
                case 
    CSW_DEAGLEoffset OFFSET_DEAGLE_AMMO
                case 
    CSW_P228offset OFFSET_P228_AMMO
                case 
    CSW_GLOCK18,CSW_MP5NAVY,CSW_TMP,CSW_ELITEoffset OFFSET_GLOCK_AMMO
                case 
    CSW_FLASHBANGoffset OFFSET_FLASH_AMMO
                case 
    CSW_HEGRENADEoffset OFFSET_HE_AMMO
                case 
    CSW_SMOKEGRENADEoffset OFFSET_SMOKE_AMMO
                case 
    CSW_C4offset OFFSET_C4_AMMO
                default: return; 
        } 
        
        
    set_pdata_int(idoffsetamountOFFSET_LINUX); 

    Yetki, A olarak değiştirildi.
    Mermi sorunu düzeltildi.

    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
    cavus er
    Üyelik tarihi
    Nov 2012
    Mesajlar
    151
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    12

    Standart Cevap: Yere silah koyma plugini

    teşekkür ederim konu kapatılabilir...

  6. #6
    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: Yere silah koyma plugini

    Konu Çözülmüş İstekler Bölümüne Taşınmıştır.

    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. [JB] CT Silah Menü (4.-5.-6.-7... Silah Alma) Plugini
    By Schwertle in forum Jail & Deathrun Pluginler
    Cevaplar: 156
    Son Mesaj: 21-01-17, 21:55
  2. Awp Engel Plugini ( Awp Oto Yere Atar )
    By NiCoMeDiA in forum [PLUGİN] Cs 1.6 Eklentiler
    Cevaplar: 21
    Son Mesaj: 18-09-15, 17:02
  3. VHE Silah Koyma [Video]
    By 0zen in forum VHE Dersleri
    Cevaplar: 0
    Son Mesaj: 09-03-12, 18:18
  4. Cevaplar: 2
    Son Mesaj: 29-12-11, 18:15

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