⭐🚀 TkyNET | Blacklist ve Profesyonel DDoS Korumalı TeamSpeak 3 Sunucuları 🚀⭐
Sponsor Görsel
🔥 Netvay VDS – Daha Fazla Güç, Daha Fazla Performans, Daha Fazla Başarı!
Sponsor Görsel 2
SponsorSponsor

csgomod t ve ct için eldiven eklentisi lazım

Konu

#11
PARDON

(31-05-2020, 01:04)QuryWesT Adlı Kullanıcıdan Alıntı: Eklenti Yok

(31-05-2020, 01:04)QuryWesT Adlı Kullanıcıdan Alıntı: Eklenti Yok
.smaT_CT_Knife.sma(Dosya Boyutu: 980 Bayt | İndirme Sayısı: 3)
Son Düzenleme: 31-05-2020, 01:12, Düzenleyen: nurinisanci06.
#12
Eklentiyi Ak47 Uzerine Yaptım CT-T ak47 Ayrı Ayrı Yapabilirsin

Kod:
#include <amxmodx>
#include <reapi>

new const PLUGIN[] = "T_CT_Knife";
new const VERSION[] = "1.0";
new const AUTHOR[] = "By.KinG";

new const CT_M4a1[] = "models/v_ctknife.mdl";
new const T_Ak47[] = "models/v_tknife.mdl";

public plugin_init()
{
    register_plugin(PLUGIN, VERSION, AUTHOR);
    register_event("CurWeapon", "Event_CurWeapon", "be", "1=1");
}

public plugin_precache()
{
    precache_model(CT_M4a1);
    precache_model(T_Ak47);
}

public Event_CurWeapon(ID)
{
    new Weapon_ID = read_data(2);
    
    switch(Weapon_ID)
    {
        case CSW_AK47:
        {
            switch(get_member(ID, m_iTeam))
            {
                case TEAM_CT :
                {
                    set_entvar(ID, var_viewmodel, CT_M4a1);
                }
                case TEAM_TERRORIST :
                {
                    set_entvar(ID, var_viewmodel, T_Ak47);
                }
            }
        }
    }
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1055\\ f0\\ fs16 \n\\ par }
*/

CS2 Ücretli Eklenti - CS 1.6 Ücretli Eklenti ~
Son Düzenleme: 31-05-2020, 01:15, Düzenleyen: QuryWesT.
#13
(31-05-2020, 01:14)QuryWesT Adlı Kullanıcıdan Alıntı: Eklentiyi Ak47 Uzerine Yaptım CT-T ak47 Ayrı Ayrı Yapabilirsin

Kod:
#include <amxmodx>
#include <reapi>

new const PLUGIN[] = "T_CT_Knife";
new const VERSION[] = "1.0";
new const AUTHOR[] = "By.KinG";

new const CT_M4a1[] = "models/v_ctknife.mdl";
new const T_Ak47[] = "models/v_tknife.mdl";

public plugin_init()
{
    register_plugin(PLUGIN, VERSION, AUTHOR);
    register_event("CurWeapon", "Event_CurWeapon", "be", "1=1");
}

public plugin_precache()
{
    precache_model(CT_M4a1);
    precache_model(T_Ak47);
}

public Event_CurWeapon(ID)
{
    new Weapon_ID = read_data(2);
    
    switch(Weapon_ID)
    {
        case CSW_AK47:
        {
            switch(get_member(ID, m_iTeam))
            {
                case TEAM_CT :
                {
                    set_entvar(ID, var_viewmodel, CT_M4a1);
                }
                case TEAM_TERRORIST :
                {
                    set_entvar(ID, var_viewmodel, T_Ak47);
                }
            }
        }
    }
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1055\\ f0\\ fs16 \n\\ par }
*/


bunu 31 modele göre nasıl ayarlayabiliriz modelden anlıyorumda plugin işi sıkıntı bunun için 31 eklenti kurmam mı gerek
#14
(31-05-2020, 01:14)QuryWesT Adlı Kullanıcıdan Alıntı: Eklentiyi Ak47 Uzerine Yaptım CT-T ak47 Ayrı Ayrı Yapabilirsin

