CombinedArmsGaming / F3_CA

Combined Arms version of the F3 Framework
7 stars 9 forks source link

CA Platoon Hierarchy comments are in wrong order #78

Closed thepaullee closed 3 years ago

thepaullee commented 3 years ago

from ca_platoonSetup.sqf and fn_setupGroup.sqf

  • 0: Side (Side): This is set automatically, if you need to set up for multiple sides copy the template and name it _westhierarchy, _easthierachy etc. as needed and change the call below Every element below this is optional, but reccomended to set.
    • 1: Superior (String): The groupid of the group that ranks above it in the hierarchy, if equal to groupid, then the group is an independent group or its own platoon.
    • 2: Groupid (String): The groupid that is set in the editor field callsign.
[_side,"CO","CO",16,[1,3],"ColorYellow",3, true, "b_hq"] spawn ca_fnc_setupGroup; // Radio Nets: LR CMD1 and LR FAC

[_side,"ASL","CO",1,[1,4],"ColorRed",5, true, "b_hq"] spawn ca_fnc_setupGroup; // Radio Nets: LR CMD1 and LR ALPHA
[_side,"A1","ASL",2,[4],"ColorRed",2] spawn ca_fnc_setupGroup; // Radio Nets: LR ALPHA

Unless im big dum 1 and 2 index are implemented backwards than the comments suggest