Error Addding CAS post init

  1. 7 years ago

    I am trying to add CAS per the instructions in the script snippets. This is what I have on my trigger:

    ["CAS",[[getMarkerPos "mk_CAS"],markerDir "mk_CAS","B_Heli_Attack_01_F","Phantom 1","",""]] Call ALiVE_fnc_combatSupportAdd;

    However, I get the following error upon activation, this is the RPT dump:

    19:29:45 Error in expression <lect 0;
    _groupID     = _this select 1;
    
    _group setGroupId [_groupID,"GroupColor0>
    19:29:45   Error position: <_group setGroupId [_groupID,"GroupColor0>
    19:29:45   Error Undefined variable in expression: _group
    19:29:45 File x\alive\addons\sup_combatsupport\scripts\NEO_radio\functions\misc\fn_setGroupID.sqf, line 11

    Any devs know anything about this?

  2. your position is nested inside an array

    [getMarkerPos "mk_CAS"][/code] --> [code]getMarkerPos "mk_CAS"
    ["CAS",[getMarkerPos "mk_CAS",markerDir "mk_CAS","B_Heli_Attack_01_F","Phantom 1","",""]] Call ALiVE_fnc_combatSupportAdd;
  3. Thanks! One day I'll figure out what I'm actually doing

 

or Sign Up to reply!