SQF Highlighter – Extension
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) |
Release Date | 2022-03-12: First upload |
Project Start | 2022-03-08: Project start |
This extension highlights and automatically links SQF commands and functions.
Installation
- Unzip the directory to wiki
/extensions /SQFHighlighter - Add
wfLoadExtension('SQFHighlighter');
to LocalSettings.php - There are no settings -the extension only allows relative links from community.bistudio.com and community.bohemia.net, any other host will create full path links
Usage
Using <sqf> tags will auto-generate syntax highlighting and links to the pages.
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> |
|
<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> |