zephy Posted November 15, 2007 Posted November 15, 2007 (edited) I am making a small script to watch a chatlog of a game (FFXI If you are wondering)and when it sees a color in a designated location it sends a key combination. I have 2 accounts in the game and most ingame functions are/can be paformed by custimizable ingame macro palats. I want to play one charactur and tell the other one what to do via privit messages. Thus paforming a paticuler action. Right now I have it searching the paticuler colors and locations my PM will show up and set to send proper keys. But befor I finalize the script I want it to act more human like. No human can push buttens and act at the same speed every time... So I was wondering how do you add sleep time between key stroks? I tride search and didnt see anything that looked right..I may be blind though or clueless what to look for. I have tried sevral ways but I eather get an error on load or as of right now it just typs (1 1 1 1...). Where it gets spaces I dont know. Note: only part of script (most of the rest is just a copy of this base. $Random = Random( 100, 300, 1) While 1 ; PixelSearch ( 110, 590, 120, 600, 0xFF19FF, 10, 2 ) If Not @error Then Sleep($Random) Send ( "{LALT DOWN} " ) Sleep($Random) Send ( "{1} " ) Sleep($Random) Send ( "{LALT UP}" ) WEnd Thank you for any help! __ I like PIE! Edited November 15, 2007 by zephy
AutoMT Posted November 15, 2007 Posted November 15, 2007 Opt("SendKeyDelay", 5) Where 5 is the milliseconds between keystrokes...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now