TimeHorse Posted November 27, 2009 Posted November 27, 2009 (edited) On 11/26/2009 at 9:54 PM, 'aniq said: hey,i am using GameSetting.xml (v8838) with the small 1*1 cropsand i am also using the swf with it but i still have to refresh to get the field plowed please help i also have questions:1. i am using these setting on fiddler are they correct: regex:(?insx)^http://.*gameSettings\.xml$ with C:\Documents and Settings\Student\Desktop\gameSettings.xml regex:(?isxm)$ with C:\Documents and Settings\Student\Desktop\FarmGame.release-09-11-24.8838.swf2. Is there a way of plowing and seeding for 1*1 all at once if yes can some1 tell step by step how.thanxI think the only minor change I'd make in your swf match is a ) the part in parenthesis should be the same: (?insx) -- not sure what the m flag does, I think multi-line matching and that shouldn't matter but perhpas the n is significant, though it's the one Regular Expression flag I tend to forget. For the curious, those flags read as:i: Case Insensitive search (meaning HTTP and http both match)n: forgots: The dot (.) character normally matches any character except character return and linefeed characters, the s flag, IIRC, makes it also match the return and linefeed charactersm: Multi-line, IIRCx: Verbose -- you are allowed to put comments in the Regular Expression that begin with a hash (#) and spaces before it are ignored. This is clearly not used by this expression, though. An example would be:/^ # The beginning of the URL should be what followshttp: # This is the protocol we want to match\/\/ # Two slashes (/), but we need to escape them for Perl Regular Expressions.* # This matches anything after the protocolFarmGame # The first part of the SWF Filename.* # The middle bit in the SWF Filename, up to but not including the Extension -- not a greedy search\. #A literal dot (.), since the dot is normally 'any character', we escape it here to mean literally a dotswf # The Extension$ # The ending of the URL should be what preceded/Of course, the Fiddler Regular Expression doesn't allow line feeds so you can't actually use that for your match, but it would work if you were using a programming language like Perl or Python, though in Python you'd have to enter the strings with quotes and define the string as raw (r'a raw string').b ) There is a way, but we prefer not to discuss this here; there is hints of it in the FarmVille Network Cheat mailing list archives. Edited November 27, 2009 by TimeHorse
DeadBambi Posted November 27, 2009 Posted November 27, 2009 On 11/26/2009 at 5:38 PM, 'TimeHorse said: If you're getting Sync Errors...I suggest you join me in the Zynga support forums since the developers are reading them, even if by proxy.LOL they banned me from the forums for 30 days because I got into a "disagreement" with a moderator, so I cant join you therebut anyways, keep up the good work guys....this is getting interesting
neobilmem Posted November 27, 2009 Posted November 27, 2009 swf file that was opened Farmville after using fiddler :S . Continuous error "your game state is out of sync with the server. please refresh the page to continue" is not what should I do? I'd be happy to help:)
boboy Posted November 29, 2009 Posted November 29, 2009 Hello everyone! I just joined today and I wonder if anyone could give me the right script for Soybean Delete Method. The simple one but working. I'm sorry, I tried reading the forum from the start but got my tears drop (lol!) and can't find the right one. I need soybean delete for my XP. Thanks for any help.
TimeHorse Posted November 30, 2009 Posted November 30, 2009 (edited) On 11/29/2009 at 8:29 PM, 'boboy said: Hello everyone!I just joined today and I wonder if anyone could give me the right script for Soybean Delete Method. The simple one but working. I'm sorry, I tried reading the forum from the start but got my tears drop (lol!) and can't find the right one. I need soybean delete for my XP. Thanks for any help.I don't recommend reading the whole thread; just stick with the FAQ: #747231And as for scripts, I will recommend my own as I originally developed it for PPD: http://timehorse.pastebin.com/f540f078c(I should really release a new version but I want to hook up my advanced settings but am dithering on whether I should get the Zoom to match the gameSettings you see or just hardcode something like based on the default settings (0.5, 1.00, 1.50, 2.00) and allow you to type in something custom. It would be ideal if the settings could be read because then you get the default, the steps and the high and low values, though interestingly, it's possible that you could have one set of sizes going up and another going down. Take for instance:minZoom="0.33"maxZoom="2.00"defaultZoom="0.33"zoomStep="0.5"You start at 0.33, then 0.83, 1.33, 1.83 and finally 2.00. But zooming out again, you start with 2.00, then 1.50, 1.00, 0.50 and back to 0.33. >sigh<) Edited November 30, 2009 by TimeHorse
freshap Posted December 1, 2009 Posted December 1, 2009 On 12/1/2009 at 11:18 AM, 'psikolaz said: any new news about the out of sync error? nope sen türk müsün?
aniq Posted December 1, 2009 Posted December 1, 2009 out of sync if due to too many items on farm so it gets blocked. My farm is also blocked
fvrekl Posted December 1, 2009 Posted December 1, 2009 FarmHelper is a Farmville Bot (Auto Harvest, Seed, Help neighbors) http://www.farmvillebot.org
psikolaz Posted December 2, 2009 Posted December 2, 2009 On 12/1/2009 at 5:23 PM, 'freshap said: nope sen türk müsün?evet
ToysRUs Posted December 2, 2009 Posted December 2, 2009 They switched off 1x1 plots i think.. I change on gameSettings.xml but no functioning.. Any1 faced this?
ToysRUs Posted December 3, 2009 Posted December 3, 2009 (edited) Helloooo!!! Anybody there??? At the moment, I cannot switch to 1x1 view.. I cannot see on Fiddler that gameSettings.xml is requested.. Edit: It seems to be okay right now... Edited December 3, 2009 by ToysRUs
pearDevourer Posted December 5, 2009 Posted December 5, 2009 On 12/3/2009 at 12:59 AM, 'ToysRUs said: Helloooo!!! Anybody there??? At the moment, I cannot switch to 1x1 view.. I cannot see on Fiddler that gameSettings.xml is requested..Edit: It seems to be okay right now... I think 1x1 may only work with patched swf now (not sure, i always use patched swf), to learn how to patch swf, see faq.
ProTToType Posted December 7, 2009 Posted December 7, 2009 On 11/30/2009 at 1:23 AM, 'TimeHorse said: I don't recommend reading the whole thread; just stick with the FAQ: #747231And as for scripts, I will recommend my own as I originally developed it for PPD: http://timehorse.pastebin.com/f540f078c(I should really release a new version but I want to hook up my advanced settings but am dithering on whether I should get the Zoom to match the gameSettings you see or just hardcode something like based on the default settings (0.5, 1.00, 1.50, 2.00) and allow you to type in something custom. It would be ideal if the settings could be read because then you get the default, the steps and the high and low values, though interestingly, it's possible that you could have one set of sizes going up and another going down. Take for instance:minZoom="0.33"maxZoom="2.00"defaultZoom="0.33"zoomStep="0.5"You start at 0.33, then 0.83, 1.33, 1.83 and finally 2.00. But zooming out again, you start with 2.00, then 1.50, 1.00, 0.50 and back to 0.33. >sigh<)I'm very new to using AutoIt as i jus tumbled upon it while googling for FarmVille bots. Please help me out here. How exactly do i use your script to seed, harvest, plot and use the 1x1 plots?
agreene73 Posted December 8, 2009 Posted December 8, 2009 I wonder if anyone has the knowledge to make a script for putting chickens into the coop, and then, once you see if you have a mystery egg and publish it, take them back out.... all this clicking (and, worse, waiting for FarmVille dialog boxes to pop out) is getting to me! LOL I haven't learned to program AutoIt scripts yet, but am definitely willing to... can you guys direct me to some kinda guide to 'hold my hand' through the process, so to speak? I'd love to learn and make my own for this purpose.
AutoPov Posted December 9, 2009 Posted December 9, 2009 I'm attempting to PPD using Timehorse's script, but training isn't working for me. When I hit Home over the multitool, the cursor then moves right all the way to the delete tool and clicks it. If I start over, hovering over the very top-leftmost corner of the multitool I can ALMOST make it through training, but after setting the BUY button, the training overshoots the delete tool and ends up back on my plot with soybeans still selected. I am running Firefox, but can use IE if necessary. My res is 1920x1080 but I can change that as well if necessary. I just want to PPD a 1x1 square over and over.... what am I doing incorrectly? Thanks!!!
psikolaz Posted December 10, 2009 Posted December 10, 2009 what about deleting items without entering farms? time horse could u please explain something:(
ToysRUs Posted December 26, 2009 Posted December 26, 2009 After 15 days, I fixed my out of sync error.. Now I can access my farm.. The method was sending delete requests to server without opening the farm.. How I did? I wanna explain it here because I know this is needed.. First of all, do it at your own risk.. This method deletes any item on the farm, not specifically plots.. 1. Download this file: http://rapidshare.com/files/326271715/FV.Out.of.Sync.Saver.rar 2. Unrar it to a folder. 3. Run "Farmville.Bot.v2.0.1.exe", open "plugins.rar". 4. After a succesful installation, browse the directory you installed (default c:\FarmVilleBot), you will see "plugins" directory. 5. Unrar "plugins.rar" into plugins directory. If it asks to overwrite, click overwrite all. 6. Open your Internet Explorer, login to your facebook account by checking "Remember Me" box. 7. Run the program. 8. It will take several minutes to load completely. When it is loaded, you will see some tabs on the top bar. 9. Click "Advanced Settings". Change "Interval" to "10", "Force the program restart" to "10000". Uncheck "Refresh the farm" and "Show popup messages" if they are checked already. 10. Click "OutOfSyncDeleter" tab on the bar above. 11. Scroll down to end. Enter 7500 to "from ID" and 4500 to "to ID". Click "Change" button next. 12. Click "Superplow" tab. Click "Go >>" button next to "Remove all plots on the farm". 13. Click "Main" tab. At the right hand side of the screen, there exists a tab "extended log". Click it. 14. If everything has gone accurate so far, then you will see something like this there: start Init user. Load Farm result OK OOSD: start from 7500 to 1. OOSD:7500 not found. OOSD:Will restart and resume. OOSD:7499 not found. OOSD:Will restart and resume. . . . . OOSD:4502 deleted OOSD:4501 deleted OOSD:4500 deleted Del all plots ! finish It may take several hours to finish this process but it really worked for me. My 2 accounts now work properly.. BTW, "from ID" and "to ID"s can be changed but "from ID" must be greater! Like "500-0","150-100" etc..
psikolaz Posted December 26, 2009 Posted December 26, 2009 On 12/26/2009 at 9:46 PM, 'ToysRUs said: After 15 days, I fixed my out of sync error.. Now I can access my farm.. The method was sending delete requests to server without opening the farm.. How I did? I wanna explain it here because I know this is needed..First of all, do it at your own risk.. This method deletes any item on the farm, not specifically plots..1. Download this file:http://rapidshare.com/files/326271715/FV.Out.of.Sync.Saver.rar2. Unrar it to a folder.3. Run "Farmville.Bot.v2.0.1.exe", open "plugins.rar".4. After a succesful installation, browse the directory you installed (default c:\FarmVilleBot), you will see "plugins" directory.5. Unrar "plugins.rar" into plugins directory. If it asks to overwrite, click overwrite all.6. Open your Internet Explorer, login to your facebook account by checking "Remember Me" box.7. Run the program.8. It will take several minutes to load completely. When it is loaded, you will see some tabs on the top bar.9. Click "Advanced Settings". Change "Interval" to "10", "Force the program restart" to "10000". Uncheck "Refresh the farm" and "Show popup messages" if they are checked already.10. Click "OutOfSyncDeleter" tab on the bar above.11. Scroll down to end. Enter 7500 to "from ID" and 4500 to "to ID". Click "Change" button next.12. Click "Superplow" tab. Click "Go >>" button next to "Remove all plots on the farm".13. Click "Main" tab. At the right hand side of the screen, there exists a tab "extended log". Click it.14. If everything has gone accurate so far, then you will see something like this there:startInit user. Load Farmresult OKOOSD: start from 7500 to 1.OOSD:7500 not found.OOSD:Will restart and resume.OOSD:7499 not found.OOSD:Will restart and resume.....OOSD:4502 deletedOOSD:4501 deletedOOSD:4500 deletedDel all plots !finishIt may take several hours to finish this process but it really worked for me. My 2 accounts now work properly.. BTW, "from ID" and "to ID"s can be changed but "from ID" must be greater! Like "500-0","150-100" etc..yeah you re right i saved my farm with that method too.
Recommended Posts