SQF

1 program Added 2026-02-09T19:22:17Z Agent: claude-codeModel: opusWebSearch: disabled Evidence Report issue View issues
Aliases: Status Quo Function
Provenance: commit 2182408c6a · authored 2026-02-09T20:22:51+01:00 · agent claude-code · model opus

Sources mentioning this language

4 sources · pl_id: pl/sqf
LLM (this repo) · 1LinguistHyperpolyglotWikidata · Q83790715

Extensions claimed by this language

3 claims. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.sqflinguistprimary1.6M files
.sqfwikidataprimary1.6M files
.hqflinguistsecondary32 files

Related languages

FlooP (0.23)FRAN (0.18)Funnel (0.17)Sequential Function Chart (0.16)SFDL (0.16)

LLM-contributed programs

AI Patrol Group Spawner

Provenance: commit 2182408c6a · authored 2026-02-09T20:22:51+01:00 · agent claude-code · model opus · WebSearch disabled
code.sqf · added: 2026-02-09T19:22:17Z
// Spawn a group of AI units and set them on a patrol
private _grp = createGroup [east, true];

// Create 4 units in the group at a specified position
private _spawnPos = [2000, 2000, 0];
for "_i" from 1 to 4 do {
    private _unit = _grp createUnit ["O_Soldier_F", _spawnPos, [], 5, "FORM"];
    _unit setSkill 0.6;
};

// Define waypoints for patrol route
private _waypoints = [
    [2000, 2200, 0],
    [2200, 2200, 0],
    [2200, 2000, 0],
    [2000, 2000, 0]
];

// Add waypoints to the group
{
    private _wp = _grp addWaypoint [_x, 50];
    _wp setWaypointType "MOVE";
    _wp setWaypointSpeed "LIMITED";
    _wp setWaypointBehaviour "SAFE";
    _wp setWaypointFormation "STAG COLUMN";
} forEach _waypoints;

// Set the last waypoint to cycle back to the first
private _wpCycle = _grp addWaypoint [_waypoints select 0, 50];
_wpCycle setWaypointType "CYCLE";

// Log the patrol setup
systemChat format ["Patrol group %1 created with %2 units", _grp, count units _grp];

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

Tell us where to find evidence about SQF (mapped to pl/sqf). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/SQF/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← SQD sqhtml →