Kullanıcı Tag Listesi

6 sonuçtan 1 ile 6 arası

Konu: Sma Sorunu

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

    Standart Sma Sorunu

    Beyler şu smayı bir türlü amxx yapamadım. bikaç hata veriyor. çevirebilirseniz sevinirim.

    PHP- Kodu:
    /*================================================================================
        
        -----------------------------------
        -*- [BB] Default Zombie Classes -*-
        -----------------------------------
        
        ~~~~~~~~~~~~~~~
        - Description -
        ~~~~~~~~~~~~~~~
        
        This plugin adds the default zombie classes from Zombie Plague
        into Base Builder. All credit belongs to MeRcyLeZZ.
        
        All classes have been balanced, but feel free to edit them if
        you are not satisfied.
        
    ================================================================================*/

    #include <amxmodx>
    #include <hamsandwich>
    #include <fun>
    #include <basebuilder>
    #include <cstrike>

    /*================================================================================
     [Plugin Customization]
    =================================================================================*/

    // Classic Zombie Attributes
    new const zclass1_name[] = { "Klasik Zombi" }
    new const 
    zclass1_info[] = { "=Balanced=" }
    new const 
    zclass1_model[] = { "bb_classic" }
    new const 
    zclass1_clawmodel[] = { "v_bloodyhands" }
    const 
    zclass1_health 3000
    const zclass1_speed 260
    const Float:zclass1_gravity 1.0
    const zclass1_adminflags ADMIN_ALL

    // Fast Zombie Attributes
    new const zclass2_name[] = { "UsainBolt Zombi" }
    new const 
    zclass2_info[] = { "HP-- Speed++" }
    new const 
    zclass2_model[] = { "bb_fast" }
    new const 
    zclass2_clawmodel[] = { "v_bloodyhands" }
    const 
    zclass2_health 2000
    const zclass2_speed 325
    const Float:zclass2_gravity 1.0
    const zclass2_adminflags ADMIN_ALL

    // Jumper Zombie Attributes
    new const zclass3_name[] = { "Kosucu Zombi" }
    new const 
    zclass3_info[] = { "HP- Jump+" }
    new const 
    zclass3_model[] = { "bb_jumper" }
    new const 
    zclass3_clawmodel[] = { "v_bloodyhands" }
    const 
    zclass3_health 2500
    const zclass3_speed 285
    const Float:zclass3_gravity 0.5
    const zclass3_adminflags ADMIN_ALL

    // Tanker Zombie Attributes
    new const zclass4_name[] = { "Kaya Zombi" }
    new const 
    zclass4_info[] = { "HP++ Speed-" }
    new const 
    zclass4_model[] = { "bb_tanker" }
    new const 
    zclass4_clawmodel[] = { "v_bloodyhands" }
    const 
    zclass4_health 4500
    const zclass4_speed 200
    const Float:zclass4_gravity 1.0
    const zclass4_adminflags ADMIN_ALL
    #define TANK_ARMOR 200

    /*============================================================================*/

    new g_zclass_tanker

    // Zombie Classes MUST be registered on plugin_precache
    public plugin_precache()
    {
        
    register_plugin("[BB] Default Zombie Classes""6.5""Tirant")
        
        
    // Register all classes
        
    bb_register_zombie_class(zclass1_namezclass1_infozclass1_modelzclass1_clawmodelzclass1_healthzclass1_speedzclass1_gravity0.0zclass1_adminflags)
        
    bb_register_zombie_class(zclass2_namezclass2_infozclass2_modelzclass2_clawmodelzclass2_healthzclass2_speedzclass2_gravity0.0zclass2_adminflags)
        
    bb_register_zombie_class(zclass3_namezclass3_infozclass3_modelzclass3_clawmodelzclass3_healthzclass3_speedzclass3_gravity0.0zclass3_adminflags)
        
    g_zclass_tanker bb_register_zombie_class(zclass4_namezclass4_infozclass4_modelzclass4_clawmodelzclass4_healthzclass4_speedzclass4_gravity0.0zclass4_adminflags)
    }

    #if defined TANK_ARMOR
    public plugin_init()
    {
        
    RegisterHam(Ham_Spawn"player""ham_PlayerSpawn_Post"1)
    }

    public 
    ham_PlayerSpawn_Post(id)
    {
        if (!
    is_user_alive(id))
            return ;
            
        if (
    bb_is_user_zombie(id) && bb_get_user_zombie_class(id) == g_zclass_tanker)
        {
            
    give_item(id"item_assaultsuit");
            
    cs_set_user_armor(idTANK_ARMORCS_ARMOR_VESTHELM);
        }
    }
    #endif 
    Yardımlarınızı Bekliyorum.
    BaseBuilder CodeR

  2. #2
    binbaşı к4dανяα - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Jun 2012
    Yer
    Hayat hattında acemi tayfalardık. Ne avunduk sevinç müsveddeleriyle; aşktan ikmale kaldık..
    Mesajlar
    618
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    12

    Standart Cevap: Sma Sorunu

    PHP- Kodu:
    /*================================================================================
        
        -----------------------------------
        -*- [BB] Default Zombie Classes -*-
        -----------------------------------
        
        - Description -
        
        This plugin adds the default zombie classes from Zombie Plague
        into Base Builder. All credit belongs to MeRcyLeZZ.
        
        All classes have been balanced, but feel free to edit them if
        you are not satisfied.
        
     */

    #include <amxmodx>
    #include <hamsandwich>
    #include <fun>
    #include <basebuilder>
    #include <cstrike>

    /*================================================================================
     [Plugin Customization]
    =================================================================================*/

    // Classic Zombie Attributes
    new const zclass1_name[] = { "Klasik Zombi" }
    new const 
    zclass1_info[] = { "=Balanced=" }
    new const 
    zclass1_model[] = { "bb_classic" }
    new const 
    zclass1_clawmodel[] = { "v_bloodyhands" }
    const 
    zclass1_health 3000
    const zclass1_speed 260
    const Float:zclass1_gravity 1.0
    const zclass1_adminflags ADMIN_ALL

    // Fast Zombie Attributes
    new const zclass2_name[] = { "UsainBolt Zombi" }
    new const 
    zclass2_info[] = { "HP-- Speed++" }
    new const 
    zclass2_model[] = { "bb_fast" }
    new const 
    zclass2_clawmodel[] = { "v_bloodyhands" }
    const 
    zclass2_health 2000
    const zclass2_speed 325
    const Float:zclass2_gravity 1.0
    const zclass2_adminflags ADMIN_ALL

    // Jumper Zombie Attributes
    new const zclass3_name[] = { "Kosucu Zombi" }
    new const 
    zclass3_info[] = { "HP- Jump+" }
    new const 
    zclass3_model[] = { "bb_jumper" }
    new const 
    zclass3_clawmodel[] = { "v_bloodyhands" }
    const 
    zclass3_health 2500
    const zclass3_speed 285
    const Float:zclass3_gravity 0.5
    const zclass3_adminflags ADMIN_ALL

    // Tanker Zombie Attributes
    new const zclass4_name[] = { "Kaya Zombi" }
    new const 
    zclass4_info[] = { "HP++ Speed-" }
    new const 
    zclass4_model[] = { "bb_tanker" }
    new const 
    zclass4_clawmodel[] = { "v_bloodyhands" }
    const 
    zclass4_health 4500
    const zclass4_speed 200
    const Float:zclass4_gravity 1.0
    const zclass4_adminflags ADMIN_ALL
    #define TANK_ARMOR 200

    /*============================================================================*/

    new g_zclass_tanker

    // Zombie Classes MUST be registered on plugin_precache
    public plugin_precache()
    {
        
    register_plugin("[BB] Default Zombie Classes""6.5""Tirant")
        
        
    // Register all classes
        
    bb_register_zombie_class(zclass1_namezclass1_infozclass1_modelzclass1_clawmodelzclass1_healthzclass1_speedzclass1_gravity0.0zclass1_adminflags)
        
    bb_register_zombie_class(zclass2_namezclass2_infozclass2_modelzclass2_clawmodelzclass2_healthzclass2_speedzclass2_gravity0.0zclass2_adminflags)
        
    bb_register_zombie_class(zclass3_namezclass3_infozclass3_modelzclass3_clawmodelzclass3_healthzclass3_speedzclass3_gravity0.0zclass3_adminflags)
        
    g_zclass_tanker bb_register_zombie_class(zclass4_namezclass4_infozclass4_modelzclass4_clawmodelzclass4_healthzclass4_speedzclass4_gravity0.0zclass4_adminflags)
    }

    #if defined TANK_ARMOR
    public plugin_init()
    {
        
    RegisterHam(Ham_Spawn"player""ham_PlayerSpawn_Post"1)
    }

    public 
    ham_PlayerSpawn_Post(id)
    {
        if (!
    is_user_alive(id))
            return ;
            
        if (
    bb_is_user_zombie(id) && bb_get_user_zombie_class(id) == g_zclass_tanker)
        {
            
    give_item(id"item_assaultsuit");
            
    cs_set_user_armor(idTANK_ARMORCS_ARMOR_VESTHELM);
        }
    }
    #endif 


    Çeviremessen Söyle amxx atiyim paşam

    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.



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






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

    Standart Cevap: Sma Sorunu

    çeviremiyorum
    BaseBuilder CodeR

  4. #4
    binbaşı к4dανяα - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Jun 2012
    Yer
    Hayat hattında acemi tayfalardık. Ne avunduk sevinç müsveddeleriyle; aşktan ikmale kaldık..
    Mesajlar
    618
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    12

    Standart Cevap: Sma Sorunu

    AL kardeşim indir
    Ekli Dosyalar Ekli Dosyalar

    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.



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






  5. #5
    onbasi er
    Üyelik tarihi
    Jun 2012
    Mesajlar
    83
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    12

    Standart Cevap: Sma Sorunu

    Teşekkürler.
    BaseBuilder CodeR

  6. #6
    binbaşı к4dανяα - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Jun 2012
    Yer
    Hayat hattında acemi tayfalardık. Ne avunduk sevinç müsveddeleriyle; aşktan ikmale kaldık..
    Mesajlar
    618
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    12

    Standart Cevap: Sma Sorunu

    Rica ederim konu çözülmüş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.



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






Benzer Konular

  1. Zm Bunny Sorunu
    By nightmaresesame in forum Çözülmüş İstekler
    Cevaplar: 2
    Son Mesaj: 03-07-12, 21:22

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