| View previous topic :: View next topic |
| Author |
Message |
Cuteharez Grandmaster Cheater Supreme
Reputation: 0
Joined: 26 Jan 2007 Posts: 1008 Location: singapore
|
Posted: Sat Aug 11, 2007 9:52 pm Post subject: |
|
|
1st post Does that works for ACTOOL or just macro?
_________________
|
|
| Back to top |
|
 |
Kevin Grandmaster Cheater Supreme
Reputation: 0
Joined: 07 Mar 2007 Posts: 1139 Location: Spiderman-World
|
Posted: Sun Aug 12, 2007 3:17 am Post subject: |
|
|
so you just add xAPI to your uses? or how do you call it?
Also is it the same codes just with a X infront?
|
|
| Back to top |
|
 |
Jani Grandmaster Cheater
Reputation: 2
Joined: 29 Dec 2006 Posts: 804
|
Posted: Sun Aug 12, 2007 3:56 am Post subject: |
|
|
| x0r wrote: | | Cute_harez wrote: | | 1st post :lol: Does that works for ACTOOL or just macro? |
Well technically it could work for all keystroke action by an IAT hook on those APIs. | AC Tool is open source.. Modify the source and it should work. It might take a bit more work than IAT hooking, but it wouldn't be as 'dirty' as hooking.
|
|
| Back to top |
|
 |
UnLmtD Grandmaster Cheater
Reputation: 0
Joined: 13 Mar 2007 Posts: 894 Location: Canada
|
Posted: Sun Aug 12, 2007 8:13 am Post subject: |
|
|
Where is that GetPixel/GetDC?
_________________
|
|
| Back to top |
|
 |
Symbol I'm a spammer
Reputation: 0
Joined: 18 Apr 2007 Posts: 5094 Location: Israel.
|
Posted: Sun Aug 12, 2007 8:47 am Post subject: |
|
|
cool
how do i use it? call it?
i dont know how to use dll's or how to call them in delphi im still a beginner o_o
|
|
| Back to top |
|
 |
UnLmtD Grandmaster Cheater
Reputation: 0
Joined: 13 Mar 2007 Posts: 894 Location: Canada
|
|
| Back to top |
|
 |
Symbol I'm a spammer
Reputation: 0
Joined: 18 Apr 2007 Posts: 5094 Location: Israel.
|
Posted: Sun Aug 12, 2007 9:52 am Post subject: |
|
|
| is that for delphi?
|
|
| Back to top |
|
 |
appalsap Moderator
Reputation: 0
Joined: 27 Apr 2006 Posts: 6753 Location: Pakistan
|
Posted: Sun Aug 12, 2007 11:40 am Post subject: |
|
|
| they're Windows api, they're universal
|
|
| Back to top |
|
 |
Skyone Grandmaster Cheater
Reputation: 0
Joined: 10 Sep 2006 Posts: 508
|
Posted: Sun Aug 12, 2007 1:18 pm Post subject: |
|
|
???
Last edited by Skyone on Wed Dec 23, 2009 9:08 am; edited 8 times in total |
|
| Back to top |
|
 |
appalsap Moderator
Reputation: 0
Joined: 27 Apr 2006 Posts: 6753 Location: Pakistan
|
Posted: Sun Aug 12, 2007 1:24 pm Post subject: |
|
|
That's a horrible way to do it (and won't work for any other platform)
The problem is x0r didn't have the foresight to post the generated .lib files so we can link to xAPI.dll
|
|
| Back to top |
|
 |
DeltaFlyer Grandmaster Cheater
Reputation: 0
Joined: 22 Jul 2006 Posts: 666
|
Posted: Sun Aug 12, 2007 3:54 pm Post subject: |
|
|
| appalsap wrote: | | (and won't work for any other platform) |
Win32API won't work for other platforms anyways (unless you're running something like Wine).
_________________
Wow.... still working at 827... what's INCA thinking?
zomg l33t hax at this place (IE only). Over 150 people have used it, what are YOU waiting for? |
|
| Back to top |
|
 |
appalsap Moderator
Reputation: 0
Joined: 27 Apr 2006 Posts: 6753 Location: Pakistan
|
Posted: Sun Aug 12, 2007 7:52 pm Post subject: |
|
|
| Excuse me, the word I was looking for was architecture. The proper way to do such a thing would be to do a typedef.
|
|
| Back to top |
|
 |
assaf84 Expert Cheater
Reputation: 0
Joined: 03 Oct 2006 Posts: 238
|
Posted: Mon Aug 13, 2007 1:42 pm Post subject: |
|
|
Quick Question:
Can I use .lib files in delphi?
|
|
| Back to top |
|
 |
tahoma How do I cheat?
Reputation: 0
Joined: 15 Aug 2007 Posts: 3
|
Posted: Wed Aug 15, 2007 12:26 am Post subject: Delphi implementation. |
|
|
deleted
_________________
for code, by code, to code.
Last edited by tahoma on Tue Aug 21, 2007 6:04 am; edited 1 time in total |
|
| Back to top |
|
 |
kittonkicker I post too much
Reputation: 1
Joined: 19 Apr 2006 Posts: 2171
|
Posted: Wed Aug 15, 2007 5:23 am Post subject: |
|
|
I'd typedef them in as callable functions, I unno if that would work though.
Ooo I just saw appal say it would work...
I can post the codes when I get home!
EDIT: Hmm I'm bored and I can't remember everything off the top of my head, but I think it's something like:
in header:
typedef int (__stdcall *XSENDINPUT)(UINT,LPINPUT,int);
XSENDINPUT xSendInput;
in main c:
HMODULE APIBypass = LoadLibrary("SOMEDLL.dll");
xSendInput = (XSENDINPUT)GetProcAddress(APIBypass,"xSendInput"); //can't remember if there's a GetProcAddressA, but if you get errors, use that instead).
FreeLibrary(APIBypass);
EDIT2: I editted it again, it should work now!
Last edited by kittonkicker on Wed Aug 15, 2007 12:42 pm; edited 1 time in total |
|
| Back to top |
|
 |
|