Edged ESP For Any Game [Source]

Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Onaylı Üye
Katılım
6 Şub 2016
Mesajlar
105
Tepki puanı
2
10 HİZMET YILI

Kod:
//ViKiNGHook CSGO pEsp.
void ViKiNGHook::DrawLine(int x, int y, int xx, int yy, Color Draw)
{
        pSurface->DrawSetColor(Draw);
        pSurface->DrawLine(x, y, xx, yy);
}
 
void ViKiNGHook::CornerBox(int x, int y, int w, int h, Color Draw)
{
        int bWidth = w;
        int bHeight = h;
        DrawLine(x, y, x, y + (bHeight / 5), Draw);
        DrawLine(x, y, x + (bWidth / 5), y, Draw);
        DrawLine(x + bWidth, y, x + bWidth - (bWidth / 5), y, Draw);
        DrawLine(x + bWidth, y, x + bWidth, y + (bHeight / 5), Draw);
        DrawLine(x, y + bHeight, x + (bWidth / 5), y + bHeight, Draw);
        DrawLine(x, y + bHeight, x, y + bHeight - (bHeight / 5), Draw);
        DrawLine(x + bWidth, y + bHeight, x + bWidth - (bWidth / 5), y + bHeight, Draw);
        DrawLine(x + bWidth, y + bHeight, x + bWidth, y + bHeight - (bHeight / 5), Draw);
}
 
void ViKiNGHook::EdgedOutline(int x, int y, int w, int h, Color Draw) {
        CornerBox(x - 1, y - 1, w + 2, h + 2, Color(0, 0, 0, 255));
        CornerBox(x, y, w, h, Draw);
}

150a3439b0bb6ba5de9bf108706059d5.png
 
aka panic.rs
Kurucu
Katılım
18 Haz 2015
Mesajlar
3,379
Çözümler
50
Tepki puanı
13,156
Ödüller
22
Sosyal
10 HİZMET YILI
Alıntı diye belirt.
 
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Üst