Jump to content

Help please


Recommended Posts

Well what I need is a simple script that clicks in one spot, waits, clicks in another, waits, and repeats.

I have version 2.64 ( I don't know if this should be in v2 or v3 ).

This is all i need it to do.

First it must left click at:

337, 328

Then wait

Then at

469, 325

No wait

And then at

416, 549

Then wait

Then repeat.

It also needs a exit button.

I'm a complete noob at this so please tell me everything i gotta do, including variables ( if needed ) etc.

Thanks to all.

Edited by gainstaa
Link to comment
Share on other sites

Is this for a game? if not what purpose? And why not try to learn the language if you are new? You can play the "I'm new" game unless you try first. Use the help file in Scite.

An I'll write it for you I just want to know what its for.

Edited by inline853
Link to comment
Share on other sites

Well what I need is a simple script that clicks in one spot, waits, clicks in another, waits, and repeats.

I have version 2.64 ( I don't know if this should be in v2 or v3 ).

This is all i need it to do.

First it must left click at:

337, 328

Then wait

Then at

469, 325

No wait

And then at

416, 549

Then wait

Then repeat.

It also needs a exit button.

I'm a complete noob at this so please tell me everything i gotta do, including variables ( if needed ) etc.

Thanks to all.

v3.2.4.9

HotKeySet("{f10}", "_exit") ;<== F10 to exit
while 1
    MouseClick ( "left",337,328)
    Sleep(5000) ;<== 1000 is 1 ces, so 5000 is 5 sec of waiting
    MouseClick ( "left",469,325)
    MouseClick ( "left",416,549)
WEnd
Func _exit()
    Exit
EndFunc

inline853 y r right, he need to read help file, ^^ but he have help file on v.2.64 :)

Edited by bogQ

TCP server and client - Learning about TCP servers and clients connection
Au3 oIrrlicht - Irrlicht project
Au3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related)



460px-Thief-4-temp-banner.jpg
There are those that believe that the perfect heist lies in the preparation.
Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost.

 
Link to comment
Share on other sites

The best thing to do, is to download the last version.

Then Use the HELP file for.... help and tutotials

For your script:

MouseClick ( "left" , 337, 328)
 Sleep(3000); wait 3 sec
 MouseClick ("left" ,416, 549)

It all depend what you want to do !!!

hope that help !

EDIT: Arrrr so slow...

Edited by cramaboule
Link to comment
Share on other sites

v3.2.4.9

HotKeySet("{f10}", "_exit") ;<== F10 to exit
while 1
    MouseClick ( "left",337,328)
    Sleep(5000) ;<== 1000 is 1 ces, so 5000 is 5 sec of waiting
    MouseClick ( "left",469,325)
    MouseClick ( "left",416,549)
WEnd
Func _exit()
    Exit
EndFunc

inline853 y r right, he need to read help file, ^^ but he have help file on v.2.64 :)

It says error unknown command for the HotKeySet line.

I just downloaded it yesterday why wouldnt it be the newest?

Can some one give me a link to the newest one please.

Link to comment
Share on other sites

It says error unknown command for the HotKeySet line.

I just downloaded it yesterday why wouldnt it be the newest?

Can some one give me a link to the newest one please.

becose you downloaded autoitv2

this code is 4 autoitv3

v3.2.4.9

Edited by bogQ

TCP server and client - Learning about TCP servers and clients connection
Au3 oIrrlicht - Irrlicht project
Au3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related)



460px-Thief-4-temp-banner.jpg
There are those that believe that the perfect heist lies in the preparation.
Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost.

 
Link to comment
Share on other sites

where can i update to the newest?

heare

ups wrong url now its ok xD

Edited by bogQ

TCP server and client - Learning about TCP servers and clients connection
Au3 oIrrlicht - Irrlicht project
Au3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related)



460px-Thief-4-temp-banner.jpg
There are those that believe that the perfect heist lies in the preparation.
Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost.

 
Link to comment
Share on other sites

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...