Kod:
#include <amxmodx>
#include <reapi>

new const PLUGIN[] = "T_CT_Knife";
new const VERSION[] = "1.0";
new const AUTHOR[] = "By.KinG";

new const CT_M4a1[] = "models/v_ctknife.mdl";
new const T_Ak47[] = "models/v_tknife.mdl";

public plugin_init()
{
    register_plugin(PLUGIN, VERSION, AUTHOR);
    register_event("CurWeapon", "Event_CurWeapon", "be", "1=1");
}

public plugin_precache()
{
    precache_model(CT_M4a1);
    precache_model(T_Ak47);
}

public Event_CurWeapon(ID)
{
    new Weapon_ID = read_data(2);
    
    switch(Weapon_ID)
    {
        case CSW_AK47:
        {
            switch(get_member(ID, m_iTeam))
            {
                case TEAM_CT :
                {
                    set_entvar(ID, var_viewmodel, CT_M4a1);
                }
                case TEAM_TERRORIST :
                {
                    set_entvar(ID, var_viewmodel, T_Ak47);
                }
            }
        }
    }
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1055\\ f0\\ fs16 \n\\ par }
*/
mesela ak47 ve m4a1 yazan yerlere glock ve usp yapsam v_modelinide yapsam gene olur demi


mesela ak47 ve m4a1 yazan yerlere glock ve usp yapsam v_modelinide yapsam gene olur demi
Son Düzenleme: 31-05-2020, 01:20, Düzenleyen: nurinisanci06.
#16
(31-05-2020, 01:21)QuryWesT Adlı Kullanıcıdan Alıntı: Olmaz Sadece Ak47 Ayarladım Ama İstersen 2 Tane Sma Daha Atyım Hem Usp Hemde m4 halini yapıp atyım ?
gerçekten çok güzel olur yaparsanız çok mutlu olurum
#17
Bu Ak47 İçin CT-T Ak47 İçin Model

Kod:
#include <amxmodx>
#include <reapi>

new const PLUGIN[] = "T_CT_Knife";
new const VERSION[] = "1.0";
new const AUTHOR[] = "By.KinG";

new const CT_Ak47[] = "models/v_ak47.mdl";
new const T_Ak47[] = "models/v_ak47.mdl";

public plugin_init()
{
    register_plugin(PLUGIN, VERSION, AUTHOR);
    register_event("CurWeapon", "Event_CurWeapon", "be", "1=1");
}

public plugin_precache()
{
    precache_model(CT_Ak47);
    precache_model(T_Ak47);
}

public Event_CurWeapon(ID)
{
    new Weapon_ID = read_data(2);
    
    switch(Weapon_ID)
    {
        case CSW_AK47:
        {
            switch(get_member(ID, m_iTeam))
            {
                case TEAM_CT :
                {
                    set_entvar(ID, var_viewmodel, CT_Ak47);
                }
                case TEAM_TERRORIST :
                {
                    set_entvar(ID, var_viewmodel, T_Ak47);
                }
            }
        }
    }
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1055\\ f0\\ fs16 \n\\ par }
*/

Bu M4A1 İçin Ct-T İçin Model

Kod:
#include <amxmodx>
#include <reapi>

new const PLUGIN[] = "T_CT_Knife";
new const VERSION[] = "1.0";
new const AUTHOR[] = "By.KinG";

new const CT_M4a1[] = "models/v_m4a1.mdl";
new const T_M4a1[] = "models/v_m4a1.mdl";

public plugin_init()
{
    register_plugin(PLUGIN, VERSION, AUTHOR);
    register_event("CurWeapon", "Event_CurWeapon", "be", "1=1");
}

public plugin_precache()
{
    precache_model(CT_M4a1);
    precache_model(T_M4a1);
}

public Event_CurWeapon(ID)
{
    new Weapon_ID = read_data(2);
    
    switch(Weapon_ID)
    {
        case CSW_M4A1:
        {
            switch(get_member(ID, m_iTeam))
            {
                case TEAM_CT :
                {
                    set_entvar(ID, var_viewmodel, CT_M4a1);
                }
                case TEAM_TERRORIST :
                {
                    set_entvar(ID, var_viewmodel, T_M4a1);
                }
            }
        }
    }
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1055\\ f0\\ fs16 \n\\ par }
*/

