CSGO Orjinal Glow Renkleri + Struct

Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
CoreCheat CSGO
Griffin Premium
Katılım
10 May 2016
Mesajlar
1,766
Çözümler
5
Tepki puanı
720
Ödüller
14
Yaş
25
Sosyal
10 HİZMET YILI
CSGO'da orjinal source engine'ye ait parlama renklerinin kodları aşağıda mevcuttur.
(DIREK OYUNDAN DUMP)
Bunları direk glowobject ve glowindex + 0x38 ile normal yazdırırken rgb kodları olarak giriyorsunuz:

C#:
//Terrorist TEAM
public static GlowStruct GlowEngineTerrorist = new GlowStruct()
{
    r = 0.254f,
    g = 0.236f,
    b = 0.124f,
    a = 2,
    rwo = true,
    rwuo = false
};

//Anti(Counter)-Terrorist TEAM
public static GlowStruct GlowEngineATerrorist = new GlowStruct()
{
    r = 0.113f,
    g = 0.145f,
    b = 0.204f,
    a = 2,
    rwo = true,
    rwuo = false
};

Glow Struct:
C#:
namespace CoreCheat_Reborn.CheatClasses
{
    class Structs
    {
        public struct GlowStruct
        {
            public float r;
            public float g;
            public float b;
            public float a;
            public bool rwo;
            public bool rwuo;
        }
    }
}


Oyun içi görüntüsü:
f7SxjEYW.png


tGoMa8JW.png





Okuyan arkadaşlara hediyem:
Glowobject, glowindex, entitylist
C#:
public const Int32 m_iGlowIndex = 0xA40C;
public const Int32 dwGlowObjectManager = 0x5248228;
public const Int32 dwEntityList = 0x4D07DD4;
 
Son düzenleme:
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Üst