Thread: ESP Bone

Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 50
  1. #16
    Eu sou Daleste cheguei mais to saindo fora
    MPGH Member
    experthack's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    1,178
    Reputation
    90
    Thanks
    626
    My Mood
    Aggressive
    Quote Originally Posted by ChaosMagician View Post
    So hi N3XUS
    Ele não e o N3XUS ele nao entra mais na mpgh

  2. #17
    Ratazanajr's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    16
    My Mood
    Fine
    ei man isu e chita vipa?

  3. #18
    Capevaldo's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    CWBeats
    Posts
    5,523
    Reputation
    242
    Thanks
    1,150
    My Mood
    Drunk
    Antes tinha uma função PTC que fazia isso .-.

    /5400 posts
    • CABR Minion:
    Feb, 12th 2011 - Aug, 12th 2011

    • Full CA Section Minion:
    July, 06th 2011 - Aug, 12th 2011

  4. #19
    Awayk's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    72
    Reputation
    10
    Thanks
    6
    My Mood
    Pensive
    Quote Originally Posted by Ratazanajr View Post
    ei man isu e chita vipa?
    Se você ler o tópico saberá que é um ESP Bone .

  5. #20
    TokolocoSK's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Comendo Peru Pato Frango Búrguer.
    Posts
    2,874
    Reputation
    65
    Thanks
    6,858
    My Mood
    Yeehaw
    esqueceu dos créditos do DrUnKeN ChEeTaH



  6. The Following 2 Users Say Thank You to TokolocoSK For This Useful Post:

    New - Hacker (08-11-2012),Pé de panu (08-11-2012)

  7. #21
    New - Hacker's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    498
    Reputation
    23
    Thanks
    110
    My Mood
    Aggressive
    Tem 3 sources de skeleton para CA souto na net, com esse agora são 4

  8. #22
    TokolocoSK's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Comendo Peru Pato Frango Búrguer.
    Posts
    2,874
    Reputation
    65
    Thanks
    6,858
    My Mood
    Yeehaw
    Quote Originally Posted by New - Hacker View Post
    Tem 3 sources de skeleton para CA souto na net, com esse agora são 4
    Essa já tava na net na base de BF Play For Free do DrUnKeN ChEeTaH ....



  9. #23
    New - Hacker's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    498
    Reputation
    23
    Thanks
    110
    My Mood
    Aggressive
    Quote Originally Posted by TokolocoSK View Post


    Essa já tava na net na base de BF Play For Free do DrUnKeN ChEeTaH ....
    Dessas 4, 3 estão postadas aqui..

  10. #24
    iMelo~*'s Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    272
    Reputation
    10
    Thanks
    53
    Gostei da função, vou por em meu menu como sou novato começo com coisas básicas !
    Abraços

  11. #25
    Awayk's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    72
    Reputation
    10
    Thanks
    6
    My Mood
    Pensive
    Quote Originally Posted by New - Hacker View Post
    Tem 3 sources de skeleton para CA souto na net, com esse agora são 4
    Desses 3 só vi 1. E caso você compare com o postado por mim, verá que são diferentes.

    Quote Originally Posted by TokolocoSK View Post


    Essa já tava na net na base de BF Play For Free do DrUnKeN ChEeTaH ....
    Nunca vi essa base. Caso você poste o código-fonte do ESP Bone que há nessa base podemos comparar com o que postei.

    Quote Originally Posted by iMelo~* View Post
    Gostei da função, vou por em meu menu como sou novato começo com coisas básicas !
    Abraços
    Se você quer avançar, o melhor a fazer seria estudar ao invés de apenas pegar o código postado e colocar em um hack.
    Last edited by Awayk; 08-11-2012 at 05:51 PM. Reason: Quote

  12. #26
    TokolocoSK's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Comendo Peru Pato Frango Búrguer.
    Posts
    2,874
    Reputation
    65
    Thanks
    6,858
    My Mood
    Yeehaw
    ta ai...
    Code:
    void DrawBone(LPDIRECT3DDEVICE9 pDevice,CPlayer* pPlayer, int Start,int End, DWORD Color)
    {
    	D3DXVECTOR3 vStart,vEnd;
    	GetBoneOrigin(pPlayer,Start,&vStart);
    	GetBoneOrigin(pPlayer,End,&vEnd);
    
    	D3DXVECTOR3 vStartPos,vEndPos;
    	if (!WorldToScreen(pDevice,&vStart,&vStartPos)) return;
    	if (!WorldToScreen(pDevice,&vEnd,&vEndPos)) return;
    	pCanvas->Line(vStartPos.x,vStartPos.y,vEndPos.x,vEndPos.y,Color);
    }
    
    void DrawSkeleton(LPDIRECT3DDEVICE9 pDevice,CPlayer* pPlayer,DWORD Color)
    {
    	DrawBone(pDevice,pPlayer,1,2,Color);
    	DrawBone(pDevice,pPlayer,2,3,Color);
    	DrawBone(pDevice,pPlayer,3,4,Color);
    	DrawBone(pDevice,pPlayer,4,5,Color);
    	DrawBone(pDevice,pPlayer,5,6,Color);
    	DrawBone(pDevice,pPlayer,6,7,Color);
    
    	DrawBone(pDevice,pPlayer,5,36,Color);
    	DrawBone(pDevice,pPlayer,36,37,Color);
    	DrawBone(pDevice,pPlayer,37,38,Color);
    
    	DrawBone(pDevice,pPlayer,5,9,Color);
    	DrawBone(pDevice,pPlayer,9,10,Color);
    	DrawBone(pDevice,pPlayer,10,11,Color);
    
    	DrawBone(pDevice,pPlayer,1,69,Color);
    	DrawBone(pDevice,pPlayer,69,70,Color);
    	DrawBone(pDevice,pPlayer,70,71,Color);
    	DrawBone(pDevice,pPlayer,71,73,Color);
    
    	DrawBone(pDevice,pPlayer,1,63,Color);
    	DrawBone(pDevice,pPlayer,63,64,Color);
    	DrawBone(pDevice,pPlayer,64,65,Color);
    	DrawBone(pDevice,pPlayer,65,67,Color);
    }



  13. #27
    Andisaj's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    27
    Reputation
    10
    Thanks
    0
    My Mood
    Innocent
    Quote Originally Posted by iMelo~* View Post
    Gostei da função, vou por em meu menu como sou novato começo com coisas básicas !
    Abraços
    Falo o cara que faz hacker com apenas Chams e posta na WC...

  14. #28
    New - Hacker's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    498
    Reputation
    23
    Thanks
    110
    My Mood
    Aggressive
    o sujo falando do mal lavado...
    #topic
    Realmente da problema com char femenino, a solução está no GetBoneNode @Awayk?
    Last edited by New - Hacker; 08-11-2012 at 06:53 PM.

  15. #29
    Awayk's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    72
    Reputation
    10
    Thanks
    6
    My Mood
    Pensive
    Quote Originally Posted by New - Hacker View Post
    o sujo falando do mal lavado...
    #topic
    Realmente da problema com char femenino, a solução está no GetBoneNode @Awayk?
    A solução está tanto no GetBoneNode e GetNodeTransform. Você pode usar qualquer um dos dois que dá certo.

  16. #30
    New - Hacker's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    498
    Reputation
    23
    Thanks
    110
    My Mood
    Aggressive
    Acho que o erro está no RPelvis e LPelvis, que eu saiba só existe um *** kkk.
    No código é usado só um Pelvis...

Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. BONE ESP
    By yoda23456 in forum Battlefield Play4Free Hacks
    Replies: 17
    Last Post: 05-07-2011, 07:34 AM
  2. Bone ESP Code :D
    By Acidblitz in forum Battlefield Play4Free Hacks
    Replies: 8
    Last Post: 04-30-2011, 10:43 AM
  3. [Release] Afg-bone-ESP-
    By sam22 in forum Battlefield Heroes Hacks
    Replies: 5
    Last Post: 09-04-2010, 01:39 AM
  4. HL2 Hack With Aimbot|ESP| And much, Much more.
    By quin123 in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 10
    Last Post: 04-03-2009, 12:57 PM
  5. ESP/Chams For BHD 1.5.0.5 Arugs 1.2m: Undetected
    By sf0d in forum General Game Hacking
    Replies: 1
    Last Post: 11-05-2008, 02:31 PM