Bu Usp İçin Ct-T İçin Model


Kod:
#include <amxmodx>
#include <reapi>

new const PLUGIN[] = "T_CT_Knife";
new const VERSION[] = "1.0";
new const AUTHOR[] = "By.KinG";

new const CT_Usp[] = "models/v_usp.mdl";
new const T_Usp[] = "models/v_usp.mdl";

public plugin_init()
{
    register_plugin(PLUGIN, VERSION, AUTHOR);
    register_event("CurWeapon", "Event_CurWeapon", "be", "1=1");
}

public plugin_precache()
{
    precache_model(CT_Usp);
    precache_model(T_Usp);
}

public Event_CurWeapon(ID)
{
    new Weapon_ID = read_data(2);
    
    switch(Weapon_ID)
    {
        case CSW_USP:
        {
            switch(get_member(ID, m_iTeam))
            {
                case TEAM_CT :
                {
                    set_entvar(ID, var_viewmodel, CT_Usp);
                }
                case TEAM_TERRORIST :
                {
                    set_entvar(ID, var_viewmodel, T_Usp);
                }
            }
        }
    }
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1055\\ f0\\ fs16 \n\\ par }
*/


Bu Deagle İçin Ct-T İçin Model


Kod:
#include <amxmodx>
#include <reapi>

new const PLUGIN[] = "T_CT_Knife";
new const VERSION[] = "1.0";
new const AUTHOR[] = "By.KinG";

new const CT_Deagle[] = "models/v_deagle.mdl";
new const T_Deagle[] = "models/v_deagle.mdl";

public plugin_init()
{
    register_plugin(PLUGIN, VERSION, AUTHOR);
    register_event("CurWeapon", "Event_CurWeapon", "be", "1=1");
}

public plugin_precache()
{
    precache_model(CT_Deagle);
    precache_model(T_Deagle);
}

public Event_CurWeapon(ID)
{
    new Weapon_ID = read_data(2);
    
    switch(Weapon_ID)
    {
        case CSW_DEAGLE:
        {
            switch(get_member(ID, m_iTeam))
            {
                case TEAM_CT :
                {
                    set_entvar(ID, var_viewmodel, CT_Deagle);
                }
                case TEAM_TERRORIST :
                {
                    set_entvar(ID, var_viewmodel, T_Deagle);
                }
            }
        }
    }
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1055\\ f0\\ fs16 \n\\ par }
*/

KONUNUZ COZULDUYSE BELİRTİRSİNİZ
CS2 Ücretli Eklenti - CS 1.6 Ücretli Eklenti ~
#18
(31-05-2020, 01:29)QuryWesT Adlı Kullanıcıdan Alıntı: Bu Ak47 İçin CT-T Ak47 İçin Model

Kod:
#include <amxmodx>
#include <reapi>

new const PLUGIN[] = "T_CT_Knife";
new const VERSION[] = "1.0";
new const AUTHOR[] = "By.KinG";

new const CT_Ak47[] = "models/v_ak47.mdl";
new const T_Ak47[] = "models/v_ak47.mdl";

public plugin_init()
{
    register_plugin(PLUGIN, VERSION, AUTHOR);
    register_event("CurWeapon", "Event_CurWeapon", "be", "1=1");
}

public plugin_precache()
{
    precache_model(CT_Ak47);
    precache_model(T_Ak47);
}

public Event_CurWeapon(ID)
{
    new Weapon_ID = read_data(2);
    
    switch(Weapon_ID)
    {
        case CSW_AK47:
        {
            switch(get_member(ID, m_iTeam))
            {
                case TEAM_CT :
                {
                    set_entvar(ID, var_viewmodel, CT_Ak47);
                }
                case TEAM_TERRORIST :
                {
                    set_entvar(ID, var_viewmodel, T_Ak47);
                }
            }
        }
    }
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1055\\ f0\\ fs16 \n\\ par }
*/

