IARPG-OPS-1 online Intelligence operations standard Fictional missions · neutral authorities

Research archive / Operational logistics and economy systems

Gig Economy and Recruitment System

A robust player-driven gig economy can be built by formalizing “subcontracting” mechanics. For example, veteran players (brokers) accept high-reward missions and then recruit lower-level players to execute them. A dedicated Party Contract interface would let the broker specify the mission, recruit slots, and each participant’s share. Once recruits join, the reward split is locked in escrow so the recruiter cannot…

Gig Economy and Recruitment System

A robust player-driven gig economy can be built by formalizing “subcontracting” mechanics. For example, veteran players (brokers) accept high-reward missions and then recruit lower-level players to execute them. A dedicated Party Contract interface would let the broker specify the mission, recruit slots, and each participant’s share. Once recruits join, the reward split is locked in escrow so the recruiter cannot abscond with all the funds. (This mimics real-world subcontracting: the game holds the money until completion.) In practice, this can be implemented with a C# class such as:

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;

// Represents a shared mission contract with locked-in reward shares.
public class PartyContract {
    [Display(Name = "Mission Name")]
    public string Name { get; set; }

    [Display(Name = "Total Reward")]
    public decimal TotalReward { get; set; }

    [Display(Name = "Participants")]
    public List<PartyMember> Members { get; set; } = new List<PartyMember>();
}

// Represents a party member’s stake in a contract.
public class PartyMember {
    [Display(Name = "Player Name")]
    public string PlayerName { get; set; }

    [Display(Name = "Reward Share (%)")]
    public int PercentageShare { get; set; }
}

Each PartyMember entry includes the recruit’s username and their fixed percentage of the payout. By showing these shares in the UI before the mission starts, the game ensures transparency and prevents fraud. The game server should place the total reward into escrow and release each share on successful completion. (A system like EVE Online’s collateral‐based contracts can inspire this: couriers there must pay a deposit that is returned only after delivery; if delivery fails, the issuer keeps the collateral.) Similarly, the PartyContract could require the recruiter to put up collateral or part of their share up-front. This ensures that if the leader bails, the recruits can claim the remaining funds.

Such a broker/contract system has been discussed in other MMOs. For instance, Star Citizen players note that future designs aim for “player brokers who can assign missions and earn money without leaving a landing zone”. Player feedback emphasizes that shared mission payouts should be pre-determined rather than simply split after the fact. (One suggestion is that everyone who helps should each receive an equal or defined profit share, as established when the group forms.) A Party Contract system would directly address this: recruits see their exact percentage (or flat share) at acceptance time. If someone leaves the group mid-mission, the locked contract can penalize them or allow a grievance mechanic. In summary, the UI should list the mission, the recruiter’s fee or percentage, and each recruit’s share, all [Display(Name=…)] labeled clearly. The interface can also track signature/consent, mission status, and enforce the agreed split on completion.

Delivery Economy: Player vs AI Couriers

The game should support two delivery models: AI couriers (NPC shuttles) and player couriers (independent players). This dual model guarantees baseline logistics while rewarding player skill and risk-taking. Generally:

  • AI Courier: Offers a fixed fee based on item weight and distance (for example, a linear rate per kilometer). AI couriers follow set routes (roads/flight paths) and operate predictably. They never betray or go offline, but they are slow and easy targets for bandits. As one design discussion puts it, “Transport by AI will cost gold… Transport by AI can be protected by [AI] escorts which cost additional gold… Transport by AI will happen in the open world so it can be captured. Goods are lost for the nation’s ecosystem… Only transports between outposts are possible by AI”. In other words, AI deliveries are dependable but vulnerabile: if ambushed, the goods are lost or the contract fails. The AI fee should be strictly priced so the system can always fund itself. This ensures global liquidity: even with few players, someone can always pay the AI to move goods, preventing full gridlock.
  • Player Courier: Real players acting as couriers provide high-speed, high-risk delivery. They can negotiate prices, navigate off-road shortcuts, and defend the cargo. This justifies their much higher fees. However, player couriers carry significant unreliability: they may refuse on the spot, lose the cargo via death or theft, or disappear (offline). The economy should anticipate that player couriers will charge a premium for these risks and their flexibility. As one community post observes, AI shippers “only makes sense… as an option with some risks – Expensive or important goods I would still consider to transport by my own in order not to take a direct course”. In practice, players will prefer human couriers for time-sensitive or high-value items despite the cost, while low-value routine supplies rely on the AI baseline.

