Delivery Commission Pickup

Back: Documentation home / README

Overview

Automatically grabs commissions in 「Region Building / Warehouse Node / Delivery Commission List」, filtering for high-value commissions that match the criteria and accepting them automatically.


Prerequisites

Staying on the game main screen is enough. After the task starts it will automatically:

  1. Press Y to open Region Building.
  2. Click 「Warehouse Node」.
  3. Click 「Delivery Commission List」.

Then it enters the automatic filter-and-accept flow and exits automatically after a successful accept.


Options and configuration

Accept Valley tickets

Whether to grab 「Valley 4」 delivery commissions.

Default: off


Accept Valley tickets minimum amount (10k)

The minimum reward amount (10k) for Valley-ticket commissions; commissions below this are not accepted.

Default: 5.0


Accept Valley tickets maximum amount (10k)

The maximum reward amount (10k) for Valley-ticket commissions; commissions above this are not accepted (to prevent OCR misreads from accepting abnormal commissions).

Default: 40.0


Accept Wuling tickets

Whether to grab 「Wuling」 delivery commissions.

Default: on


Accept Wuling tickets minimum amount (10k)

The minimum reward amount (10k) for Wuling-ticket commissions.

Default: 5.0


Accept Wuling tickets maximum amount (10k)

The maximum reward amount (10k) for Wuling-ticket commissions.

Default: 15.0


Workflow

flowchart TD
    A[Start task] --> B[Press Y to open Region Building]
    B --> C[Click Warehouse Node]
    C --> D[Open Delivery Commission List]
    D --> E{Wuling tickets enabled}
    E -->|Yes| F[Switch to Wuling list]
    E -->|No| G{Valley tickets enabled}
    G -->|Yes| H[Switch to Valley 4 list]
    G -->|No| Z[No ticket type enabled, exit]
    F --> I[OCR read amounts and buttons]
    H --> I
    I --> J[Filter by amount range]
    J --> K[Match by ticket-type icon]
    K --> L{Target commission found}
    L -->|Yes| M[Click accept and wait for prompt]
    M --> N[Exit after successful accept]
    L -->|No| O[Scroll the list]
    O --> P{Recorded refresh button exists}
    P -->|Yes| Q[Click refresh after 5.6s interval]
    P -->|No| R[Wait 1 second and retry]
    R --> I
    Q --> I

Notes

  • This task inherits TriggerTask but is registered in onetime_tasks as a one-time grab flow started manually by the user. It exits automatically after a successful accept and does not deliver goods (use Auto Delivery for delivery).
  • When both ticket types are enabled, the task first enters the Wuling list but matches both ticket icons within the current list; it does not switch to the Valley 4 list to keep searching. It only enters the Valley 4 list when only Valley tickets are enabled.
  • The list scrolls once per round, and the scroll direction reverses after a refresh; the refresh click interval is at least 5.6 seconds.
  • If the refresh button cannot be located, it retries every second and does not auto-exit after 10 cumulative failures; stop the task manually if needed.
  • If the program reports 「insufficient permissions」, run it as administrator.

Related documents: Auto Delivery / Delivery Area Maintenance Workflow

View source on GitHub ↗ · Page generated: Aug 10, 2026