EMO Style ForumPro - Hos Geldiniz
[Source] Great D3D Crosshair source Uyeols10

Join the forum, it's quick and easy

EMO Style ForumPro - Hos Geldiniz
[Source] Great D3D Crosshair source Uyeols10
EMO Style ForumPro - Hos Geldiniz
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Giriş yap

Şifremi unuttum

Istatistikler
Toplam 203 kayıtlı kullanıcımız var
Son kaydolan kullanıcımız: crayzboy76

Kullanıcılarımız toplam 1186 mesaj attılar bunda 862 konu
Tarıyıcı
 Kapı
 Indeks
 Üye Listesi
 Profil
 SSS
 Arama
Arama
 
 

Sonuç :
 


Rechercher çıkıntı araştırma

RSS akısı


Yahoo! 
MSN 
AOL 
Netvibes 
Bloglines 


Anahtar-kelime

kutu  pointer  loot  

Kimler hatta?
Toplam 2 kullanıcı online :: 0 Kayıtlı, 0 Gizli ve 2 Misafir

Yok

[ Bütün listeye bak ]


Sitede bugüne kadar en çok 217 kişi C.tesi Tem. 29, 2017 1:46 am tarihinde online oldu.
En son konular
» İnternetten Para Kazandıran Oyun ! Ödeme Alt Limiti Yok ! DEV KONU
[Source] Great D3D Crosshair source I_icon_minitimeCuma Ağus. 29, 2014 8:33 am tarafından Hello EMO

» goldenchase.net maden yaparak para kazanma
[Source] Great D3D Crosshair source I_icon_minitimeCuma Ağus. 29, 2014 8:18 am tarafından Hello EMO

» etichal hacker görsel egitim seti
[Source] Great D3D Crosshair source I_icon_minitimeÇarş. Ağus. 06, 2014 4:57 am tarafından Hello EMO

» KO TBL Source C#
[Source] Great D3D Crosshair source I_icon_minitimePtsi Ara. 09, 2013 6:36 am tarafından Hello EMO

» x86 Registers
[Source] Great D3D Crosshair source I_icon_minitimeC.tesi Ağus. 24, 2013 5:02 am tarafından Hello EMO

» [Tutorial] Pegando Address, Pointers de WYD
[Source] Great D3D Crosshair source I_icon_minitimeÇarş. Tem. 10, 2013 7:25 am tarafından Hello EMO

» [Tutorial] Pegando Address, Pointers de CS Metodo²
[Source] Great D3D Crosshair source I_icon_minitimeÇarş. Tem. 10, 2013 7:23 am tarafından Hello EMO

» [Tutorial] Aprendendo basico deASM OLLYDBG
[Source] Great D3D Crosshair source I_icon_minitimeÇarş. Tem. 10, 2013 7:22 am tarafından Hello EMO

» Basic C# DLL injector
[Source] Great D3D Crosshair source I_icon_minitimePtsi Tem. 08, 2013 7:48 am tarafından Hello EMO

Reklam

[Source] Great D3D Crosshair source

Aşağa gitmek

[Source] Great D3D Crosshair source Empty [Source] Great D3D Crosshair source

Mesaj tarafından Hello EMO C.tesi Ara. 11, 2010 3:59 am

[quote name='IRcOnFuZeD' timestamp='1252358897' post='25528']
I Used Frit0's code, as a basis for this, and made my own crosshair, using D3DXCOLOR.

you can find Frit0's source HERE

EDIT: Oh yea.. creds to sh00ter999, from an example he posted somewhere (i forget where) i learned how to use D3DXCOLOR

Kod:

[COLOR="Green"]//Globals[/COLOR]
[COLOR="Blue"]#include[/COLOR] [COLOR="DarkRed"]<D3DX8.h> [/COLOR]

[COLOR="Green"]//NOTE: If you're planning on doing this in DirectX9
// you will have to change the 8 to 9 to include the correct header.[/COLOR]

