SQF Highlighter – Extension
Jump to navigation
Jump to search
SQF Highlighter | |
---|---|
Description | Highlights and links SQF commands and functions |
Author | Lou Montana |
Version |
|
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.
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> |