Jump to content

Newbie Help


Crab
 Share

Recommended Posts

Hi, i am new to the forums and AutoIt and i would like some direction

For my first script i would like to make an auto talker for Runescape 2 what i would like

to have in this script is the following.

1)Send a message with the press of a hotkey as many times as the user wants

2)Search the screen for the color of text that appears when a person request a trade and click that area

I dont expect to be told how to do this but i would like to ask if someone can point

me to the spots in the help file and maybe sample scripts so i can read/see how this can

be done.

Thanks :)

Edited by Crab
Link to comment
Share on other sites

This might help somewhat.

HotKeySet("{ESC}", "terminate")
HotKeySet("{F2}", "msg")
$input = InputBox("Phrase", "Enter a phrase", "", "", 50,50,50,50)
GUICtrlRead($input)
while 1
    sleep(1000)
WEnd
func msg()
    send($input)
endfunc 
Func terminate()
    Exit
EndFunc

You have to push F2 to talk though.

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...