Comment jouer 20,000 Jeux dans Les Aventuriers du Rail sans y jouer réellement

Dans ce guide, je vais vous expliquer ce qui compte pour les réalisations d'un chef d'orchestre et vous présenter 2 les moyens d'atteindre le niveau final 5 réalisation. Unfortunately slow progress and announcement of shutting down the servers pushed me to look for a new approach to unlock these achievements.

What counts for Conductor achievements

With some testing I came to a conclusion that only the following counts for Conductor achievements:

  • Online ranked games,
  • Solo games against bots
  • Tutorial games (sic!)

The progress for offline games (solo and tutorial) is stored locally.

The More Legit way

Oui, tu as bien lu, tutorial games count for the achievement and that’s what we’re gonna use.
Finishing one tutorial game takes ~70 seconds which is almost 4x faster than a game against bot (when farming).
70 seconds x 20,0000 games ~= 389 hours ~= 16 jours

We’ll use AutoHotkey, since going through tutorial 20,000 times manually would be extremely boring.
Below is my script, just make sure to:

  • Run it always on the same PCthe progress is not saved on the cloud/servers,
  • Use AutoHotkey v1.1, the script is not compatible with the newer version. Vous pouvez le télécharger depuis ici.
  • Set your Display resolution to 1920×1080,
  • Run the game in Fullscreen mode,
  • Run the game and the ahk script, then press F2 key to start the script,
  • Stop the script with F3 key before you exit the game.
; This script will keep playing Ticket To Ride

F2::

SetDefaultMouseSpeed,6
WinWaitActive Ticket to Ride
Run()

F3::ExitApp


Run() {
    while true {
        StartNewTutorialGame()
        DrawTicket()
        si (CheckIsStuck()) {
            Redémarrage()
            continuer
        }
        PlayMiamiAtlanta()
        PlayAtlantaWashington()
        DrawSecondAndFourth()
        PlayWashingtonNewYork()
        DrawNewTicket()
        DrawFourthAndDeck()
        PlayNewYorkMontreal()
        DrawNewTicket()
        DrawFourthAndFifth()
        PlayMontrealChicago()
        DrawSecondAndDeck()
        PlayChicagoDuluth()
        DrawSecondAndDeck()
        PlayDuluthDenver()
        ConfirmLastTurn()
        Draw2Deck()
        ClickForwardAndQuit()
    }
}

StartNewTutorialGame()
{
    ;Click Play
    Click, 713, 299
    Dormir, 1000
    ;Click Tutorial
    Click, 1061, 139
    Dormir, 1000
    ;Click Go
    Click, 1000, 839
    Dormir, 1000
}

DrawTicket()
{
    Cliquez sur, 1846, 345
    Dormir, 1000
    Cliquez sur, 1846, 903
    Dormir, 1000
}

PlayMiamiAtlanta()
{
    Cliquez sur, 1000, 959
    Dormir, 500
    Cliquez sur, 1506, 883
    Dormir, 1000
}

PlayAtlantaWashington()
{
    Cliquez sur, 1000, 959
    Dormir, 500
    Cliquez sur, 1496, 653
    Dormir, 1000
}

DrawSecondAndFourth()
{
    Dormir, 2000
    DrawSecond()
    DrawFourth()
}

PlayWashingtonNewYork()
{
    Cliquez sur, 1000, 959
    Dormir, 500
    Cliquez sur, 1566, 405
    Dormir, 1000
}

DrawNewTicket()
{
    Dormir, 1000
    ;Click Go
    Click, 1000, 939
    Dormir, 1000
    ;Click Ticket Pile
    Click, 1846, 100
    Dormir, 1000
    DrawTicket()
    Dormir, 1000
}

DrawFourthAndDeck()
{
    Dormir, 2000
    DrawFourth()
    DrawFromDeck()
}

PlayNewYorkMontreal()
{
    Cliquez sur, 850, 959
    Dormir, 500
    Cliquez sur, 1566, 305
    Dormir, 1000
}

DrawFourthAndFifth()
{
    Dormir, 2000
    DrawFourth()
    DrawFifth()
}

PlayMontrealChicago()
{
    Cliquez sur, 1000, 959
    Dormir, 500
    Cliquez sur, 1366, 305
    Dormir, 1000
}

DrawSecondAndDeck()
{
    Dormir, 1000
    DrawSecond()
    DrawFromDeck()
}

PlayChicagoDuluth()
{
    Cliquez sur, 1000, 959
    Dormir, 500
    Cliquez sur, 1166, 365
    Dormir, 1000
}

PlayDuluthDenver()
{
    Cliquez sur, 1000, 959
    Dormir, 500
    Cliquez sur, 876, 445
    Dormir, 1000
}

Draw2Deck()
{
    Dormir, 1000
    DrawFromDeck()
    DrawFromDeck()
}

ConfirmLastTurn()
{
    Dormir, 2000
    ;Click Go
    Click, 1000, 839
    Dormir, 1000
    Envoyer, {Entrer 100}
}

DrawFirst()
{
    
}

DrawSecond()
{
    Cliquez sur, 1846, 345
    Dormir, 1000
}

DrawThird()
{

}

DrawFourth()
{
    Cliquez sur, 1846, 557
    Dormir, 1000
}

DrawFifth()
{
    Cliquez sur, 1846, 757
    Dormir, 1000
}

DrawFromDeck()
{
    Cliquez sur, 1846, 803
    Dormir, 1000
}

ClickForwardAndQuit()
{
    Dormir, 1000
    ; Forward
    Click, 1446, 957
    Dormir, 1000
    ; Quit
    Click, 877, 42
    Dormir, 1000
}

CheckIsStuck()
{
    PixelGetColor, couleur, 1000, 550, RGB
    if (color = 0xF4EFE1)
    {
        Dormir, 1000
        return true
    }
    autre
    {
        return false
    }
}

Redémarrage()
{
    Dormir, 1000
    Envoyer, {S'échapper 100}
    Dormir, 1000
    Envoyer, {S'échapper 100}
    Dormir, 1000
    Envoyer, {Entrer 100}
}

Feel free to experiment with DefaultMouseSpeed value and Sleep times, but I found above to be the most reliable. Tutorial sometimes get stuck during drawing the ticket, I’ve added some logic to restart it in case of that happening.

The Less Legit way

Si 390 hours is still too much and you feel like a bit of cheating is ok, then you can get there much much faster. The progress for offline games is stored locally in UserDefault.xml file. You can find it in local app data:

%localappdata%\Days of Wonder\Ticket to Ride\UserDefault.xml

Juste:

  1. Open the file in your favourite text editor (when the game is not running),
  2. Trouver <NbSoloGamesPlayed> element <NbSoloGamesPlayed>12345</NbSoloGamesPlayed>
  3. Update the value to 200000 (ou ce que tu veux) et enregistrez le fichier.
  4. Exécutez le jeu, done. (Actually you might need to play one more game, didn’t test that).
Ce guide sur Les Aventuriers du Rail a été écrit par PapaSmok. Vous pouvez visiter la publication originale à partir de ce lien. Si vous avez des inquiétudes concernant ce guide, n'hésitez pas à nous joindre ici.

A propos de l'auteur