<?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>dopefish.de &#187; Script</title>
	<atom:link href="http://www.dopefish.de/archives/tag/script/feed" rel="self" type="application/rss+xml" />
	<link>http://www.dopefish.de</link>
	<description>Headquaters of the evil genius</description>
	<lastBuildDate>Mon, 23 Jan 2012 13:34:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Farmville</title>
		<link>http://www.dopefish.de/archives/562</link>
		<comments>http://www.dopefish.de/archives/562#comments</comments>
		<pubDate>Wed, 25 Nov 2009 10:52:39 +0000</pubDate>
		<dc:creator>dopefish</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Autohotkey]]></category>
		<category><![CDATA[Farmville]]></category>
		<category><![CDATA[Script]]></category>

		<guid isPermaLink="false">http://www.dopefish.de/?p=562</guid>
		<description><![CDATA[Farmvill can be a fun way to pass some time, but if your fields get to be a bit big clicking on every single field can get to be a bit tiresome. I found this autohotkey script in the depths of the internet. It simplifies the process greatly  

Select All Code:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
!^c::
GoSub GetFarmSq
GoSub Getfirstsq
&#160;
i=1
&#160;
SetMouseDelay, 0
&#160;
cycle [...]]]></description>
			<content:encoded><![CDATA[<p>Farmvill can be a fun way to pass some time, but if your fields get to be a bit big clicking on every single field can get to be a bit tiresome. I found this <a href="http://www.autohotkey.com/download/">autohotkey</a> script in the depths of the internet. It simplifies the process greatly <img src='http://www.dopefish.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>

<div class="my_syntax_box"><span class="my_syntax_selecall"><a href="javascript:;" onclick="selectCode(this); return false;">Select All</a> </span><span class="my_syntax_Bar">Code:</span><div class="my_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
</pre></td><td class="code"><pre class="autohotkey" style="font-family:monospace;">!<span style="color: #000000; font-weight: italic;">^</span>c::
<span style="color: #FF00FF; font-style: italic;">GoSub</span> GetFarmSq
<span style="color: #FF00FF; font-style: italic;">GoSub</span> Getfirstsq
&nbsp;
i<span style="color: #000000; font-weight: italic;">=</span><span style="color: #0000dd;">1</span>
&nbsp;
<span style="color: #FF00FF; font-style: italic;">SetMouseDelay</span><span style="color: #000000; font-weight: italic;">,</span> <span style="color: #0000dd;">0</span>
&nbsp;
cycle <span style="color: #000000; font-weight: italic;">:=</span> farmy<span style="color: #000000; font-weight: italic;">/</span><span style="color: #0000dd;">2</span>
newx<span style="color: #000000; font-weight: italic;">=</span><span style="font-weight: italic; color: #A00A0;">%startx%</span>
newy<span style="color: #000000; font-weight: italic;">=</span><span style="font-weight: italic; color: #A00A0;">%starty%</span>
<span style="color: #FF00FF; font-style: italic;">loop</span><span style="color: #000000; font-weight: italic;">,</span> <span style="font-weight: italic; color: #A00A0;">%cycle%</span>
<span style="color: #00FF00; font-weight: bold;">&#123;</span>
<span style="color: #FF00FF; font-style: italic;">Click</span> <span style="font-weight: italic; color: #A00A0;">%newx%</span><span style="color: #000000; font-weight: italic;">,</span><span style="font-weight: italic; color: #A00A0;">%newy%</span>
<span style="color: #FF00FF; font-style: italic;">Loop</span><span style="color: #000000; font-weight: italic;">,</span> <span style="font-weight: italic; color: #A00A0;">%farmx%</span>
<span style="color: #00FF00; font-weight: bold;">&#123;</span>
newx<span style="color: #000000; font-weight: italic;">+=</span><span style="color: #0000dd;">25</span>
newy<span style="color: #000000; font-weight: italic;">-=</span><span style="color: #0000dd;">12</span>
<span style="color: #FF00FF; font-style: italic;">Click</span> <span style="font-weight: italic; color: #A00A0;">%newx%</span><span style="color: #000000; font-weight: italic;">,</span><span style="font-weight: italic; color: #A00A0;">%newy%</span>
<span style="color: #00FF00; font-weight: bold;">&#125;</span>
newx<span style="color: #000000; font-weight: italic;">+=</span><span style="color: #0000dd;">25</span>
newy<span style="color: #000000; font-weight: italic;">+=</span><span style="color: #0000dd;">12</span>
<span style="color: #FF00FF; font-style: italic;">Click</span> <span style="font-weight: italic; color: #A00A0;">%newx%</span><span style="color: #000000; font-weight: italic;">,</span><span style="font-weight: italic; color: #A00A0;">%newy%</span>
<span style="color: #FF00FF; font-style: italic;">Loop</span><span style="color: #000000; font-weight: italic;">,</span> <span style="font-weight: italic; color: #A00A0;">%farmx%</span>
<span style="color: #00FF00; font-weight: bold;">&#123;</span>
newx<span style="color: #000000; font-weight: italic;">-=</span><span style="color: #0000dd;">25</span>
newy<span style="color: #000000; font-weight: italic;">+=</span><span style="color: #0000dd;">12</span>
<span style="color: #FF00FF; font-style: italic;">Click</span> <span style="font-weight: italic; color: #A00A0;">%newx%</span><span style="color: #000000; font-weight: italic;">,</span><span style="font-weight: italic; color: #A00A0;">%newy%</span>
<span style="color: #00FF00; font-weight: bold;">&#125;</span>
newx<span style="color: #000000; font-weight: italic;">+=</span><span style="color: #0000dd;">25</span>
newy<span style="color: #000000; font-weight: italic;">+=</span><span style="color: #0000dd;">12</span>
<span style="color: #00FF00; font-weight: bold;">&#125;</span>
&nbsp;
<span style="color: #AAAAFF; font-weight: bold;">return</span>
&nbsp;
<span style="color: #FF00FF; font-style: italic;">GoSub</span> Getfirstsq
&nbsp;
<span style="color: #DD0000; font-style: italic;">GetFarmsq:
</span><span style="color: #FF00FF; font-style: italic;">Inputbox</span><span style="color: #000000; font-weight: italic;">,</span> farmy<span style="color: #000000; font-weight: italic;">,</span> Hi<span style="color: #000000; font-weight: italic;">,</span> <span style="color: #FF0000; font-style: italic;">Enter</span> the number of fields to the <span style="color: #FF0000; font-style: italic;">right</span> to <span style="color: #FF00FF; font-style: italic;">click</span> on<span style="color: #000000; font-weight: italic;">,,</span><span style="color: #0000dd;">200</span><span style="color: #000000; font-weight: italic;">,</span><span style="color: #0000dd;">150</span><span style="color: #000000; font-weight: italic;">,,,,,</span><span style="color: #0000dd;">6</span>
<span style="color: #AAAAFF; font-weight: bold;">if</span> <span style="color: #88FF88;">ErrorLevel</span>
<span style="color: #FF00FF; font-style: italic;">GoSub</span> <span style="color: #FF0000; font-style: italic;">Esc</span>
<span style="color: #FF00FF; font-style: italic;">Inputbox</span><span style="color: #000000; font-weight: italic;">,</span> farmx<span style="color: #000000; font-weight: italic;">,</span> Hi<span style="color: #000000; font-weight: italic;">,</span> <span style="color: #FF0000; font-style: italic;">Enter</span> the number of fields upwards to <span style="color: #FF00FF; font-style: italic;">click</span> on<span style="color: #000000; font-weight: italic;">,,</span><span style="color: #0000dd;">200</span><span style="color: #000000; font-weight: italic;">,</span><span style="color: #0000dd;">150</span><span style="color: #000000; font-weight: italic;">,,,,,</span><span style="color: #0000dd;">6</span>
<span style="color: #AAAAFF; font-weight: bold;">if</span> <span style="color: #88FF88;">ErrorLevel</span>
<span style="color: #FF00FF; font-style: italic;">GoSub</span> <span style="color: #FF0000; font-style: italic;">Esc</span>
farmx<span style="color: #000000; font-weight: italic;">--</span>
<span style="color: #AAAAFF; font-weight: bold;">return</span>
&nbsp;
<span style="color: #DD0000; font-style: italic;">Getfirstsq:
</span><span style="color: #FF00FF; font-style: italic;">Msgbox</span><span style="color: #000000; font-weight: italic;">,</span> <span style="color: #FF00FF; font-style: italic;">Click</span> on the leftmost field to start with <span style="color: #00FF00; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #008080;">&quot;9 O'clock&quot;</span> position<span style="color: #00FF00; font-weight: bold;">&#41;</span><span style="color: #000000; font-weight: italic;">.</span>
<span style="color: #FF00FF; font-style: italic;">KeyWait</span><span style="color: #000000; font-weight: italic;">,</span> <span style="color: #FF0000; font-style: italic;">LButton</span><span style="color: #000000; font-weight: italic;">,</span> D
<span style="color: #FF00FF; font-style: italic;">KeyWait</span><span style="color: #000000; font-weight: italic;">,</span> <span style="color: #FF0000; font-style: italic;">LButton</span><span style="color: #000000; font-weight: italic;">,</span> D
<span style="color: #FF00FF; font-style: italic;">MouseGetPos</span><span style="color: #000000; font-weight: italic;">,</span> startx<span style="color: #000000; font-weight: italic;">,</span> starty
<span style="color: #AAAAFF; font-weight: bold;">return</span>
&nbsp;
<span style="color: #FF0000; font-style: italic;">Esc</span>:
!<span style="color: #000000; font-weight: italic;">^</span>x::<span style="color: #FF00FF; font-style: italic;">reload</span>
<span style="color: #AAAAFF; font-weight: bold;">Return</span></pre></td></tr></table></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.dopefish.de/archives/562/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: www.dopefish.de @ 2012-02-08 06:56:40 by W3 Total Cache -->
