Lou Montana/Sandbox – User
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 13: | Line 13: | ||
* PRIVATE (or params) your variables | * PRIVATE (or params) your variables | ||
* Use #define SOME_CONST for constant values instead of variables | * Use #define SOME_CONST for constant values instead of variables | ||
* Use sqf commands instead of BIS_fnc_xxxxx if possible | |||
;Also: | ;Also: |
Revision as of 17:50, 5 September 2019
- Best practices
- Make it readable
- var names
- format, indentation, no one-line, spacing, line returns
- Be consistent (space/tab indentation, (camel)casing, K&R / Allman style indenting. See Indentation Styles)
- Don't duplicate, make functions
- prefix your public variables with your tag
- PRIVATE (or params) your variables
- Use #define SOME_CONST for constant values instead of variables
- Use sqf commands instead of BIS_fnc_xxxxx if possible
- Also
- don't steal code and pretend it's yours
- don't try to obfuscate your code: it's considered rude, especially since you learnt from others
- have fun