Bu M4A1 İçin Ct-T İçin Model

Kod:
#include <amxmodx>
#include <reapi>

new const PLUGIN[] = "T_CT_Knife";
new const VERSION[] = "1.0";
new const AUTHOR[] = "By.KinG";

new const CT_M4a1[] = "models/v_m4a1.mdl";
new const T_M4a1[] = "models/v_m4a1.mdl";

public plugin_init()
{
    register_plugin(PLUGIN, VERSION, AUTHOR);
    register_event("CurWeapon", "Event_CurWeapon", "be", "1=1");
}

public plugin_precache()
{
    precache_model(CT_M4a1);
    precache_model(T_M4a1);
}

public Event_CurWeapon(ID)
{
    new Weapon_ID = read_data(2);
    
    switch(Weapon_ID)
    {
        case CSW_M4A1:
        {
            switch(get_member(ID, m_iTeam))
            {
                case TEAM_CT :
                {
                    set_entvar(ID, var_viewmodel, CT_M4a1);
                }
                case TEAM_TERRORIST :
                {
                    set_entvar(ID, var_viewmodel, T_M4a1);
                }
            }
        }
    }
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1055\\ f0\\ fs16 \n\\ par }
*/

Bu Usp İçin Ct-T İçin Model


Kod:
#include <amxmodx>
#include <reapi>

new const PLUGIN[] = "T_CT_Knife";
new const VERSION[] = "1.0";
new const AUTHOR[] = "By.KinG";

new const CT_Usp[] = "models/v_usp.mdl";
new const T_Usp[] = "models/v_usp.mdl";

public plugin_init()
{
    register_plugin(PLUGIN, VERSION, AUTHOR);
    register_event("CurWeapon", "Event_CurWeapon", "be", "1=1");
}

public plugin_precache()
{
    precache_model(CT_Usp);
    precache_model(T_Usp);
}

public Event_CurWeapon(ID)
{
    new Weapon_ID = read_data(2);
    
    switch(Weapon_ID)
    {
        case CSW_USP:
        {
            switch(get_member(ID, m_iTeam))
            {
                case TEAM_CT :
                {
                    set_entvar(ID, var_viewmodel, CT_Usp);
                }
                case TEAM_TERRORIST :
                {
                    set_entvar(ID, var_viewmodel, T_Usp);
                }
            }
        }
    }
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1055\\ f0\\ fs16 \n\\ par }
*/


Bu Deagle İçin Ct-T İçin Model


Kod:
#include <amxmodx>
#include <reapi>

new const PLUGIN[] = "T_CT_Knife";
new const VERSION[] = "1.0";
new const AUTHOR[] = "By.KinG";

new const CT_Deagle[] = "models/v_deagle.mdl";
new const T_Deagle[] = "models/v_deagle.mdl";

public plugin_init()
{
    register_plugin(PLUGIN, VERSION, AUTHOR);
    register_event("CurWeapon", "Event_CurWeapon", "be", "1=1");
}

public plugin_precache()
{
    precache_model(CT_Deagle);
    precache_model(T_Deagle);
}

public Event_CurWeapon(ID)
{
    new Weapon_ID = read_data(2);
    
    switch(Weapon_ID)
    {
        case CSW_DEAGLE:
        {
            switch(get_member(ID, m_iTeam))
            {
                case TEAM_CT :
                {
                    set_entvar(ID, var_viewmodel, CT_Deagle);
                }
                case TEAM_TERRORIST :
                {
                    set_entvar(ID, var_viewmodel, T_Deagle);
                }
            }
        }
    }
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1055\\ f0\\ fs16 \n\\ par }
*/

KONUNUZ COZULDUYSE BELİRTİRSİNİZ

wc gitmiştimde geldim gerçekten çok teşekkür ederim gece gece uraştınız herkese teşekkürler konu kilit saolun
#20
Konunuz "Çözülmüş İsteklere" taşınmıştır.
Linksta

Bir hesap oluşturun veya yorum yapmak için giriş yapın

Yorum yapmak için üye olmanız gerekiyor

ya da