CSGO C# External Skin changer çalışmıyor!

Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Uzman Üye
Katılım
25 Ağu 2020
Mesajlar
188
Tepki puanı
29
Ödüller
5
5 HİZMET YILI
Merhaba, kendim bir external hile kodluyorum. Kendim bir skin changer yapmak istiyorum. Silah skinleri çalışıyor ancak bıçak değiştirmeye çalıştığımda bu oluyor:
1639629130447.png


Kodum:

C#:
public static void SetSkin(int weapon_id, int paint_id, float wear, int knife_id)
    {
        int modelIndex = 0;
        int current = c_local.GetClientLocalCurrentWeapon();
        short currentID = c_local.GetClientLocalCurrentWeaponID();
        if (currentID != 42 && currentID == weapon_id || currentID != 59 && currentID == weapon_id)
        {
            c_local.SetClientLocalItemIDHigh(current, -1);
            c_local.SetClientLocalFallbackPaintKit(current, paint_id);
            c_local.SetClientLocalFallbackWear(current, wear);
        }
        else
        {
            if (modelIndex > 0)
            {
                if (currentID == 42 && currentID != weapon_id || currentID == 59 && currentID != weapon_id)
                {
                    c_local.SetClientLocalItemIDHigh(current, -1);
                    c_local.SetClientLocalWeaponID(knife_id);
                    c_local.SetClientLocalModelIndex(current, modelIndex);
                    c_local.SetClientLocalCurrentWeaponViewModel(current, modelIndex);
                    c_local.SetClientLocalFallbackQuality(current, 3);
                    c_local.SetClientLocalFallbackPaintKit(current, paint_id);
                    c_local.SetClientLocalFallbackWear(current, wear);
                }               
            }
        }

        int currentVM = c_local.GetClientLocalCurrentWeaponViewModel(current);

        if (currentID == 42)
        {
            modelIndex = currentVM + (1208 - 1118);
        }
        else if (currentID == 59)
        {
            modelIndex = currentVM + (1208 - 1143);
        }

        int currentKnife = c_local.GetClientLocalCurrentViewModel();

        c_local.SetClientLocalModelIndex(currentKnife, modelIndex);
    }

Yardımcı olursanız sevinirim!
 
Shinigami
Süper Üye
Katılım
9 Eyl 2020
Mesajlar
603
Çözümler
2
Tepki puanı
79
Ödüller
6
Yaş
27
5 HİZMET YILI
Sorry to ask this as it may be a dumb question but, do you Need to pair this with a bypass or? Cuz i dont think this Is a standalone thing
 
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Üst