In script, function, mission and config files, you can use the default headers.
- Go into Preferences >> Profile, then, edit these values:
- TM_FULLNAME:
This is your full name or nickname, as you wish - TM_EMAIL:
Your email address or Twitter or website
- TM_FULLNAME:
- Create your file and save it where you want
- Type header, then hit key [Tab]
Function header will insert that in your file:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
scriptName "fileName"; /* Author: Tom_48_97 Description: Describe your function Parameter(s): #0 OBJECT - Description Returns: BOOL - TRUE when done */ |
and script header, this:
1 2 3 4 5 6 7 8 |
scriptName "fileName"; /*---------------------------------------------------------------- file: fileName.sqf ================== Author: Tom_48_97 <@Tom_48_97> Description: ----------------------------------------------------------------*/ #define __filename "fileName.sqf" |