Page 2 of 10 FirstFirst 1234 ... LastLast
Results 16 to 30 of 145
  1. #16
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    We not gay. Just friends /troll

  2. #17
    Mr.Magicman's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Sitting in my cave full of thoughts learning Asembly
    Posts
    2,102
    Reputation
    16
    Thanks
    649
    My Mood
    Cold
    Quote Originally Posted by Stephen View Post
    We not gay. Just friends /troll
    Då bezt frends 4 everz

  3. #18
    seeplusplus's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Massachusetts
    Posts
    329
    Reputation
    8
    Thanks
    85
    Quote Originally Posted by Mr.Magicman View Post
    Sorry took an old PTR let me renew it!

    Updated with: 0x3715D9A0
    NA or EU???
    Goals:
    Green = Done
    Blue = Getting Somewhere
    Red = Not Done
    • Mouse Grid
    • PTC Method
    • Trigger Bot

    I'm trying to think of more stuff!

  4. #19
    Mr.Magicman's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Sitting in my cave full of thoughts learning Asembly
    Posts
    2,102
    Reputation
    16
    Thanks
    649
    My Mood
    Cold
    Quote Originally Posted by seeplusplus View Post
    NA or EU???
    Na ofc........

  5. #20
    seeplusplus's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Massachusetts
    Posts
    329
    Reputation
    8
    Thanks
    85
    Never used D3DXVECTOR3...

    Errors:
    [php]error C2146: syntax error : missing ';' before identifier 'origin'
    error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
    error C4430: missing type specifier - int assumed. Note: C++ does not support default-int[/php]
    Goals:
    Green = Done
    Blue = Getting Somewhere
    Red = Not Done
    • Mouse Grid
    • PTC Method
    • Trigger Bot

    I'm trying to think of more stuff!

  6. #21
    NiCe_ShOt's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    8
    Quote Originally Posted by seeplusplus View Post
    Never used D3DXVECTOR3...

    Errors:
    [php]error C2146: syntax error : missing ';' before identifier 'origin'
    error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
    error C4430: missing type specifier - int assumed. Note: C++ does not support default-int[/php]
    i have the same errors lol

  7. #22
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    There are multiple things wrong with this.

  8. #23
    markoj's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    s
    Posts
    1,064
    Reputation
    60
    Thanks
    407
    My Mood
    Bored
    Quote Originally Posted by CodeDemon View Post
    There are multiple things wrong with this.
    I confirm this
    Dont ban me

  9. #24
    seeplusplus's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Massachusetts
    Posts
    329
    Reputation
    8
    Thanks
    85
    Never used D3DXVECTOR3...

    Errors:
    [php]error C2146: syntax error : missing ';' before identifier 'origin'
    error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
    error C4430: missing type specifier - int assumed. Note: C++ does not support default-int[/php]
    Goals:
    Green = Done
    Blue = Getting Somewhere
    Red = Not Done
    • Mouse Grid
    • PTC Method
    • Trigger Bot

    I'm trying to think of more stuff!

  10. #25
    markoj's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    s
    Posts
    1,064
    Reputation
    60
    Thanks
    407
    My Mood
    Bored
    Quote Originally Posted by seeplusplus View Post
    Never used D3DXVECTOR3...

    Errors:
    [php]error C2146: syntax error : missing ';' before identifier 'origin'
    error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
    error C4430: missing type specifier - int assumed. Note: C++ does not support default-int[/php]
    Quote Originally Posted by NiCe_ShOt View Post
    i have the same errors lol
    Your forgetting to include something that D3DXVector is found in -.-
    dont even waste your time on this though i guarantee you will fail
    Dont ban me

  11. #26
    SNal2F's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    175
    Reputation
    30
    Thanks
    99
    Quote Originally Posted by Mr.Magicman View Post
    Sorry took an old PTR let me renew it!

    Updated with: 0x3715D9A0
    0x3715D9A0 = getplayerbyindex

    you will need to find the this point just find refrence to the call.


    Code:
    typedef PlayerInfo* (__thiscall *lpGetPlayerByIndex)(unsigned long ulThis,int index, int unk);
    lpGetPlayerByIndex GetPlayerByIndex;//3715D9A0
    
     GetPlayerByIndex = (lpGetPlayerByIndex)(0x3715D9A0);
     unsigned long ulThis = *(unsigned long*)(0x377F3E68);
     for ( int i = 0; i < 15; i++ )   
    { 
    				
    	PlayerInfo* pPlayer = GetPlayerByIndex( ulThis,i,0);
    
    	if(pPlayer != 0 && pPlayer->obj != 0 && pPlayer->IsDead ==0)
    
    //sprintf(szFormat,"%s",pPlayer->Name);
     DrawText(20,i*10,255,0,0,255,szFormat);
    Last edited by SNal2F; 10-26-2010 at 07:22 PM.

  12. The Following 8 Users Say Thank You to SNal2F For This Useful Post:

    -0x00 (10-29-2010),GodHack2 (10-26-2010),Nubzgetkillz (12-07-2010),qwerty01 (11-06-2010),swatfx (10-27-2010),Synns (10-26-2010),T0y (10-26-2010),YellowCak3 (10-26-2010)

  13. #27
    Synns's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    5,174
    Reputation
    170
    Thanks
    2,557
    My Mood
    Bitchy
    Quote Originally Posted by SNal2F View Post
    0x3715D9A0 = getplayerbyindex

    you will need to find the this point just find refrence to the call.


    Code:
    typedef PlayerInfo* (__thiscall *lpGetPlayerByIndex)(unsigned long ulThis,int index, int unk);
    lpGetPlayerByIndex GetPlayerByIndex;//3715D9A0
    
     GetPlayerByIndex = (lpGetPlayerByIndex)(0x3715D9A0);
     unsigned long ulThis = *(unsigned long*)(0x377F3E68);
     for ( int i = 0; i < 15; i++ )   
    { 
    				
    	PlayerInfo* pPlayer = GetPlayerByIndex( ulThis,i,0);
    
    	if(pPlayer != 0 && pPlayer->obj != 0 && pPlayer->IsDead ==0)
    
    //sprintf(szFormat,"%s",pPlayer->Name);
     DrawText(20,i*10,255,0,0,255,szFormat);
    Great share bro, works like a charm.

    https://i52.tinypic.com/2wp5kko.png

  14. #28
    SNal2F's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    175
    Reputation
    30
    Thanks
    99
    Quote Originally Posted by Tyrannus View Post
    Great share bro, works like a charm.

    https://i52.tinypic.com/2wp5kko.png

    no problem i was bored today

  15. The Following 2 Users Say Thank You to SNal2F For This Useful Post:

    GodHack2 (10-26-2010),YellowCak3 (10-26-2010)

  16. #29
    T0y's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    92
    Reputation
    10
    Thanks
    25
    Quote Originally Posted by SNal2F View Post
    0x3715D9A0 = getplayerbyindex

    you will need to find the this point just find refrence to the call.


    Code:
    typedef PlayerInfo* (__thiscall *lpGetPlayerByIndex)(unsigned long ulThis,int index, int unk);
    lpGetPlayerByIndex GetPlayerByIndex;//3715D9A0
    
     GetPlayerByIndex = (lpGetPlayerByIndex)(0x3715D9A0);
     unsigned long ulThis = *(unsigned long*)(0x377F3E68);
     for ( int i = 0; i < 15; i++ )   
    { 
    				
    	PlayerInfo* pPlayer = GetPlayerByIndex( ulThis,i,0);
    
    	if(pPlayer != 0 && pPlayer->obj != 0 && pPlayer->IsDead ==0)
    
    //sprintf(szFormat,"%s",pPlayer->Name);
     DrawText(20,i*10,255,0,0,255,szFormat);
    Got it working, but the player names are blinking, how get rid of this?

  17. #30
    YellowCak3's Avatar
    Join Date
    Oct 2010
    Gender
    female
    Posts
    3
    Reputation
    10
    Thanks
    46
    @SNal2F, check your pm please.

Page 2 of 10 FirstFirst 1234 ... LastLast

Similar Threads

  1. dBased Help me with the update for automaton!
    By deton3000 in forum Mission Against Terror Discussions
    Replies: 3
    Last Post: 02-03-2011, 10:43 AM
  2. Help with Alteriw console for score limit and time lomit
    By r3dcomet in forum Call of Duty Modern Warfare 2 Help
    Replies: 7
    Last Post: 08-26-2010, 05:48 PM
  3. i need help with the plugin for Photoshop
    By junny2233 in forum Combat Arms Mod Discussion
    Replies: 8
    Last Post: 08-05-2010, 04:39 AM
  4. Does any got the addies for no recoil and no reload ???
    By EDWINSEE in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 2
    Last Post: 07-20-2010, 04:51 PM