Putting these together, the price vs. reliability tradeoff might look like:

  • AI Courier: fixed low-cost fee, guaranteed (but slow) delivery in benign conditions; can be interdicted by bandits.
  • Player Courier: variable high fee (negotiated or bid), very fast, highly flexible (can detour/patrol), but risk of no-show or loss if attacked.

This dynamic drives demand for premium player courier services – a rich player job – without leaving any stranded. (Even during off-peak hours, players can hire the AI service as a fallback, preventing “no deliveries” scenario.)

Delivery Board and Regional Logistics

To avoid a homogenized global market, delivery contracts should be regionally scoped. A global board showing all requests would collapse regional price differences. Instead, use localized courier boards: e.g. only show delivery requests whose origin (or destination) lies within a certain radius or zone of the player’s current location. This fosters local economies and courier guilds. For example, a player in City A would only see delivery jobs starting or ending near City A. If they travel to a distant city, they must use the AI courier or take a long trip themselves.

Regional boards mirror real-world local markets: courier demand in a frontier outpost can command higher fees (due to scarcity), encouraging local players to fill the gap. It also curtails “mega-haul chain”: you can’t easily coordinate continent-wide drops through instant global listings. The radius can be tuned: too small and markets fragment; too large and it feels global. Simulation testing can tune this parameter. For instance, one could run agent-based simulations where random players create requests and recruiters, and measure if any region suffers from deflation (no requests) or excess (unserved demand). The game could also allow cross-region contracts (long-haul) at very high fees, but with correspondingly high AI failure risk.

A practical implementation might use a C# class for delivery requests:

public class DeliveryRequest {
    [Display(Name = "Item")]
    public string ItemName { get; set; }

    [Display(Name = "Weight")]
    public float WeightKg { get; set; }

    [Display(Name = "Origin")]
    public string SourceLocation { get; set; }

    [Display(Name = "Destination")]
    public string Destination { get; set; }

    [Display(Name = "Posting Radius")]
    public float MaxDeliveryDistance { get; set; }  // e.g. only show if courier is within this radius
}

Here the MaxDeliveryDistance field (or a location-based filter) ensures the request appears only to nearby players. In multiplayer, each delivery board server can automatically enforce this filter.

Balancing and Incentives

To keep the economy healthy, risk-reward ratios must be tuned carefully. High-risk missions (e.g. deep-urban deliveries under threat) should pay enough that even after splitting with recruits or paying player couriers, participants profit. Conversely, if low-risk routes pay too much, inflationary money floods. The system should introduce sinks to counter this (as noted in industry research, long-lived MMOs need calibrated sinks/faucets to prevent runaway inflation).

Risk comes from piracy and arrests: player couriers might be ambushed or fail missions (especially fugitives). Similarly, recruiters who act as middlemen expose both themselves and recruits to danger. One might add insurance mechanisms: e.g. recruiters or customers could purchase cargo insurance or bounty insurance. (Analogous to EVE’s concept of insuring ships or cargo – if the courier is killed, insured parties recoup some losses.) Any such systems again require balancing so they do not undermine risk entirely.

Finally, constant simulation and data analysis are crucial. Before launch, run economic simulations with varied population and bot-behavior to see whether any class (AI or player courier) dominates or starves out the other. Adjust pricing formulas and geographic rules accordingly. Monitor early live metrics (money supply, average delivery time, use of AI vs player couriers) and be prepared to tweak: for example, if too many players avoid using AI couriers despite off-peak transport gaps, slightly cut AI fees or increase AI speed. If too many recruits get scammed by fake contracts, introduce stricter escrow enforcement.

Summary: A party-contract UI with locked-in splits prevents broker fraud. Dual courier options ensure constant logistics: AI as a cheap baseline, players as a premium service. Regional boards keep markets local. Together, these systems can create a layered gig economy that rewards cooperation, specialization, and realistic risk-taking, while leveraging lessons from games like EVE Online and community feedback.

Sources: Research on virtual economies (e.g. EVE Online data) and player discussions inform these designs, and design patterns from existing MMOs guide the party contract and delivery board mechanics.

Connected tools and standards

Explore the wider AI ecosystem.