<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>M&#039;re Undefined &#187; FarmVille Helper</title>
	<atom:link href="http://blog.mohdimran.com/category/farmville-helper/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mohdimran.com</link>
	<description>Technical Manager at one of the market researcher company in KL who does blogging on his free time. Love cats very much. Always fascinated with new technology (as well as spending money on it)</description>
	<lastBuildDate>Mon, 26 Jul 2010 14:39:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>My FarmVille Helper App: Crops Automation</title>
		<link>http://blog.mohdimran.com/my-farmville-helper-app-crops-automation/</link>
		<comments>http://blog.mohdimran.com/my-farmville-helper-app-crops-automation/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 17:27:30 +0000</pubDate>
		<dc:creator>Imran</dc:creator>
				<category><![CDATA[FarmVille Helper]]></category>
		<category><![CDATA[animal]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[crop]]></category>
		<category><![CDATA[farmville]]></category>
		<category><![CDATA[helper]]></category>
		<category><![CDATA[mouse]]></category>
		<category><![CDATA[tree]]></category>

		<guid isPermaLink="false">http://blog.mohdimran.com/?p=882</guid>
		<description><![CDATA[When designing My FarmVille Helper App, I want to make it as generic as possible, where the user can customize every aspect of how the automation should be executed. The easier way to do is to allow user to enter the pattern of how the mouse movement should be, depending on how the farm is [...]]]></description>
			<content:encoded><![CDATA[<p>When designing My FarmVille Helper App, I want to make it as generic as possible, where the user can customize every aspect of how the automation should be executed. The easier way to do is to allow user to enter the pattern of how the mouse movement should be, depending on how the farm is laid out. So this blog entry with explain on how this pattern system works.</p>
<p>When working on the blocks of land in FarmVille, the direction of how to traverse the mouse always either to the right or to the left. To traverse to left, use the command <b><font color="red">l</font></b>, and to traverse to the right, use the command <b><font color="red">r</font></b>. And to apply the action to the block, use the command <b><font color="red">x</font></b>.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/4115231814/" target="_blank"><img class="phostImg" src="http://farm3.static.flickr.com/2551/4115231814_85d0a0f18a.jpg" border="0" alt="" width="498" height="238" /></a></p>
<p>Let&#8217;s take above for example. Here, we are traversing to the right, and there are 4 blocks of land. The command for this will be</p>
<p><b><font color="red">rxxxx</font></b></p>
<p>Please note that the direction command only needs to be called once. The application will remember the last direction that we set.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/4114462717/" target="_blank"><img class="phostImg" src="http://farm3.static.flickr.com/2554/4114462717_d11346e23f.jpg" border="0" alt="" width="489" height="238" /></a></p>
<p>In the above example, we are traversing to left, and there are 4 blocks of land. The command for this will be</p>
<p><b><font color="red">lxxxx</font></b></p>
<p>We can also traversing vertically, either upwards (use the command <b><font color="red">u</font></b>) or down (use the command <b><font color="red">d</font></b>). The vertical commands only will be executed once, and the application won&#8217;t remember like what we have for <b><font color="red">r</font></b> and <b><font color="red">l</font></b> earlier. Confused? Let&#8217;s see an example.</p>
<p>Let say I want to traverse my lands like below.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/4115232070/" target="_blank"><img class="phostImg" src="http://farm3.static.flickr.com/2556/4115232070_964ec4401e.jpg" border="0" alt="" width="500" height="243" /></a></p>
<p>If I give a command of <b><font color="red">rxxxxdxxxx</font></b>, what this will do is the mouse will traverse 4 blocks to the right (i.e. <b><font color="red">rxxxx</font></b>) then go down by 1 block (i.e. <b><font color="red">d</font></b>). What about the last <b><font color="red">xxxx</font></b>? Like I said earlier, <b><font color="red">d</font></b> and <b><font color="red">u</font></b> commands are executed only once, so <b><font color="red">xxxx</font></b> after <b><font color="red">d</font></b> will not traverse 4 blocks down, but instead it will still traverse 4 blocks to the right. Remember, the application will remember your last used horizontal command (i.e. <b><font color="red">r</font></b> or <b><font color="red">l</font></b>). So, the correct commands for the above is</p>
<p><b><font color="red">rxxxxd<br />
lxxxx</font></b></p>
<p>The next thing that I want to explain is how to handle gaps between block on My FarmVille Helper App. But before that, let see how gaps look like in FarmVille.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/4115232392/" target="_blank"><img class="phostImg" src="http://farm3.static.flickr.com/2537/4115232392_87644f6eab.jpg" border="0" alt="" width="500" height="217" /></a></p>
<p>The smallest gap that you can make between 2 blocks of land is 1/4 of the size of 1 land block. Meaning, for 1 block of land, there will be 4 gaps in between. Gaps can be entered by specifying the direction of the gap that you want to have (i.e. <b><font color="red">r</font></b>, <b><font color="red">l</font></b>, <b><font color="red">u</font></b> or <b><font color="red">d</font></b>) followed by the denominator of how many gaps you want. <b><font color="red">l1</font></b> mean 1 gap to the left, <b><font color="red">r3</font></b> means 3 gaps to the right, <b><font color="red">d5</font></b> mean 5 gaps to the bottom etc. Let&#8217;s look at an example.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/4114463397/" target="_blank"><img class="phostImg" src="http://farm3.static.flickr.com/2634/4114463397_eeb1d798c1.jpg" border="0" alt="" width="500" height="243" /></a></p>
<p>The command for the above traversal will be</p>
<p><b><font color="red">rxx<u>r1</u>xxd<br />
lxx<u>l1</u>xx</font></b></p>
<p>Pay a close attention to the command that I underline below for the 1 gap to the right at first row, and 1 gap to the left at the second row.</p>
<p>What about vertical gap? Let&#8217;s look at the following example.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/4115232742/" target="_blank"><img class="phostImg" src="http://farm3.static.flickr.com/2621/4115232742_e161521f53.jpg" border="0" alt="" width="500" height="243" /></a></p>
<p>The command for the above traversal is</p>
<p><b><font color="red">rxxxx<u>d1</u><br />
lxxxx</font></b></p>
<p>Pay a close attention to the command that I underline below that denotes having gap of 1 downwards.</p>
<p>Let&#8217;s look at another example. The second block of the second row is not really a land block, but it&#8217;s a decoration. So, there will be gap of 1 land block here. As stated previously, 4 gaps will be equal to 1 land block.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/4114463817/" target="_blank"><img class="phostImg" src="http://farm3.static.flickr.com/2539/4114463817_dfd224235b.jpg" border="0" alt="" width="500" height="243" /></a></p>
<p>So the command for the above traversal is</p>
<p><b><font color="red">rxr5x</font></b></p>
<p>Why <b><font color="red">r5</font></b>? There&#8217;s another gap after the monster decoration, thus making total number of gaps is 5.</p>
<p>Let&#8217;s look at more complex example. Can you work out how the commands for this will look like? Try first, then check with my answer below just to make sure that you get the concept of this ;)</p>
<p><a href="http://www.flickr.com/photos/mohdimran/4114464185/" target="_blank"><img class="phostImg" src="http://farm3.static.flickr.com/2710/4114464185_678ee0b30d.jpg" border="0" alt="" width="500" height="240" /></a></p>
<p>The command for the above traversal will be</p>
<p><b><font color="red">rxxxxr1xd1<br />
lxl5xxxd<br />
rxxxxr1xd<br />
lxl1xl8xd<br />
rxr8xr1x</font></b></p>
<p>Easy stuffs huh!</p>
<p>When you enter those command in the application, you will see the mouse movement, and it does nothing. This is good when setting up for the first time so that you can make sure that the mouse pointers are traversing correctly through all of your land blocks. And, when you are ready for some action, you can specify what you want to do. Below are the available commands that you can use</p>
<p><b><font color="red">move</font></b> (default)<br />
<b><font color="red">plow<br />
seed<br />
harvest</font></b></p>
<p>Usually, when you are doing these actions manually for real, there&#8217;s a delay between your mouse clicks. So can also specify how long that the program have to wait (in milliseconds) between mouse clicks. The command to use is</p>
<p><b><font color="red">p200</font></b></p>
<p>which denotes that you want to pause for 200 milliseconds between mouse clicks. <b><font color="red">p200</font></b> is usually enough, but if you have a lot of things on your farm, or computer is slow, you might need to try and error the value that works best with you. You will understand this better towards the end of this blog entry.</p>
<p>Now for the ultimate test. Below is how my farm looks like at the moment (hehe) and I have already put an arrow on how the traversal should be done (click on the image to see bigger version). Try to work out on how the commands will look like, and compare the one that you work out with my answer below.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/4114470197/" target="_blank"><img class="phostImg" src="http://farm3.static.flickr.com/2791/4114470197_a338e54f74.jpg" border="0" alt="" width="500" height="253" /></a></p>
<p>The command for the above traversal will be</p>
<p><b><font color="red">p200<br />
seed<br />
rxxxxr1xxxxr1xxxxr1xxd<br />
lxxl1xxxxl1xxxxl1xxxxd<br />
rxxxxr1xxxxr1xxxxr1xxd<br />
lxxl1xxxxl1xxxxl1xxxxd1</p>
<p>rxxxxr1xxxr5xxxxr1xxd<br />
lxxl1xxxxl1xxxxl1xxxxd<br />
rxxxxr1xr8xr1xxxxr1xxd<br />
lxxl1xxxxl1xl8xl1xxxxd1<br />
ll18</p>
<p>rxr1xxxxr1xxxxr1xxxxr1xxxxr1xxxxd<br />
lxxxxl1xxxxl1xxxxl1xxxxl1xxxxl1xd<br />
rxr1xxxxr1xxxxr1xxxxr1xxxxr1xxxxd<br />
lxxxxl1xxxxl1xxxxl1xxxxl1xxxxl1xd1</p>
<p>rxr1xxxxr1xxxxr1xxxxr1xxxxr1xxxxd<br />
lxxxxl1xxxxl1xxxxl1xxxxl1xxxxl1xd<br />
rxr1xxxxr1xxxxr1xxxxr1xxxxr1xxxxd<br />
lxxxxl1xxxxl1xxxxl1xxxxl1xxxxl1xd1</p>
<p>rxr1xxxxr1xxxxr1xxxxr1xxxxr1xxxxd<br />
lxxxxl1xxxxl1xxxxl1xxxxl1xxxxl1x</font></b></p>
<p>Finally, let&#8217;s see this in action. Click the play button below to play the movie. The loading speed can be slow at times. If it slow, just pause the video after you click the play button, and let it download the rest of the movie first before continue playing it again.</p>
<div id="container"><a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.</div>
<p><script type="text/javascript" src="http://www.mohdimran.com/blog/wp-content/themes/bloggingpro_wr/swfobject.js"></script><br />
<script type="text/javascript">
	var s1 = new SWFObject("http://www.mohdimran.com/blog/wp-content/themes/bloggingpro_wr/player.swf","ply","500","429","9","#FFFFFF");
	s1.addParam("allowfullscreen","true");
	s1.addParam("allownetworking","all");
	s1.addParam("allowscriptaccess","always");
	s1.addParam("flashvars","&#038;file=http://www.mohdimran.com/flash_video/fvha_crops.flv&#038;autostart=false");
	s1.write("container");
</script></p>
<p>So, when the software will be available to public? To be honest, I don&#8217;t know. There are still a few more tweaks that I&#8217;d like to do. It will be priced at <b>USD99.99</b> per download. Just kidding. It will be free. So stay tuned ;)</p>
<div class="linkwithin_hook" id="http://blog.mohdimran.com/my-farmville-helper-app-crops-automation/"></div>]]></content:encoded>
			<wfw:commentRss>http://blog.mohdimran.com/my-farmville-helper-app-crops-automation/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My FarmVille Helper App: Preview</title>
		<link>http://blog.mohdimran.com/my-farmville-helper-app-preview/</link>
		<comments>http://blog.mohdimran.com/my-farmville-helper-app-preview/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 15:00:05 +0000</pubDate>
		<dc:creator>Imran</dc:creator>
				<category><![CDATA[FarmVille Helper]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[farmviller]]></category>
		<category><![CDATA[helper]]></category>
		<category><![CDATA[preview]]></category>

		<guid isPermaLink="false">http://blog.mohdimran.com/?p=881</guid>
		<description><![CDATA[After revealed about a week and half ago, now I have a working prototype for My FarmVille Helper App already. GUI is still shabby, but the functionality behind it is 95% completed, where the remaining 5% is for the little minor tweaks that I&#8217;d like to do. There are 4 main components to My FarmVille [...]]]></description>
			<content:encoded><![CDATA[<p>After <a href="http://blog.mohdimran.com/my-farmville-helper-app-design-brainstorming/" target="_blank">revealed</a> about a week and half ago, now I have a working prototype for My FarmVille Helper App already.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/4112466182/" target="_blank"><img class="phostImg" src="http://farm3.static.flickr.com/2503/4112466182_658c205656.jpg" border="0" alt="" width="500" height="398" /></a></p>
<p>GUI is still shabby, but the functionality behind it is 95% completed, where the remaining 5% is for the little minor tweaks that I&#8217;d like to do. There are 4 main components to My FarmVille Helper Help. Click below to find out more.</p>
<ul>
<li><a href="http://blog.mohdimran.com/my-farmville-helper-app-crops-automation/">Crops automation</a></li>
<li>Animals automation (blog entry is coming soon)</li>
<li>Trees automation (blog entry is coming soon)</li>
<li>Mouse automation (blog entry is coming soon)</li>
</ul>
<div class="linkwithin_hook" id="http://blog.mohdimran.com/my-farmville-helper-app-preview/"></div>]]></content:encoded>
			<wfw:commentRss>http://blog.mohdimran.com/my-farmville-helper-app-preview/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>My FarmVille Helper App: Design brainstorming</title>
		<link>http://blog.mohdimran.com/my-farmville-helper-app-design-brainstorming/</link>
		<comments>http://blog.mohdimran.com/my-farmville-helper-app-design-brainstorming/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 12:00:42 +0000</pubDate>
		<dc:creator>Imran</dc:creator>
				<category><![CDATA[FarmVille Helper]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[farmville]]></category>
		<category><![CDATA[helper]]></category>

		<guid isPermaLink="false">http://blog.mohdimran.com/?p=877</guid>
		<description><![CDATA[I&#8217;m making myself busy again this weekend with another &#8220;Weekend Programming Project&#8221;. After the launch of the My FarmVille Helper, I want something more. My FarmVille Helper is good to manage the planting session, knowing which session will rip soon, or will wilt soon. But you still have to do all the dirty work of [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m making myself busy again this weekend with another &#8220;Weekend Programming Project&#8221;. After the launch of the <a href="http://blog.mohdimran.com/my-farmville-helper-beta-public-release/" target="_blank">My FarmVille Helper</a>, I want something more. My FarmVille Helper is good to manage the planting session, knowing which session will rip soon, or will wilt soon. But you still have to do all the dirty work of plowing, seeding and harvesting, and is quite nerves breaking if you have big farm.</p>
<p>This is when I&#8217;m thinking of the extension of My FarmVille Helper &#8211; <strong>My FarmVille Helper App</strong>. This is just still an idea which as you can see below, at the moment I&#8217;m still designing the coordinate system in FarmVille Helper App, and I&#8217;ve been playing around with the codes that control mouse movement.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/4082111729/" target="_blank"><img class="phostImg" src="http://farm3.static.flickr.com/2462/4082111729_b00420a66d.jpg" border="0" alt="" width="500" height="333" /></a></p>
<p>I&#8217;m so excited to finish up this new project, and as always, my application should be generic enough to be used with any FarmVille design, and not limiting to how I arrange my farm.</p>
<div class="linkwithin_hook" id="http://blog.mohdimran.com/my-farmville-helper-app-design-brainstorming/"></div>]]></content:encoded>
			<wfw:commentRss>http://blog.mohdimran.com/my-farmville-helper-app-design-brainstorming/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>My FarmVille Helper: Beta Public Release</title>
		<link>http://blog.mohdimran.com/my-farmville-helper-beta-public-release/</link>
		<comments>http://blog.mohdimran.com/my-farmville-helper-beta-public-release/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 16:51:45 +0000</pubDate>
		<dc:creator>Imran</dc:creator>
				<category><![CDATA[FarmVille Helper]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[farmville]]></category>
		<category><![CDATA[helper]]></category>

		<guid isPermaLink="false">http://blog.mohdimran.com/?p=866</guid>
		<description><![CDATA[I&#8217;m glad to announce the relaunching of My FarmVille Helper that I&#8217;ve been working since the beginning of last month to public. I guess a few may have noticed that My FarmVille Helper has to be taken down 5 hours after I made it available to the public. Been contacted by the representative from Zynga [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m glad to announce the relaunching of My FarmVille Helper that I&#8217;ve been working since the beginning of last month to public.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/3976435874/" target="_blank"><img class="phostImg" src="http://farm4.static.flickr.com/3449/3976435874_21a5a6ea3d.jpg" border="0" alt="" width="500" height="69" /></a></p>
<p>I guess a few may have noticed that My FarmVille Helper has to be taken down 5 hours after I made it available to the public. Been contacted by the representative from Zynga Game Network Inc that my application may have legal issue with the use of official FarmVille logo. To folks in Zynga, teribbly sorry about that.</p>
<p>Well, I have rebranded My FarmVille Helper and it&#8217;s up and running again. Most of the bugs that I faced during my <a href="http://blog.mohdimran.com/my-farmville-helper-alpha-personal-use/" target="_blank">personal alpha release</a> has been fixed. Feedbacks on this beta release is really appreciated.</p>
<h2>Register one <a href="http://farmville.mohdimran.com/register.php" target="_blank">here</a></h2>
<div class="linkwithin_hook" id="http://blog.mohdimran.com/my-farmville-helper-beta-public-release/"></div>]]></content:encoded>
			<wfw:commentRss>http://blog.mohdimran.com/my-farmville-helper-beta-public-release/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>FarmVille Helper: Beta Sneak Preview</title>
		<link>http://blog.mohdimran.com/farmville-helper-beta-sneak-preview/</link>
		<comments>http://blog.mohdimran.com/farmville-helper-beta-sneak-preview/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 15:32:59 +0000</pubDate>
		<dc:creator>Imran</dc:creator>
				<category><![CDATA[FarmVille Helper]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[farmville]]></category>
		<category><![CDATA[helper]]></category>

		<guid isPermaLink="false">http://blog.mohdimran.com/?p=864</guid>
		<description><![CDATA[FarmVille Helper Beta is nearing the time where it will be released to public. But until then, please have a look at the following sneak preview first, if you ever interested in it ;) The login screen. The overall look shares the same theme as TagMe! Control Panel. Well, why reinvented the wheel if you [...]]]></description>
			<content:encoded><![CDATA[<p>FarmVille Helper Beta is nearing the time where it will be released to public. But until then, please have a look at the following sneak preview first, if you ever interested in it ;)</p>
<p>The login screen. The overall look shares the same theme as <a href="http://blog.mohdimran.com/tagme-control-panel-sneak-preview/" target="_blank">TagMe! Control Panel</a>. Well, why reinvented the wheel if you have the working one already lying around to be used.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/3969309914/" target="_blank"><img class="phostImg" src="http://farm4.static.flickr.com/3199/3969309914_a4b518c8d7.jpg" border="0" alt="" width="500" height="355" /></a></p>
<p>Upon logging in, this will be the home screen that you will see,</p>
<p><a href="http://www.flickr.com/photos/mohdimran/3969310140/" target="_blank"><img class="phostImg" src="http://farm3.static.flickr.com/2672/3969310140_7304ed40df.jpg" border="0" alt="" width="500" height="271" /></a></p>
<p>where you can delete your account information as you wish. The same as TagMe!, timezone field is the most important one as all the planting sessions time will revolve around this.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/3969310394/" target="_blank"><img class="phostImg" src="http://farm4.static.flickr.com/3466/3969310394_e44919438e.jpg" border="0" alt="" width="500" height="302" /></a></p>
<p>You can add the planting session by selected the seed that you use, as well as the date and the time that you finished with the planting sessions.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/3968537291/" target="_blank"><img class="phostImg" src="http://farm4.static.flickr.com/3486/3968537291_04e0d45f91.jpg" border="0" alt="" width="500" height="279" /></a></p>
<p>All of you planting sessions can be viewed and managed from this screen. Guessing when your crops will be fully grown is the thing of the past. Now you can precisely know when to login to your FarmVille Farm to harvest your crops.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/3968537913/" target="_blank"><img class="phostImg" src="http://farm3.static.flickr.com/2427/3968537913_a978f3ec5f.jpg" border="0" alt="" width="500" height="449" /></a></p>
<p><b><i>FarmVille Helper has already been released to public</i></b></p>
<h2>Register one <a href="http://farmville.mohdimran.com/register.php" target="_blank">here</a></h2>
<div class="linkwithin_hook" id="http://blog.mohdimran.com/farmville-helper-beta-sneak-preview/"></div>]]></content:encoded>
			<wfw:commentRss>http://blog.mohdimran.com/farmville-helper-beta-sneak-preview/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My FarmVille Helper: Alpha Personal Use</title>
		<link>http://blog.mohdimran.com/my-farmville-helper-alpha-personal-use/</link>
		<comments>http://blog.mohdimran.com/my-farmville-helper-alpha-personal-use/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 06:02:12 +0000</pubDate>
		<dc:creator>Imran</dc:creator>
				<category><![CDATA[FarmVille Helper]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[farmville]]></category>
		<category><![CDATA[helper]]></category>

		<guid isPermaLink="false">http://blog.mohdimran.com/?p=858</guid>
		<description><![CDATA[After almost 1 week I&#8217;ve been playing with FarmVille, I quickly realize that things can get really messy especially remembering when to harvest. Since each crops has different lifetime before it can be harvested, it ended up us having to manage several mini sessions of plowing and seeding, and having to keep checking so that [...]]]></description>
			<content:encoded><![CDATA[<p>After almost 1 week I&#8217;ve been <a href="http://blog.mohdimran.com/addicted-to-farmville/" target="_blank">playing with FarmVille</a>, I quickly realize that things can get really messy especially remembering when to harvest. Since each crops has different lifetime before it can be harvested, it ended up us having to manage several mini sessions of plowing and seeding, and having to keep checking so that the fully grown crops are not wilted, especially those that are having short lifetime.</p>
<p>In the game, when you hover the mouse on the crop, you will see the percentage of the grow progress displayed. But it doesn&#8217;t tell you on how long it will take before the crop is fully grown.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/3904392162/" target="_blank"><img class="phostImg" src="http://farm3.static.flickr.com/2596/3904392162_3bec17fd09_o.jpg" border="0" alt="" width="500" height="391" /></a></p>
<p>The formula to calculate the percentage of the <strong>Grow Progress</strong> can be derived as follows.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/3906210598/" target="_blank"><img class="phostImg" src="http://farm3.static.flickr.com/2463/3906210598_3e6ccbaee9_o.png" border="0" alt="" width="337" height="31" /></a></p>
<p>And to work out the time when the crop will be fully grown (i.e. <strong>End Time</strong>), the following formula can be used.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/3905430743/" target="_blank"><img class="phostImg" src="http://farm4.static.flickr.com/3450/3905430743_4fd1f9ca56_o.png" border="0" alt="" width="238" height="10" /></a></p>
<p>But often, we lost track of when that particular crop was first being planted (i.e. <strong>Start Time</strong>). Since we know the progress, lets rearrange the <b>Grow Progress</b> formula like so.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/3906210660/" target="_blank"><img class="phostImg" src="http://farm4.static.flickr.com/3483/3906210660_8712110577_o.png" border="0" alt="" width="381" height="31" /></a></p>
<p>Now, lets substitute the <strong>Start Time</strong> in <strong>End Time</strong> formula with this, and I will have the following.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/3905430815/" target="_blank"><img class="phostImg" src="http://farm3.static.flickr.com/2542/3905430815_88cbcb82fb_o.png" border="0" alt="" width="456" height="31" /></a></p>
<p>With this, now I can calculate the estimated time when my crop will be fully grown by time cost that it required for the crop to fully grown, the progress of grow and the current time when I&#8217;m looking at the progress.</p>
<p>Even though it&#8217;s workable, but this kind of chores easily tire me up. The problem with me is, when I&#8217;m addicted to something, I started to have an obsession with it if things are not efficient. It would be great if someone out there created a program that allows us to manage this. After looking for a while, I didn&#8217;t come across anything like it. So why not created one myself? Hhmm.. Sound like a good idea :D</p>
<p>So introducing, <strong>My FarmVille Helper</strong>. This is just a simple web application that I created using PHP and host it on my hosting account. The way that it works is, every time I start doing a new planting in FarmVille, I will record that session of what seed that I plant, and the date and time that I start the planting.</p>
<p><a href="http://www.flickr.com/photos/mohdimran/3903576235/" target="_blank"><img class="phostImg" src="http://farm3.static.flickr.com/2425/3903576235_2e4de8e089.jpg" border="0" alt="" width="500" height="358" /></a></p>
<p>And I can track all of my planting sessions at this summary page. It will show the info of my crop plantations</p>
<ul>
<li>What kind of seed</li>
<li>Date and time that I start planting</li>
<li>Time cost for the crop to fully grown</li>
<li>The date and time when the crop will be fully grown</li>
<li>The remaining time before the crop will be fully grown</li>
<li>The percentage progress (this will be the same as what shown in FarmVille)</li>
<li>The remaining time before the crop wilts (after it fully grown)</li>
</ul>
<p><a href="http://www.flickr.com/photos/mohdimran/3903576867/" target="_blank"><img class="phostImg" src="http://farm4.static.flickr.com/3505/3903576867_820a7f6aa7.jpg" border="0" alt="" width="500" height="227" /></a></p>
<p>The UI is still shabby at the moment, but it does what it suppose to do. That&#8217;s what I call getting organized ;)</p>
<p><b><i>FarmVille Helper has already been released to public</i></b></p>
<h2>Register one <a href="http://farmville.mohdimran.com/register.php" target="_blank">here</a></h2>
<div class="linkwithin_hook" id="http://blog.mohdimran.com/my-farmville-helper-alpha-personal-use/"></div>]]></content:encoded>
			<wfw:commentRss>http://blog.mohdimran.com/my-farmville-helper-alpha-personal-use/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
	</channel>
</rss>
