View previous topic :: View next topic |
Author |
Message |
hack0535 Cheater
Reputation: 2
Joined: 16 Oct 2011 Posts: 28
|
Posted: Mon Jan 16, 2012 4:12 am Post subject: Asking about d3d hook |
|
|
i see different main.lua
i see d3d_hook
it is working??
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25806 Location: The netherlands
|
Posted: Mon Jan 16, 2012 5:14 am Post subject: |
|
|
yes, for d3d9,10 and 11 games
It's main usage is for drawing images inside the game though
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
hack0535 Cheater
Reputation: 2
Joined: 16 Oct 2011 Posts: 28
|
Posted: Tue Jan 17, 2012 12:16 am Post subject: |
|
|
But how to use it
Can you give me some Examples plssss
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25806 Location: The netherlands
|
Posted: Tue Jan 17, 2012 12:45 am Post subject: |
|
|
It's not implemented in 6.1, it's an upcoming feature for 6.2
but here is an example: (if you have 6.2 and the game is compatible)
open the game and run this script
Code: |
f=createForm()
i=createImage(f)
c=image_getCanvas(i)
pen=canvas_getPen(c)
pen_setColor(pen,0x00ff00)
canvas_setPenPosition(c,10,10)
canvas_lineTo(c,50,50)
h=d3dhook_initializeHook()
pict=image_getPicture(i)
oid=d3dhook_createOverlay(pict, -1,-1)
|
You will now have a black box with a green line in the center of the game
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
hack0535 Cheater
Reputation: 2
Joined: 16 Oct 2011 Posts: 28
|
Posted: Wed Jan 18, 2012 1:48 am Post subject: |
|
|
ahh If so when and where can I get
and why those others have to?
|
|
Back to top |
|
 |
happyreadygo Advanced Cheater
Reputation: 1
Joined: 14 Sep 2011 Posts: 87
|
Posted: Wed Aug 08, 2012 2:07 am Post subject: |
|
|
Dark Byte wrote: | It's not implemented in 6.1, it's an upcoming feature for 6.2
but here is an example: (if you have 6.2 and the game is compatible)
open the game and run this script
Code: |
f=createForm()
i=createImage(f)
c=image_getCanvas(i)
pen=canvas_getPen(c)
pen_setColor(pen,0x00ff00)
canvas_setPenPosition(c,10,10)
canvas_lineTo(c,50,50)
h=d3dhook_initializeHook()
pict=image_getPicture(i)
oid=d3dhook_createOverlay(pict, -1,-1)
|
You will now have a black box with a green line in the center of the game |
how to run the script in game?
I try to put it in lua script cheat trainer , i shown in trainer ... but It was not in the game.
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25806 Location: The netherlands
|
|
Back to top |
|
 |
|