コンテンツにスキップ
ライオットビット

ライオットビット

  • 家
  • ニュース
  • ガイド
  • ビデオガイド
  • パッチノート
  • 不正行為を報告する
  • 検索フォームを切り替え

乗車券 – すべての指揮者レベルの実績を解除する方法

ポストする 12/27/202312/27/2023 に PapaSmok コメントはありません の上 乗車券 – すべての指揮者レベルの実績を解除する方法
  • タイトル: 乗車券
  • 発売日: 11月 14, 2023
  • 開発者: Days of Wonder
  • 出版社: Days of Wonder, Twin Sails Interactive

This guide will tell you about Conductor achievements and show you two ways to get the Level 5 成果. Due to slow progress and news about servers shutting down, I had to find a new method to unlock these achievements. But before we continue, please be adviced that reports suggests that using the 2nd method results to some crashing problems. それが起こったら, あなたは私たちを参照することができます Ticket to Ride troubleshooting guide.

What Counts for Conductor Achievements

After doing some testing, I figured out that only the following things matter for Conductor achievements:

  1. Online ranked games,
  2. Solo games against bots,
  3. Tutorial games (strange but true!)

Keep in mind that progress for offline games (both solo and tutorial) is saved only on your device.

方法 1: Unlock Using Bots

はい, you got it right—tutorial games contribute to the achievement, and that’s the strategy we’re going to employ. Completing one tutorial game takes approximately 70 秒, which is nearly four times faster than a game against bots when farming. If you play 20,000 ゲーム, it would take about 389 時間, equivalent to around 16 日.

To make this process less tedious, we’ll use AutoHotkey. Manually going through the tutorial 20,000 times would be extremely boring. Here’s the script; just ensure you:

  1. Always run it on the same PC, as progress isn’t saved on the cloud/servers.
  2. Use AutoHotkey v1.1, as the script isn’t compatible with the newer version (download it from ここ).
  3. Set your display resolution to 1920×1080.
  4. Run the game in fullscreen mode.
  5. Launch the game and the ahk script, then press the F2 key to initiate the script.
  6. Stop the script with the F3 key before exiting 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()
        もし (CheckIsStuck()) {
            再起動()
            続く
        }
        PlayMiamiAtlanta()
        PlayAtlantaWashington()
        DrawSecondAndFourth()
        PlayWashingtonNewYork()
        DrawNewTicket()
        DrawFourthAndDeck()
        PlayNewYorkMontreal()
        DrawNewTicket()
        DrawFourthAndFifth()
        PlayMontrealChicago()
        DrawSecondAndDeck()
        PlayChicagoDuluth()
        DrawSecondAndDeck()
        PlayDuluthDenver()
        ConfirmLastTurn()
        Draw2Deck()
        ClickForwardAndQuit()
    }
}

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

DrawTicket()
{
    クリック, 1846, 345
    寝る, 1000
    クリック, 1846, 903
    寝る, 1000
}

PlayMiamiAtlanta()
{
    クリック, 1000, 959
    寝る, 500
    クリック, 1506, 883
    寝る, 1000
}

PlayAtlantaWashington()
{
    クリック, 1000, 959
    寝る, 500
    クリック, 1496, 653
    寝る, 1000
}

DrawSecondAndFourth()
{
    寝る, 2000
    DrawSecond()
    DrawFourth()
}

PlayWashingtonNewYork()
{
    クリック, 1000, 959
    寝る, 500
    クリック, 1566, 405
    寝る, 1000
}

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

DrawFourthAndDeck()
{
    寝る, 2000
    DrawFourth()
    DrawFromDeck()
}

PlayNewYorkMontreal()
{
    クリック, 850, 959
    寝る, 500
    クリック, 1566, 305
    寝る, 1000
}

DrawFourthAndFifth()
{
    寝る, 2000
    DrawFourth()
    DrawFifth()
}

PlayMontrealChicago()
{
    クリック, 1000, 959
    寝る, 500
    クリック, 1366, 305
    寝る, 1000
}

DrawSecondAndDeck()
{
    寝る, 1000
    DrawSecond()
    DrawFromDeck()
}

PlayChicagoDuluth()
{
    クリック, 1000, 959
    寝る, 500
    クリック, 1166, 365
    寝る, 1000
}

PlayDuluthDenver()
{
    クリック, 1000, 959
    寝る, 500
    クリック, 876, 445
    寝る, 1000
}

Draw2Deck()
{
    寝る, 1000
    DrawFromDeck()
    DrawFromDeck()
}

ConfirmLastTurn()
{
    寝る, 2000
    ;Click Go
    Click, 1000, 839
    寝る, 1000
    送信, {入力 100}
}

DrawFirst()
{
    
}

DrawSecond()
{
    クリック, 1846, 345
    寝る, 1000
}

DrawThird()
{

}

DrawFourth()
{
    クリック, 1846, 557
    寝る, 1000
}

DrawFifth()
{
    クリック, 1846, 757
    寝る, 1000
}

DrawFromDeck()
{
    クリック, 1846, 803
    寝る, 1000
}

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

CheckIsStuck()
{
    PixelGetColor, 色, 1000, 550, RGB
    if (color = 0xF4EFE1)
    {
        寝る, 1000
        return true
    }
    それ以外
    {
        return false
    }
}

再起動()
{
    寝る, 1000
    送信, {逃げる 100}
    寝る, 1000
    送信, {逃げる 100}
    寝る, 1000
    送信, {入力 100}
}

Feel free to try different values for DefaultMouseSpeed and Sleep times, but based on my experience, the ones mentioned above are the most reliable. たまに, the tutorial may get stuck while drawing the ticket. I’ve incorporated some logic into the script to automatically restart it if that happens.

方法 2: Unlock By Editing Save Files

もし 390 hours still feels like too much, and you’re open to a bit of cheating, there’s a way to reach your goal much faster. The progress for offline games is stored locally in the UserDefault.xml file, located in local app data:

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

Here’s what you can do:

  1. Open the file in your favorite text editor (ensure the game is not running).
  2. を探してください <NbSoloGamesPlayed> 要素, このような: <NbSoloGamesPlayed>12345</NbSoloGamesPlayed>.
  3. Update the value to 200000 (or any desired number) and save the file.
  4. Run the game, and you should be done. (You might need to play one more game, but I didn’t test that).

これが今日私たちがこの目的で共有するすべてです 乗車券 ガイド. このガイドは元々、次の者によって作成および執筆されました。 PapaSmok. このガイドを更新できなかった場合, これに従って最新のアップデートを見つけることができます リンク.

このサイトのコンテンツがあなたの権利を侵害していると思われる場合, あなたの知的財産権を含む, お問い合わせフォームを使用してすぐにご連絡ください.
ガイド タグ:乗車券

ポストナビゲーション

前の投稿: ストームワークスのビルドとレスキュー – エンジンの作り方
次の投稿: Yakiniku Simulator – The Master Achievement Guide

返信を残す 返信をキャンセル

あなたのメールアドレスは公開されません. 必須フィールドにマークが付いています *

  • タイトル: 乗車券
  • 発売日: 11月 14, 2023
  • 開発者: Days of Wonder
  • 出版社: Days of Wonder, Twin Sails Interactive

免責事項

引用されたすべてのコンテンツはそれぞれの情報源から得られています. 当社があなたのコンテンツを許可なく使用したと思われる場合, 必ずご連絡ください。真剣に対応させていただきます.
  • 私たちに関しては
  • お問い合わせ
  • プライバシーポリシー
  • 利用規約

著作権 © 2025 ライオットビット.

搭載 プレスブックニュース ワードプレスのテーマ