Guest Hooligan Posted June 6, 2004 Posted June 6, 2004 Can someone post a fishing bot script for FFXI? One that works for 800x600 or 1024x768? And it has autosort, and autodrop for rusty items? If not then can someone direct me to a site that has these types of things?
Guest Lucin@quezacoatl Posted August 8, 2004 Posted August 8, 2004 Can someone post a fishing bot script for FFXI? One that works for 800x600 or 1024x768? And it has autosort, and autodrop for rusty items? If not then can someone direct me to a site that has these types of things? <{POST_SNAPBACK}>Has anyone posted a fishing script in 800x600 or in 1024x768 if so please reply promply
pekster Posted August 8, 2004 Posted August 8, 2004 All of the fishing bots that have ever appeared on this forum sucked, and were programmed by people who knew less than some middle schoolers I worked with after a 1 semister scripting course.None of the so-called experts here have any desire to write a gaming bot for FFXI.In the time it will take you to reply to this thread enough to get someone to PM or send you an email of some other lame script they found that almost pretends to work, you could have learned a lot about AutoIt yourself by reading the manual to begin to program your own script to do what you need.Side note: Pretty pathetic how 6 hours after the topic started it had 275 views, huh? [font="Optima"]"Standing in the rain, twisted and insane, we are holding onto nothing.Feeling every breath, holding no regrets, we're still looking out for something."[/font]Note: my projects are off-line until I can spend more time to make them compatable with syntax changes.
Guest Lucin@quezacoatl Posted August 9, 2004 Posted August 9, 2004 If you want good scripts for fishing on FFXI use actool you can get this program by running a search for actool on google go to the forums there and there are many that drop rusted items and even some that are more complex than ive ever seen and ive been writing scripts for 7 years
Guest Chazz Posted August 18, 2004 Posted August 18, 2004 I thought I would just add to this. I have been on the board, quietly observing , reading and learning for the past 2 weeks. I have hesitated replying to this thread but thought I would share a couple thoughts and ideas about this FFXI Bot Ordeal I won't re-hash the past. I know what happened here when it came to Fishing Bots. This is what I have successfully created using Hypersnap, AutoIT v3 and PHP (and thank god for PixelChecksum() ) This is whats working: ----------------------------------------------------------------------- Currently Working Stuff ----------------------------------------------------------------------- - Web Based Configuration - Web Based Basic Logging - Web Based Basic Stats - Web Based Control of your Bot The Web Control Creates an INI File which the Bot Downloads every cast cycle. - ------------------------------------------------------------------------ ....o Launch the Bot Even While Inside Final Fantasy. No need to exit. ....o Pause The Bot ....o Send /say, /shout, /tell and /linkshell Messages - ------------------------------------------------------------------------- - Open Final Fantasy (Via PlayOnline Viewer) - Auto Select Character, Link to Handle and Enter Game - Proper Log Outs using the in Game Menu - Forced Log Outs (ALTTAB x 3) - ------------------------------------------------------------------------- - Logs out and back Automatically .....o (help prolong server algorithms which hurt fishing) - Auto Drop Rusty Items - Auto Bazaar Rusty Caps - Auto Sort Inventory - Zone Reminder - GM Tell Detection / Play Alarm (Raise Volume Slowly) / Stop Fishing - Tell Detection / Play Alarm (Raise Volume Slowly) / Stop Fishing - Camera Rotation - Screenshots on important events - Preventative Failsafe Monitoring (Reduces Failsafe usage by 80%) - Alerts can be sent Via (Email or Cell Phone ------------------------------------------------------------------- ----------------------------------------------------------------------- Currently Developing Stuff ----------------------------------------------------------------------- - Auto reply randomly to SAY and TELL messages - Fight MOBs that are caught while fishing - Log in on Full/New Moon and Auto Logs out After Specified Time - Screen Capture an Important event and uploads it to our Server. - Advanced Fishing Stats (Fish Types,Times Caught) + Graphs - Calendar Based on Gathered Statistics ---------------------------------------------------------------------- ---------------------------------------------------------------------- ---------------------------------------------------------------------- All I have to say is AutoIT is . Good job! Now.. All it needs is ability to use DLL's to Read Memory So I can Add more features
Hooch Posted August 19, 2004 Posted August 19, 2004 Nice work Chazz, you make me want to play FF just to use something like that Now you got me thinking about how web based control could be utilized in Lineage 2....
Hooch Posted August 19, 2004 Posted August 19, 2004 Here's a question for you, does FF log chat and system info so you can pull info out of a file? Lineage is a b*tch as nothing is logged so if I want info I would have to develop some kind of OCR and it's just not worth it. I got my bot, when using actools, to be able to recognize certain command words but it sucked. I moved to autoit and now pass commands to it through an ini file.
ioliver Posted August 19, 2004 Posted August 19, 2004 Quick Question: What is Web Based Control? Is it a feature of AutoIt? Thanks, Ian - Ohh, I've never played FFXI, but the PS FF games are great... "Blessed be the name of the Lord" - Job 1:21Check out Search IMF
Hooch Posted August 19, 2004 Posted August 19, 2004 Not directly related to autoit, just tying in a webpage with autoit to be able to remotely issue commands or retrieve information. You would use autoit to script this type of functionality in conjunction, most likely, with the web launguage of your choice. Coldfusion for me.....
Guest Chazz Posted August 20, 2004 Posted August 20, 2004 (edited) Ok. To answer a couple questions. 1. FF does not have real time logs. Basically. All Chat Window Content is Buffered into memory, then once the 5K Buffer is filled, dumps it to a text file in the Game's Directory. So getting real time info is not possible there. Granted. I have been reading about Xunleashed's ability to write DLL's for it and someone wrote a DLL to fetch the chat window information DIRECTLY from mrmory. So it is real time. I would love to achieve this with AutoIT. 2. AS for the Web Based Control. This is how I am doing it.. Two INI files configure the bot config.ini = Configure wether the bot fetches the INI file locally or via the web and sone other misc stuff like paths and etc.. local.ini = All the user changeable parameter such as ON OFF options for AutoDrop, AutoSort. Pause. Etc etc. If in config.ini you specified you wanted web based control, the script does the following just before casting URLDownloadToFile( "yoursite.com/buildini.php", "web.ini") Now. When AutoIT tries to download buildini.php, the web server parses the PHP before the file is downloaded. The PHP Fetches all the variables in the Database, Builds and displays and INI file (just like the local one) and saves it as web.ini AutoIT downloads this INI file then reads it to update values just before casting The Database is managed via a web page I made to administer the database So. When I make changes on the web page. it changes the Database values, in which, the next time AutoIT fetches the INI, it will get the updated values. Hmm. I think I lost myself in the explanation. But hope that clears it up a little - Chazz Edited August 20, 2004 by Chazz
JSThePatriot Posted October 15, 2004 Posted October 15, 2004 Ok.To answer a couple questions.1. FF does not have real time logs. Basically. All Chat Window Content is Buffered into memory, then once the 5K Buffer is filled, dumps it to a text file in the Game's Directory. So getting real time info is not possible there.Granted. I have been reading about Xunleashed's ability to write DLL's for it and someone wrote a DLL to fetch the chat window information DIRECTLY from mrmory. So it is real time. I would love to achieve this with AutoIT.2. AS for the Web Based Control. This is how I am doing it..Two INI files configure the botconfig.ini = Configure wether the bot fetches the INI file locally or via the web and sone other misc stuff like paths and etc..local.ini = All the user changeable parameter such as ON OFF options for AutoDrop, AutoSort. Pause. Etc etc.If in config.ini you specified you wanted web based control, the script does the following just before castingURLDownloadToFile( "yoursite.com/buildini.php", "web.ini")Now. When AutoIT tries to download buildini.php, the web server parses the PHP before the file is downloaded. The PHP Fetches all the variables in the Database, Builds and displays and INI file (just like the local one) and saves it as web.iniAutoIT downloads this INI file then reads it to update values just before castingThe Database is managed via a web page I made to administer the database So. When I make changes on the web page. it changes the Database values, in which, the next time AutoIT fetches the INI, it will get the updated values.Hmm. I think I lost myself in the explanation. But hope that clears it up a little- Chazz<{POST_SNAPBACK}>Ah excellent. Thanks for the explanation of the Web Based Control. If I had thought about it enough I would have gotten it but you saved me the time.JS AutoIt Links File-String Hash Plugin Updated! 04-02-2008 Plugins have been discontinued. I just found out. ComputerGetInfo UDF's Updated! 11-23-2006 External Links Vortex Revolutions Engineer / Inventor (Web, Desktop, and Mobile Applications, Hardware Gizmos, Consulting, and more)
Helge Posted January 25, 2005 Posted January 25, 2005 Now, isn't it one of those fishermen again.There ain't no fish around here. Move along.Aren't there any other sites to post these scripts ? *hint hint*The "Gaming and Bots" forum has been closed. May its denizens find somewhere more suitable to do their elitist chat, back-stabbing and other playground antics.Gaming questions may not be asked in the other forums unless they are phrased politely as a non-gaming question.R.I.P.<{POST_SNAPBACK}>
Guest nswanson_ss Posted April 23, 2005 Posted April 23, 2005 Now, isn't it one of those fishermen again.There ain't no fish around here. Move along.Aren't there any other sites to post these scripts ? *hint hint*<{POST_SNAPBACK}>/slap Helge. I hate it when people stifle creativity...Chazz, if you ever come back to these forums, please email me. I think this very complex script suite sounds quite interesting. If for no other reason than curiousity from a programmer's perspective, I would like to see this script suite (including the web based parts) in it's entirety... Thanks.
Aceguy Posted May 3, 2007 Posted May 3, 2007 i have create a 100% working fishing bot.? [u]My Projects.[/u]Launcher - not just for games & Apps (Mp3's & Network Files)Mp3 File RenamerMy File Backup UtilityFFXI - Realtime to Vana time Clock
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