Jump to content

questionsfoanswers

Member
  • Content Count

    2
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About questionsfoanswers

  • Rank
    Newbie

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. questionsfoanswers

    coding sector Icons

    i found i can group the icons to a side still not what I wanted- if (side group player == EAST) then { BIS_WL_SECTORICON = ""; //add in "" for icon BIS_WL_sectorMarker = "\A3\Data_F\Flags\flag_CSAT_co.paa"; BIS_WL_baseIcon = "\A3\Data_F\Flags\flag_CSAT_co.paa"; BIS_WL_baseMarker = "\A3\Data_F\Flags\flag_CSAT_co.paa"; } else { BIS_WL_sectorMarker = "\A3\Data_F\Flags\flag_CSAT_co.paa"; BIS_WL_baseIcon = "\A3\Data_F\Flags\flag_CSAT_co.paa"; BIS_WL_baseMarker = "\A3\Data_F\Flags\flag_CSAT_co.paa"; }; if (side group player == west) then { BIS_WL_SECTORICON = ""; //add in "" for icon BIS_WL_sectorMarker = "o_installation"; BIS_WL_baseIcon = "\A3\ui_f\data\map\markers\nato\o_hq.paa"; BIS_WL_baseMarker = "o_hq"; BIS_WL_currentSectoricon_EAST = "\A3\Data_F\Flags\flag_CSAT_co.paa"; //doesnt work } else { BIS_WL_sectorMarker = "b_installation"; BIS_WL_baseIcon = "\A3\ui_f\data\map\markers\nato\b_hq.paa"; BIS_WL_baseMarker = "b_hq"; };
×