Guest Zaltoa Posted May 9, 2004 Posted May 9, 2004 im editing the fishing bot by bluesin for FFXI to suit my needs and i cant get the send key up to work Sleep (100000);adjust as needed until you want the script to start $fisha = 1;set variable for attempt # display AutoItSetOption("SendKeyDelay", 150);slow key delay a bit While $fisha > 0;infinite loop Sleep (1000);fish was being typed too quick, so i entered a delay and this seems to fix the problem Send ("/fish{ENTER}");start the 'fishing' action Sleep (18000);wait to catch a fish(orig value was 16000) Send ("{Enter}");reel in the fish Sleep (6000);delay between scripts autosort() Send ("/equip ammo ""Sliced Sardine""{ENTER}") AutoItSetOption("SendKeyDelay", 150);slow key delay a bit $fisha = $fisha + 1;increase fishing attempts WEnd Func autosort() AutoItSetOption("SendKeyDelay", 150);slow key delay a bit Send ("{NUMPADSUB}");opens menu Sleep (500);wait Send ("{ENTER}") Sleep (500);wait Send ("{NUMPADADD}");goes to sort Sleep (500);Sleep for a little bit Send ("{ENTER}");enters stack menu Sleep (500);Sleep for a little bit Send ("{UP}");sends up 1 Sleep (500);Sleep for a little bit Send ("{ENTER}") Sleep (500);wait Send ("{ESCAPE}");make sure nothing is selected Send ("{ESCAPE}");double check nothing is selected endfunc everything works fine except the Send ("{UP}")
scriptkitty Posted May 9, 2004 Posted May 9, 2004 Maybe it is being captured by the game, can you remap that key, or use numberpad up? AutoIt3, the MACGYVER Pocket Knife for computers.
Guest Zaltoa Posted May 9, 2004 Posted May 9, 2004 (edited) number pad doesnt work Edited May 9, 2004 by Zaltoa
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