[COLOR="Blue"]float[/COLOR] ScreenCenterX = 0.0f;[COLOR="Green"]//Horizontal Position[/COLOR]
[COLOR="Blue"]float[/COLOR] ScreenCenterY = 0.0f;[COLOR="Green"]//Vertical Position[/COLOR]
[COLOR="Blue"]bool[/COLOR] xhair = [COLOR="Blue"]false[/COLOR];
D3DCOLOR redt = D3DCOLOR_XRGB( 255, 0, 0 );

Kod:
[COLOR="Green"]//in SetViewport add this[/COLOR]
ScreenCenterX = ( float )pViewport->Width / 2;
ScreenCenterY = ( float )pViewport->Height / 2;


Kod:

[COLOR="Green"]//in EndScene[/COLOR]

if (GetAsyncKeyState (VK_INSERT)&1)
{
xhair = !xhair;
}

[COLOR="Blue"]if[/COLOR] (xhair)
{    D3DRECT rec1 = {ScreenCenterX-25, ScreenCenterY, ScreenCenterX+ 25, ScreenCenterY+1};
    D3DRECT rec2 = {ScreenCenterX, ScreenCenterY-25, ScreenCenterX+ 1,ScreenCenterY+25}; 
    psyDevice->Clear( 1, &rec1, D3DCLEAR_TARGET, D3DXCOLOR(1.0, 0.0, 0.0, 1.0), 0,  0 );//red
    psyDevice->Clear( 1, &rec2, D3DCLEAR_TARGET, D3DXCOLOR(1.0, 0.0, 0.0, 1.0), 0,  0 );

   
    D3DRECT rec3 = {ScreenCenterX-15, ScreenCenterY, ScreenCenterX+ 15, ScreenCenterY+1};
    D3DRECT rec4 = {ScreenCenterX, ScreenCenterY-15, ScreenCenterX+ 1,ScreenCenterY+15}; 
    psyDevice->Clear( 1, &rec3, D3DCLEAR_TARGET, D3DXCOLOR(0.0, 0.0, 0.0, 0.0), 0,  0 );// black
    psyDevice->Clear( 1, &rec4, D3DCLEAR_TARGET, D3DXCOLOR(0.0, 0.0, 0.0, 0.0), 0,  0 );
   
    D3DRECT rec5 = {ScreenCenterX-3, ScreenCenterY, ScreenCenterX+ 3, ScreenCenterY+1};
    D3DRECT rec6 = {ScreenCenterX, ScreenCenterY-3, ScreenCenterX+ 1,ScreenCenterY+3}; 
    psyDevice->Clear( 1, &rec5, D3DCLEAR_TARGET, D3DXCOLOR(1.0, 0.0, 0.0, 1.0), 0,  0 );// black
    psyDevice->Clear( 1, &rec6, D3DCLEAR_TARGET, D3DXCOLOR(1.0, 0.0, 0.0, 1.0), 0,  0 );

}

Mines Different, larger, and it looks really cool Razz just an easy source for those that want a s00p3r-1337 Crosshair.
oh yea, and to turn it off/on the hotkey is Insert
^.^
[/quote]
Hello EMO
Hello EMO
EMO Team
EMO Team

Cinsiyet : Erkek
Burçlar : Yay
Yılan
Mesaj Sayısı : 935
Puan : 372493
Rep Puanı : 18
Doğum tarihi : 28/11/89
Kayıt tarihi : 21/07/09
Yaş : 34
Nerden : EMO WorlD
İş/Hobiler : RCE Student / Game Hacking / Learn Beginner C#,C++,Delphi
Lakap : EMO

https://emostyle.yetkinforum.com

Sayfa başına dön Aşağa gitmek

Sayfa başına dön

- Similar topics

 
Bu forumun müsaadesi var:
Bu forumdaki mesajlara cevap veremezsiniz