Kullanıcı Tag Listesi

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

    Angry Adam Oldurunce Jarjor Fulleme Plugini

    Oncelikle Selamın Aleykum Benim CSDM Bir Serverim Var Adamı Oldurunce Jarjor Fulleme Plugini İstiyorum Bu Plugin Varsa Atarmısınız Arkadaşlar Teşekkur Ederim.

  2. #2
    er er
    Üyelik tarihi
    Aug 2014
    Mesajlar
    22
    Bahsedildi
    2 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    10

    Standart Cevap: Adam Oldurunce Jarjor Fulleme Plugini

    #include <amxmodx>
    #include <csdm>
    #include <cstrike>
    #include <fakemeta>


    new const g_weapons[] =
    {
    CSW_P228,
    CSW_SCOUT,
    CSW_XM1014,
    CSW_MAC10,
    CSW_AUG,
    CSW_ELITE,
    CSW_FIVESEVEN,
    CSW_UMP45,
    CSW_SG550,
    CSW_GALI,
    CSW_GALIL,
    CSW_FAMAS,
    CSW_USP,
    CSW_GLOCK18,
    CSW_AWP,
    CSW_MP5NAVY,
    CSW_M249,
    CSW_M3,
    CSW_M4A1,
    CSW_TMP,
    CSW_G3SG1,
    CSW_DEAGLE,
    CSW_SG552,
    CSW_AK47,
    CSW_P90
    }


    new const g_max_clip[] =
    {
    13,
    10,
    7,
    30,
    30,
    30,
    20,
    25,
    30,
    35,
    35,
    25,
    12,
    20,
    10,
    30,
    100,
    8,
    30,
    30,
    20,
    7,
    30,
    30,
    50
    }


    new const g_other_weapons[] =
    {
    CSW_KNIFE,
    CSW_HEGRENADE,
    CSW_C4
    }


    public plugin_init()
    register_plugin("CSDM Refill", "1.0", "Radiance")


    public client_death(killer, victim, wpnindex, hitplace, TK)
    {
    if (!csdm_get_ffa() && TK)
    return


    for (new a = 0; a < sizeof (g_other_weapons); a++)
    if (wpnindex == g_other_weapons[a])
    return


    new weapon = fm_get_weapon_ent(killer, wpnindex)


    for (new a = 0; a < sizeof (g_weapons); a++)
    if (wpnindex == g_weapons[a])
    {
    new ammo = get_weapon_maxclip(wpnindex)


    if (ammo)
    {
    client_cmd(killer, "spk ^"items/9mmclip1.wav^"")
    cs_set_weapon_ammo(weapon, ammo)
    }
    return


    }
    }


    get_weapon_maxclip(wpnid = 0)
    {
    for (new a = 0; a < sizeof (g_weapons); a++)
    if (wpnid == g_weapons[a])
    return g_max_clip[a]


    return false
    }


    fm_get_weapon_ent(id, wpnid = 0)
    {
    new name[32]


    if(wpnid)
    get_weaponname(wpnid, name, 31)


    if (!equal(name, "weapon_", 7))
    format(name, sizeof (name) - 1, "weapon_%s", name)


    return fm_find_ent_by_owner(get_maxplayers(), name, id)
    }


    fm_find_ent_by_owner(id, const classname[], owner, jghgtype = 0)
    {
    new strtype[16] = "classname"
    new ent = id


    switch (jghgtype)
    {
    case 1: strtype = "target"
    case 2: strtype = "targetname"
    }


    while ((ent = engfunc(EngFunc_FindEntityByString, ent, strtype, classname)) && pev(ent, pev_owner) != owner)
    {
    }


    return ent
    }

  3. #3
    onbasi er
    Üyelik tarihi
    Aug 2012
    Mesajlar
    62
    Bahsedildi
    1 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    12

    Standart Cevap: Adam Oldurunce Jarjor Fulleme Plugini

    @borbey Kardeşim Hata Verio Yuklerken
    Plugin yükleme başarısız! Diyor Direk .sma Dosyasını Atarmısiniz Teşekkurler.

    - - - - - - - - - -
    @borbey Kardeşim Hata Verio Yuklerken
    Plugin yükleme başarısız! Diyor Direk .sma Dosyasını Atarmısiniz Teşekkurler.

Benzer Konular

  1. Elbaşı hegrande bombası, mermi fulleme, can yeleği,
    By 3N3S in forum Çözülmüş İstekler
    Cevaplar: 19
    Son Mesaj: 24-04-15, 19:33
  2. Adam Gibi Yeşil Yazı Plugini Lazım
    By KenNy in forum Çözülmüş İstekler
    Cevaplar: 6
    Son Mesaj: 26-10-12, 17:52
  3. Kafes Kaldırma Ve Silah Fulleme Plugini
    By buyukkaptan90 in forum Çözülmüş İstekler
    Cevaplar: 6
    Son Mesaj: 26-07-12, 11:58

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