View previous topic :: View next topic |
Author |
Message |
manc Grandmaster Cheater
Reputation: 1
Joined: 16 Jun 2006 Posts: 551
|
Posted: Sat Feb 14, 2009 3:41 pm Post subject: [c++] (Keys.h + SendKeys.dll Unsolved!) |
|
|
When I try and inject SendKeys.dll, gamegaurd gives me an error..
I'm using kitterz injector...right settings and everything. I get Injection Success even..then a pause...then the error. Why? =[
_________________
Last edited by manc on Sun Feb 15, 2009 12:19 am; edited 3 times in total |
|
Back to top |
|
 |
tony2108 Advanced Cheater
Reputation: 0
Joined: 26 Nov 2008 Posts: 63 Location: Hacking Battlefield
|
|
Back to top |
|
 |
oib111 I post too much
Reputation: 0
Joined: 02 Apr 2007 Posts: 2947 Location: you wanna know why?
|
Posted: Sat Feb 14, 2009 4:11 pm Post subject: |
|
|
1. There are a billion topics about this, use the search.
2. No. It will just call PostMessage_Trampoline five times. If you want to wait five seconds before calling PostMessage_Trampoline use sleep(5000)
3. First off, don't use goto. Use a (do) while loop. And second off, it's doing that because you don't let your program to your else statement (it should be else if, btw), you just make it go back to loop.
_________________
8D wrote: |
cigs dont make people high, which weed does, which causes them to do bad stuff. like killing |
|
|
Back to top |
|
 |
tony2108 Advanced Cheater
Reputation: 0
Joined: 26 Nov 2008 Posts: 63 Location: Hacking Battlefield
|
Posted: Sat Feb 14, 2009 4:16 pm Post subject: |
|
|
then the problem was just a mistake in typing?
_________________
"Dark Angel is watching you" |
|
Back to top |
|
 |
oib111 I post too much
Reputation: 0
Joined: 02 Apr 2007 Posts: 2947 Location: you wanna know why?
|
Posted: Sat Feb 14, 2009 4:17 pm Post subject: |
|
|
It wasn't a typo.........
_________________
8D wrote: |
cigs dont make people high, which weed does, which causes them to do bad stuff. like killing |
|
|
Back to top |
|
 |
manc Grandmaster Cheater
Reputation: 1
Joined: 16 Jun 2006 Posts: 551
|
Posted: Sat Feb 14, 2009 4:26 pm Post subject: |
|
|
oib111 wrote: | First off, don't use goto. Use a (do) while loop.
|
Can you give me a brief sketch of what i want in my do{ } and while()?
Im not sure how to implement it ( I understand the syntax, but not in the context of this code)
oib111 wrote: |
And second off, it's doing that because you don't let your program to your else statement (it should be else if, btw), you just make it go back to loop. |
Wouldn't Choice become NULL everytime I cycle through the loop?
or does it stay != 1 ?
_________________
|
|
Back to top |
|
 |
sponge I'm a spammer
Reputation: 1
Joined: 07 Nov 2006 Posts: 6009
|
Posted: Sat Feb 14, 2009 4:30 pm Post subject: |
|
|
Cannot do this with PostMessage.
_________________
|
|
Back to top |
|
 |
manc Grandmaster Cheater
Reputation: 1
Joined: 16 Jun 2006 Posts: 551
|
Posted: Sat Feb 14, 2009 4:35 pm Post subject: |
|
|
sponge wrote: | Cannot do this with PostMessage. |
aww, fuck lol. What api then?
_________________
|
|
Back to top |
|
 |
oib111 I post too much
Reputation: 0
Joined: 02 Apr 2007 Posts: 2947 Location: you wanna know why?
|
Posted: Sat Feb 14, 2009 4:35 pm Post subject: |
|
|
Code: |
//includes
BOOL bExit = FALSE;
int main() {
do {
//code
} while(bExit == FALSE);
}
|
Have some choice of input (i.e 0), so that when you check the input, if you see it's 0 you set bExit to TRUE and your program exits. Also, if it goes back to loop, it would try to create another variable named Choice. And since C++ is case-sensitive, it won't make a new variable. I've never done that so I'm not sure what happens. I always assumed it would crash, but I guess not?
_________________
8D wrote: |
cigs dont make people high, which weed does, which causes them to do bad stuff. like killing |
|
|
Back to top |
|
 |
manc Grandmaster Cheater
Reputation: 1
Joined: 16 Jun 2006 Posts: 551
|
Posted: Sat Feb 14, 2009 4:45 pm Post subject: |
|
|
oib111 wrote: | Code: |
//includes
BOOL bExit = FALSE;
int main() {
do {
//code
} while(bExit == FALSE);
}
|
Have some choice of input (i.e 0), so that when you check the input, if you see it's 0 you set bExit to TRUE and your program exits. Also, if it goes back to loop, it would try to create another variable named Choice. And since C++ is case-sensitive, it won't make a new variable. I've never done that so I'm not sure what happens. I always assumed it would crash, but I guess not? |
Does setting bExit to TRUE automatically close the program? Also I dont want it to close once Im done. Would you happen to know what api I can use instead of Postmessage since apparently it cant be used for this?
_________________
|
|
Back to top |
|
 |
TraxMate Master Cheater
Reputation: 0
Joined: 01 Mar 2008 Posts: 363
|
Posted: Sat Feb 14, 2009 4:45 pm Post subject: |
|
|
manc wrote: | sponge wrote: | Cannot do this with PostMessage. |
aww, fuck lol. What api then? | SendInput but it is hooked by GG so you'll need a bypass for it.
|
|
Back to top |
|
 |
manc Grandmaster Cheater
Reputation: 1
Joined: 16 Jun 2006 Posts: 551
|
|
Back to top |
|
 |
TraxMate Master Cheater
Reputation: 0
Joined: 01 Mar 2008 Posts: 363
|
|
Back to top |
|
 |
tony2108 Advanced Cheater
Reputation: 0
Joined: 26 Nov 2008 Posts: 63 Location: Hacking Battlefield
|
Posted: Sat Feb 14, 2009 5:13 pm Post subject: |
|
|
why don't you try the second GG?
some people trying to spread rumors about a useful program so others won't use it. That makes it a better choice than the other one
this might work:
http://www.mmomaven.com/forum/showthread.php?t=1139
_________________
"Dark Angel is watching you" |
|
Back to top |
|
 |
TraxMate Master Cheater
Reputation: 0
Joined: 01 Mar 2008 Posts: 363
|
Posted: Sat Feb 14, 2009 5:16 pm Post subject: |
|
|
That will not work anymore, that method got patched years ago.
|
|
Back to top |
|
 |
|