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/sqfExtensions 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.| Extension | Source | Strength | SWH |
|---|---|---|---|
.sqf | linguist | primary | 1.6M files |
.sqf | wikidata | primary | 1.6M files |
.hqf | linguist | secondary | 32 files |
Related languages
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
// 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.)