SQF Highlighter – Extension

From Bohemia Interactive Community
Revision as of 21:29, 14 March 2022 by Lou Montana (talk | contribs) (Page creation)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
SQF Highlighter
Description Highlights and links SQF commands and functions
Author Lou Montana
Version
  • 0.5b (continuous updates as of 2022-03-14)
  • 2022-03-12: First upload
  • 2022-03-08: Project start

Installation

  • Unzip the directory to wiki/extensions/SQFHighlighter
  • Add wfLoadExtension('SQFHighlighter'); to LocalSettings.php
  • There are no settings.


Usage

Using <sqf> tags will auto-generate syntax highlighting and links to the pages.

Examples
Code Result
<sqf/>
-no SQF code provided-
<sqf></sqf>
-no SQF code provided-
<sqf>hint "It Works!";</sqf>
hint "It Works!";
<sqf>
// your code here
hint "good!";
</sqf>
// your code here hint "good!";
<sqf>
#define FADE_IN 3

if (not alive player) then
{
	hint "You are dead";
	cutText ["", "Black", playerRespawnTime];
};

waitUntil { alive player };

sleep 3;
cutText ["Welcome!", "Black in", FADE_IN];
</sqf>
#define FADE_IN 3 if (not alive player) then { hint "You are dead"; cutText ["", "Black", playerRespawnTime]; }; waitUntil { alive player }; sleep 3; cutText ["Welcome!", "Black in", FADE_IN];