Faerie Solitaire

Faerie Solitaire

30 个评价
Egg farming guides combined.
由 Darth[SW] 制作
I took parts of 2 of the other egg farming guides and combined them to come up with a decent way to farm eggs.
   
奖励
收藏
已收藏
取消收藏
Step 1
Follow the "Enlighten Me" section of SyntheX's guide to replace all of the Fae Dream hands with the first level of Red Reef.

SyntheX's Guide

This is a very good guide that gave me the idea of combining the 2 guides.
Step 2
Follow the Autohotkey guide by Glodenox. When you come to pasting the code into the Autohotkey script use this code instead of Glodenox's.

Glodenox's Autohotkey Guide

SetDefaultMouseSpeed,0 WinWaitActive Faerie Solitaire™ by Subsoap™ Games © 2010 Run() Escape::ExitApp ;Run the whole application indefinitely Run() { Click,280,550 Sleep,100 Click,400,370 Sleep,1000 while true { Click,140,190 Sleep,2000 RemoveObjectivesWindow() Loop 9 { Loop 22 { ClickAllCardsSeveralTimes() GetNewCard() } ClickAllCardsSeveralTimes() ContinueFinishedGame() } Sleep,2000 } } ClickAllCardsSeveralTimes() { ; We try clicking all cards 4 times - arbitrary number that seems to work Loop 4 { ClickAllCards() } } RemoveObjectivesWindow() { Click,408,418 Sleep,400 } ClickAllCards() { Click,101,324 Click,101,284 Click,183,241 Click,274,260 Click,443,241 Click,611,241 Click,697,241 Click,189,394 Click,270,329 Click,352,356 Click,443,386 Click,528,347 Click,528,317 Click,609,383 Click,705,381 } GetNewCard() { Click,307,557 Sleep,300 } ContinueFinishedGame() { Sleep,4000 Click,407,525 Sleep,1500 }

This is another very good guide and it is what I used to get all but 1 egg in one night. The only thing I didn't like about it was that it constantly restarted the same level. I would have preferred it to play through to completion so I came up with the idea of combining it with the other guide and editing the code to play through all 9 hands.
Part 3
Start Faerie Solitaire in windowed mode. Once the game is at the main menu run AutoHotKey and the rest is a matter of waiting. If this guide helps you out please thank the authors of the other 2 guides I am just passing on what I am using to evolve my last few pets and to get the last egg.
23 条留言
Mrkvus 2018 年 10 月 17 日 下午 1:01 
Thank you for the guide. Would you be so kind to rewrite it for the Remastered version of the game? In this version it is not working correctly.
Darth[SW]  [作者] 2016 年 2 月 10 日 上午 1:24 
It doesn't need to be after it. The script loops back to the start where it already is located. Thus it is already after it.
MakapoH 2016 年 2 月 10 日 上午 1:18 
You forgot to add "RemoveObjectivesWindow()" after "ContinueFinishedGame()" in loop. But thx it saved me a lot of time.
Darth[SW]  [作者] 2015 年 11 月 20 日 下午 4:44 
Change the sleep values in this part of the script. 1000 = 1 second. Try doubling them and if that doesn't work adjust other sleep values as well.

ContinueFinishedGame() {
Sleep,4000
Click,407,525
Sleep,1500
gabi_h 2015 年 11 月 20 日 下午 1:53 
And how do i do that?
Darth[SW]  [作者] 2015 年 11 月 20 日 下午 1:50 
Increase the wait times it sounds like your game loads slower than the wait time for the clicks between hands. I ran this script for over a week to test it when I wrote it.
gabi_h 2015 年 11 月 20 日 上午 9:13 
Your script does not work! After the first hand it fails to initiate the second hand. All its doing is random clicks that do absolutely nothing.
Miszor 2015 年 4 月 4 日 上午 8:01 
ok
Batprince 2015 年 4 月 1 日 上午 3:33 
That's ok
Darth[SW]  [作者] 2015 年 4 月 1 日 上午 1:13 
The script is meant to start as soon as you make faerie solitaire the active window by clicking on it or alt tabbing on it so that part is right. I wrote this over a year ago and am not sure what else I can suggest to help you out sorry.