Faerie Solitaire

Faerie Solitaire

Not enough ratings
Midsummer Dream Challenge script ENG/HUN
By Aryol
Segítség azoknak, akiknek gondot okoz a játékban a Midsummer kihívásban a lila sáv feltöltése 1 perc alatt.

Help those who have a problem with the Midsummer Challenge in the game to fill the purple bar in 1 minute.
   
Award
Favorite
Favorited
Unfavorite
Bevezető
Segítség azoknak, akiknek gondot okoz a játékban a Midsummer kihívásban a lila sáv feltöltése 1 perc alatt.
Csak a Midsummer Dream pályához jó!
Ez egy AutoHotkey script, tehát előbb azt kell feltelepíteni. (www.autohotkey.com)
A használatát megnézheted a videón.

Help those who have a problem with the Midsummer Challenge in the game to fill the purple bar in 1 minute.
Only for Midsummer Dream level!
This is an AutoHotkey script, so you must install it first. (www.autohotkey.com)
You can watch the video on how you use it.
Video
Script
; This script expects to be started on the first level of Challange - Midsummer Dream ; The objectives window will automatically be closed SetDefaultMouseSpeed,0 WinWaitActive, Faerie Solitaire™ by Subsoap™ ; Alternative solution: wait 10 seconds before starting the script: ;Sleep, 10000 Run() ; To stop the application at any time, simply press the Escape button Escape::ExitApp ;Run the whole application indefinitely Run() { RemoveObjectivesWindow() while true { ; Go through the first 12 deck cards only, more is usually a waste of time Loop 12 { ClickAllCardsSeveralTimes() GetNewCard() } ClickAllCardsSeveralTimes() ; Needed only for when we've had a perfect game ContinueFinishedGame() RemoveObjectivesWindow() RestartGame() } } ; Go to menu, Restart Game, Confirm, Wait for it to start RestartGame() { Click,127,582 Sleep,100 Click,740,562 Sleep,50 Click,329,409 Sleep,1500 RemoveObjectivesWindow() } ClickAllCardsSeveralTimes() { ; We try clicking all cards 4 times - arbitrary number that seems to work Loop 4 { ClickAllCards() } } ; Close the objectives window ; Not needed if you've disabled this window in the settings RemoveObjectivesWindow() { Click,408,418 Sleep,400 } ; Click all the cards, starting from top left to bottom right ClickAllCards() { Click,110,380 Click,180,380 Click,240,380 Click,320,380 Click,400,380 Click,480,380 Click,550,380 Click,620,380 Click,680,380 Click,260,315 Click,320,315 Click,400,315 Click,490,315 Click,550,315 Click,380,240 } ; Get a new card from the stack GetNewCard() { Click,307,557 Sleep,300 } ; Press the continue button if we've finished the game ContinueFinishedGame() { ; Long wait to cope with a possible perfect game animation Sleep,4000 Click,407,535 Sleep,1500 }
Important! Fontos!
A script 1 percig fut, majd újraindítja előlről a pályát! Ha feltelt a lila sáv, akkor nyomd meg az ESC gombot, hogy megálljon a script!
Csak az első pályához használható!

The script run for 1 minute and then restart the level from the beginning! When the purple bar is fully filled, press the ESC button to stop the script!
Only for the first level!