Jump to content

Recommended Posts

Posted (edited)

  On 11/26/2009 at 9:54 PM, 'aniq said:

hey,

i am using GameSetting.xml (v8838) with the small 1*1 crops

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

2. Is there a way of plowing and seeding for 1*1 all at once if yes can some1 tell step by step how.

thanx

I 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: forgot

s: 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 characters

m: Multi-line, IIRC

x: 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 follows

http: # 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 protocol

FarmGame # 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 dot

swf # 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 by TimeHorse
  • Replies 501
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Posted Images

Posted

  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 there

but anyways, keep up the good work guys....this is getting interesting :)

Posted

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:)

Posted

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.

Posted (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: #747231

And 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 by TimeHorse
Posted (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 by ToysRUs
Posted

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

  On 11/30/2009 at 1:23 AM, 'TimeHorse said:

I don't recommend reading the whole thread; just stick with the FAQ: #747231

And 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?

Posted

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.

Posted

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

  • 3 weeks later...
Posted

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

Posted

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

yeah you re right i saved my farm with that method too.

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...