Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 32
  1. #16
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    You inject your hack into there and you can test if the menu works. It in a thread here. On the first page.
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

  2. #17
    Threadstarter
    Unverified User
    Lonly's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0
    My Mood
    Relaxed
    Cool, I searched Google and MPGH using Seal's test environment and can't find it. Can I get a link?

  3. #18
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    https://www.mpgh.net/forum/207-combat...ronment-3.html

    Inject into that like you would Combat arms and make sure to change the Device Ptr.
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

  4. The Following User Says Thank You to whatup777 For This Useful Post:

    Lonly (07-15-2010)

  5. #19
    Threadstarter
    Unverified User
    Lonly's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0
    My Mood
    Relaxed
    Quote Originally Posted by whatup777 View Post
    https://www.mpgh.net/forum/207-combat...ronment-3.html

    Inject into that like you would Combat arms and make sure to change the Device Ptr.
    Changed Device Pointer, Injected Successfully, MessageBox shows, but no menu!

  6. #20
    KawaiiSlut's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    419
    Reputation
    16
    Thanks
    87
    Lonly i can TV you i know D3D and shit so just give me your info and ill see what i can do

  7. #21
    Threadstarter
    Unverified User
    Lonly's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0
    My Mood
    Relaxed
    Quote Originally Posted by KawaiiSlut View Post
    Lonly i can TV you i know D3D and shit so just give me your info and ill see what i can do
    528 812 228
    /v!h>y<AG9

    /v!h>y<AG9 is my password. I have top security on Teamviewer >.<

    Wrong file dude.


    I need some deep help.
    Last edited by Lonly; 07-15-2010 at 09:01 AM.

  8. #22
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    Really look at your Menu.cpp then.
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

  9. #23
    Threadstarter
    Unverified User
    Lonly's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0
    My Mood
    Relaxed
    Render Menu Code:

    Code:
    void cMenu::RenderMenu(void)
    {
    	if(mSet.loaded == false)
    	{
    		this->InitiateMenu();
    		this->mSet.loaded = true;
    	}
    
    	//Show the menu if insert is pressed
    	if (GetAsyncKeyState(VK_INSERT)&1)
    		this->mSet.show = !this->mSet.show;
    	
    	if(mSet.show)
    	{
    		//Menu controls
    		if(GetAsyncKeyState(VK_UP)&1)
    			this->mSet.current--;
    
    		if(GetAsyncKeyState(VK_DOWN)&1)	
    			this->mSet.current++;
    					
    		if(GetAsyncKeyState(VK_LEFT)&1)
    			if(this->mOpt[mSet.current].nopt > 0)
    				this->mOpt[mSet.current].nopt = this->mOpt[mSet.current].nopt - 1;
    						
    		if(GetAsyncKeyState(VK_RIGHT)&1)
    			if(this->mOpt[mSet.current].nopt < this->mOpt[mSet.current].noptmax)
    				this->mOpt[mSet.current].nopt = this->mOpt[mSet.current].nopt + 1;
    	
    		if(this->mSet.current < 1) 
    			this->mSet.current = this->mSet.max-1;
    
    		if(this->mSet.current > this->mSet.max-1) 
    			this->mSet.current = 1;
    		
    		int headOffset = 0;
    		int textOffset = 0;
    		for(int i= this->mSet.min; i < this->mSet.max; i++)
    		{
    			//Render Menu Headers
    			for( int j = 0; j < this->mSet.NumOfHeaders; j++ )
    			{
    				if( i == this->mHead[j].Offset )
    				{
    					headOffset++;
    					Directx.DrawString(10, 32 + (headOffset*12) + (textOffset*11) + (11*i),0xFFAAAAAA, Directx.pFont, this->mHead[j].text);
    					textOffset++;
    				}
    			}
    			//Render the menu items
    			if(i == mSet.current)
    			{
    				Directx.DrawString(10, 32 + (headOffset*12) + (textOffset*11) + (11*i), 0xFFFF0000, Directx.pFont, this->mOpt[i].option);
    			}
    			
    			if(i != mSet.current)
    				Directx.DrawString(10, 32 + (headOffset*12) + (textOffset*11) + (11*i),0xFFFFFFFF, Directx.pFont, this->mOpt[i].option);
    			if( this->mOpt[i].noptmax != 0 )
    			{
    				if( this->mOpt[i].option != "vJump" )
    				{
    					if( this->mOpt[i].nopt > 0 )
    					{
    						sprintf_s(this->mSet.optionstat, "On"  );//%i .00
    						Directx.DrawString(95, 32 + (headOffset*12) + (textOffset*11) + (11*i), 0xFFFF0000, Directx.pFont, this->mSet.optionstat);
    					}
    					else
    					{
    						sprintf_s(this->mSet.optionstat, "Off" );//%i .00
    						Directx.DrawString(95, 32 + (headOffset*12) + (textOffset*11) + (11*i), 0xFF00FF00, Directx.pFont, this->mSet.optionstat);
    					}
    				}
    				else
    				{
    					if( this->mOpt[i].nopt <= 0 )
    					{
    						sprintf_s(this->mSet.optionstat, "Off"  );//%i .00
    						Directx.DrawString(95, 32 + (headOffset*12) + (textOffset*11) + (11*i), 0xFF00FF00, Directx.pFont, this->mSet.optionstat);
    					}
    					else if( this->mOpt[i].nopt == 1 )
    					{
    						sprintf_s(this->mSet.optionstat, "Up"  );//%i .00
    						Directx.DrawString(95, 32 + (headOffset*12) + (textOffset*11) + (11*i), 0xFFFF0000, Directx.pFont, this->mSet.optionstat);
    					}
    					else
    					{
    						sprintf_s(this->mSet.optionstat, "Down"  );//%i .00
    						Directx.DrawString(95, 32 + (headOffset*12) + (textOffset*11) + (11*i), 0xFF7777FF, Directx.pFont, this->mSet.optionstat);
    					}
    				}
    			}
    		}
    	}

  10. #24
    ^...,^'s Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    New Zealand,Auckland
    Posts
    698
    Reputation
    4
    Thanks
    90
    My Mood
    Lonely
    oh god more fucking shit to read...

  11. #25
    zmansquared's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Kickin it at Microsoft
    Posts
    2,086
    Reputation
    36
    Thanks
    221
    My Mood
    Cheerful
    can you please stop with the pointless posts. you cant even code...
    Need Help With Coding or Something??? MSN me
    zmansquared@hotmail.com


    I am the one and only Microsoft Fag!!!

    Quote:
    Originally Posted by Arhk
    All games should be hacked, if we don't do it someone else will. Hackers force the progress, of better programming methods.
    ~


    Take this Pic everyone!



    next-

  12. #26
    KawaiiSlut's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    419
    Reputation
    16
    Thanks
    87
    Quote Originally Posted by zmansquared View Post
    can you please stop with the pointless posts. you cant even code...
    i know seriously where did you get that and dont say you coded that yourself because the way you talk just no no no no you cant code

  13. #27
    zmansquared's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Kickin it at Microsoft
    Posts
    2,086
    Reputation
    36
    Thanks
    221
    My Mood
    Cheerful
    are you talking about me or ^...,^????
    Need Help With Coding or Something??? MSN me
    zmansquared@hotmail.com


    I am the one and only Microsoft Fag!!!

    Quote:
    Originally Posted by Arhk
    All games should be hacked, if we don't do it someone else will. Hackers force the progress, of better programming methods.
    ~


    Take this Pic everyone!



    next-

  14. #28
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    Hmm I just realized that you LTC is not correct. For NA anyway.
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

  15. #29
    Threadstarter
    Unverified User
    Lonly's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0
    My Mood
    Relaxed
    Quote Originally Posted by whatup777 View Post
    Hmm I just realized that you LTC is not correct. For NA anyway.
    So whats the new one? I've search long and wide, and this is the latest I found.

  16. #30
    KawaiiSlut's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    419
    Reputation
    16
    Thanks
    87
    Quote Originally Posted by zmansquared View Post
    are you talking about me or ^...,^????
    Lol i was quoting your post and then making fun of the thread starter

    New LTC =
    Code:
    0x3778BFB0

  17. The Following 2 Users Say Thank You to KawaiiSlut For This Useful Post:

    Lonly (07-15-2010),zmansquared (07-15-2010)

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. [Help]D3D Menu Development
    By why06 in forum DirectX/D3D Development
    Replies: 7
    Last Post: 01-21-2011, 06:54 PM
  2. Need some help. Hack/Injector won't work.
    By Vexatiion in forum Combat Arms Help
    Replies: 6
    Last Post: 10-01-2010, 11:09 PM
  3. [HELP] List box won't work?
    By jajarem64 in forum Visual Basic Programming
    Replies: 8
    Last Post: 07-24-2010, 04:23 PM
  4. [Request] D3D Hacks won't work...
    By Hacker8) in forum WarRock Discussions
    Replies: 9
    Last Post: 04-04-2010, 08:00 AM
  5. [Help]D3D Menu
    By cothen12 in forum C++/C Programming
    Replies: 13
    Last Post: 01-18-2008, 04:28 PM