Quote:
Originally Posted by Force.Of.Spite
I'm not too sure what your trying to do. Are you trying to make a bot? Or make something have your character "Teleport" or something? If you're trying to jump to coords that are In-Game You'd need a proxy(Well, there are ways to do it without one but I 've got no idea).
Anyways, If you're just trying to have it click somewhere on your screen, It'd be the Top, and Left pixels, (I'm not sure if that's what they're called in C#, but that's what they're called in delphi) :X
EDIT: Vb6, not C# xD
|
Thanks for your reply, what im trying to achieve is making a bot that will jump from 1 coordinate to another then scans memory for the specific monster and take the appropriate action -> left click monster or right click
Quote:
Originally Posted by UPSman2
~~~where would i start with making a jump? ~~~
well personally i would start looking up on SendMessage (aka PostMessage)
~~~Is this possible to do without simulating clicks and having to have screen on top?~~~
yes and no... you'll be simulating clicks through PostMessage, but you don't need to have the window on top to do so.
as for jumping to and from the regular displayed x,y coordinate system displayed on conquer... well i tryed that once and gave up on that project because A) i couldn't find a way to convert screen x,y to CO x,y B) im to lazy to write out a table of screen x,y to CO x,y for about 170 different spots...but i do think it's possible
|
I have tried PostMessage indeed, without succeed, it can find me " form" window if i specify that handle and click but if i tell him to click on the CO handle he aint clicking, now i know for sure this CO handle i gave him works because my speedhack works the same way. But for some reason its not clicking lol.
If i have to use screen coordinates it will be different for everyone (full screen / windowed), I dont want that i mean they give us the coordinates must be someway to use them :)
Quote:
Originally Posted by clipper
When UPSman2 said as the clicks can be simulated with some work, and can be a good combination jump with PostMessage approximately and correct position with readings memory. If interested postee code for clicks in VB6 few days ago but I think due to better explain the code.
The Post is here: [Only registered and activated users can see links. Click Here To Register...] . If there is doubt try to resolve the best thing the google translator let me
|
Yes i looked at that, and those are the functions and all needed for PostMessage, but that doesnt do what I want to achieve
@ All
Thanks for the reply's