Jump to content

Search the Community

Showing results for tags 'cfgRespawnLoadout'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • BOHEMIA INTERACTIVE
    • BOHEMIA INTERACTIVE - NEWS
    • BOHEMIA INTERACTIVE - JOBS
    • BOHEMIA INTERACTIVE - GENERAL
  • FEATURED GAMES
    • Arma Reforger
    • Vigor
    • DAYZ
    • ARMA 3
    • ARMA 2
    • YLANDS
  • MOBILE GAMES
    • ARMA MOBILE OPS
    • MINIDAYZ
    • ARMA TACTICS
    • ARMA 2 FIRING RANGE
  • BI MILITARY GAMES FORUMS
  • BOHEMIA INCUBATOR
    • PROJECT LUCIE
  • OTHER BOHEMIA GAMES
    • ARGO
    • TAKE ON MARS
    • TAKE ON HELICOPTERS
    • CARRIER COMMAND: GAEA MISSION
    • ARMA: ARMED ASSAULT / COMBAT OPERATIONS
    • ARMA: COLD WAR ASSAULT / OPERATION FLASHPOINT
    • IRON FRONT: LIBERATION 1944
    • BACK CATALOGUE
  • OFFTOPIC
    • OFFTOPIC
  • Die Hard OFP Lovers' Club's Topics
  • ArmA Toolmakers's Releases
  • ArmA Toolmakers's General
  • Japan in Arma's Topics
  • Arma 3 Photography Club's Discussions
  • The Order Of the Wolfs- Unit's Topics
  • 4th Infantry Brigade's Recruitment
  • 11th Marine Expeditionary Unit OFFICIAL | 11th MEU(SOC)'s 11th MEU(SOC) Recruitment Status - OPEN
  • Legion latina semper fi's New Server Legion latina next wick
  • Legion latina semper fi's https://www.facebook.com/groups/legionlatinasemperfidelis/
  • Legion latina semper fi's Server VPN LEGION LATINA SEMPER FI
  • Team Nederland's Welkom bij ons club
  • Team Nederland's Facebook
  • [H.S.O.] Hellenic Special Operations's Infos
  • BI Forum Ravage Club's Forum Topics
  • Exilemod (Unofficial)'s General Discussion
  • Exilemod (Unofficial)'s Scripts
  • Exilemod (Unofficial)'s Addons
  • Exilemod (Unofficial)'s Problems & Bugs
  • Exilemod (Unofficial)'s Exilemod Tweaks
  • Exilemod (Unofficial)'s Promotion
  • Exilemod (Unofficial)'s Maps - Mission Files
  • TKO's Weferlingen
  • TKO's Green Sea
  • TKO's Rules
  • TKO's Changelog
  • TKO's Help
  • TKO's What we Need
  • TKO's Cam Lao Nam
  • MSOF A3 Wasteland's Server Game Play Features
  • MSOF A3 Wasteland's Problems & Bugs
  • MSOF A3 Wasteland's Maps in Rotation
  • SOS GAMING's Server
  • SOS GAMING's News on Server
  • SOS GAMING's Regeln / Rules
  • SOS GAMING's Ghost-Town-Team
  • SOS GAMING's Steuerung / Keys
  • SOS GAMING's Div. Infos
  • SOS GAMING's Small Talk
  • NAMC's Topics
  • NTC's New Members
  • NTC's Enlisted Members
  • The STATE's Topics
  • CREATEANDGENERATION's Intoduction
  • CREATEANDGENERATION's HAVEN EMPIRE (NEW CREATORS COMMUNITY)
  • HavenEmpire Gaming community's HavenEmpire Gaming community
  • Polska_Rodzina's Polska_Rodzina-ARGO
  • Carrier command tips and tricks's Tips and tricks
  • Carrier command tips and tricks's Talk about carrier command
  • ItzChaos's Community's Socials
  • Photography club of Arma 3's Epic photos
  • Photography club of Arma 3's Team pics
  • Photography club of Arma 3's Vehicle pics
  • Photography club of Arma 3's Other
  • Spartan Gamers DayZ's Baneados del Servidor
  • Warriors Waging War's Vigor
  • Tales of the Republic's Republic News
  • Operazioni Arma Italia's CHI SIAMO
  • [GER] HUSKY-GAMING.CC / Roleplay at its best!'s Starte deine Reise noch heute!
  • empire brotherhood occult +2349082603448's empire money +2349082603448
  • NET88's Twitter

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Yahoo


Jabber (xmpp)


Skype


Biography


Twitter


Google+


Youtube


Vimeo


Xfire


Steam url id


Raptr


MySpace


Linkedin


Tumblr


Flickr


XBOX Live


PlayStation PSN


Origin


PlayFire


SoundCloud


Pinterest


Reddit


Twitch.Tv


Ustream.Tv


Duxter


Instagram


Location


Interests


Interests


Occupation

Found 1 result

  1. Hi all, I have been creating multiplayer missions for a group I play with for the last two years or so. Over that time we have developed bit by bit a template for creating missions, makes it much faster and easier for all the guys. However recently (as of the end of last year), I have run into a little issue with the template we were using. Our loadout script (which uses the BIS cfgRespawnLoadout) seems to be causing our JIP members to be infinitely stuck in the Loading screen for the mission. All members that join before 5 minutes or so do not have this issue. Our template as follows where we located the issue: initPlayerLocal.sqf //Call the Loadouts [] execVM "Scripts\PlayerLoadouts.sqf"; PlayerLoadouts.sqf //Declare Player Loadouts if (player isKindOf "B_recon_F") then { [player,"SAEF_Rifleman_M4"] call BIS_fnc_addRespawnInventory; [player,"SAEF_Rifleman_M16"] call BIS_fnc_addRespawnInventory; [player,"SAEF_Rifleman_L85"] call BIS_fnc_addRespawnInventory; }; if (player isKindOf "B_recon_LAT_F") then { [player,"SAEF_AT_M4"] call BIS_fnc_addRespawnInventory; [player,"SAEF_AT_M16"] call BIS_fnc_addRespawnInventory; [player,"SAEF_AT_L85"] call BIS_fnc_addRespawnInventory; }; if (player isKindOf "B_recon_medic_F") then { [player,"SAEF_Medic_M4"] call BIS_fnc_addRespawnInventory; [player,"SAEF_Medic_M16"] call BIS_fnc_addRespawnInventory; [player,"SAEF_Medic_L85"] call BIS_fnc_addRespawnInventory; }; if (player isKindOf "B_recon_JTAC_F") then { [player,"SAEF_LMG"] call BIS_fnc_addRespawnInventory; }; if (player isKindOf "B_recon_TL_F") then { [player,"SAEF_Grenadier_M4"] call BIS_fnc_addRespawnInventory; [player,"SAEF_Grenadier_M16"] call BIS_fnc_addRespawnInventory; [player,"SAEF_Grenadier_L85"] call BIS_fnc_addRespawnInventory; }; if (player isKindOf "B_recon_exp_F") then { [player,"SAEF_Engineer_M4"] call BIS_fnc_addRespawnInventory; [player,"SAEF_Engineer_M16"] call BIS_fnc_addRespawnInventory; [player,"SAEF_Engineer_L85"] call BIS_fnc_addRespawnInventory; }; if (player isKindOf "B_Recon_Sharpshooter_F") then { [player,"SAEF_AmmoBearer_M4"] call BIS_fnc_addRespawnInventory; [player,"SAEF_AmmoBearer_M16"] call BIS_fnc_addRespawnInventory; [player,"SAEF_AmmoBearer_L85"] call BIS_fnc_addRespawnInventory; }; if (player isKindOf "B_recon_M_F") then { [player,"SAEF_Marksman"] call BIS_fnc_addRespawnInventory; }; description.ext respawn = 3; respawnDelay = 5; //respawnVehicleDelay = 60; respawnTemplates[] = {"MenuInventory","MenuPosition"}; onLoadIntroTime=0; onLoadMissionTime=0; disabledAI = 1; debriefing = 1; showGPS = 1; author = "******"; onLoadName = "******"; onLoadMission = "******"; overviewPicture = "******.jpg"; class Header { gameType = COOP; minPlayers = 1; maxPlayers = 14; }; class CfgRespawnInventory { class SAEF_Rifleman_M4 { displayName = "Rifleman (M4)"; // Name visible in the menu //icon = "\Images\gl_ca.paa"; // Icon displayed next to the name // Condition must return true in order for the loadout to be displayed in the menu. // Evaluated when the menu is opened. show = "side group _this == west"; // Loadout definition, uses same entries as CfgVehicles classes weapons[] = { "rhs_weap_m4_carryhandle_pmag", "RH_m9" }; magazines[] = { "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell", "Chemlight_green", "Chemlight_green" }; items[] = { "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_EarPlugs" }; linkedItems[] = { "rhsusf_acc_nt4_black", "rhsusf_acc_anpeq15_light", "rhsusf_acc_compm4", "RH_m9qd", "RH_X300", "SA_PlateCarrier_Green1", "SA_Helmet_Green", "Rus_Shemag", "NVGoggles_INDEP", "ItemMap", "ItemGPS", "ItemCompass", "ItemWatch", "tf_anprc152_2" }; uniformClass = "SA_W_Uniform"; }; class SAEF_Rifleman_M16 { displayName = "Rifleman (M16)"; // Name visible in the menu //icon = "\Images\gl_ca.paa"; // Icon displayed next to the name // Condition must return true in order for the loadout to be displayed in the menu. // Evaluated when the menu is opened. show = "side group _this == west"; // Loadout definition, uses same entries as CfgVehicles classes weapons[] = { "rhs_weap_m16a4_carryhandle_pmag", "RH_m9" }; magazines[] = { "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell", "Chemlight_green", "Chemlight_green" }; items[] = { "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_EarPlugs" }; linkedItems[] = { "rhsusf_acc_nt4_black", "rhsusf_acc_anpeq15_light", "rhsusf_acc_compm4", "RH_m9qd", "RH_X300", "SA_PlateCarrier_Green1", "SA_Helmet_Green", "Rus_Shemag", "NVGoggles_INDEP", "ItemMap", "ItemGPS", "ItemCompass", "ItemWatch", "tf_anprc152_2" }; uniformClass = "SA_W_Uniform"; }; class SAEF_Rifleman_L85 { displayName = "Rifleman (L85)"; // Name visible in the menu //icon = "\Images\gl_ca.paa"; // Icon displayed next to the name // Condition must return true in order for the loadout to be displayed in the menu. // Evaluated when the menu is opened. show = "side group _this == west"; // Loadout definition, uses same entries as CfgVehicles classes weapons[] = { "SMA_L85RISafg", "RH_m9" }; magazines[] = { "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell", "Chemlight_green", "Chemlight_green" }; items[] = { "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_EarPlugs" }; linkedItems[] = { "SMA_supp2BOD_556", "rhsusf_acc_anpeq15_light", "rhsusf_acc_compm4", "RH_m9qd", "RH_X300", "SA_PlateCarrier_Green1", "SA_Helmet_Green", "Rus_Shemag", "NVGoggles_INDEP", "ItemMap", "ItemGPS", "ItemCompass", "ItemWatch", "tf_anprc152_2" }; uniformClass = "SA_W_Uniform"; }; class SAEF_AT_M4 { displayName = "Anti-Tank (M4)"; // Name visible in the menu //icon = "\Images\gl_ca.paa"; // Icon displayed next to the name // Condition must return true in order for the loadout to be displayed in the menu. // Evaluated when the menu is opened. show = "side group _this == west"; // Loadout definition, uses same entries as CfgVehicles classes weapons[] = { "rhs_weap_m4_carryhandle_pmag", "RH_m9", "launch_I_Titan_short_F" }; magazines[] = { "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell", "Chemlight_green", "Chemlight_green", "Titan_AT", "Titan_AT", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell" }; items[] = { "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_EarPlugs" }; linkedItems[] = { "rhsusf_acc_nt4_black", "rhsusf_acc_anpeq15_light", "rhsusf_acc_eotech_552", "RH_m9qd", "RH_X300", "SA_PlateCarrier_Green2", "SA_Helmet_Green", "Rus_Shemag", "NVGoggles_INDEP", "ItemMap", "ItemGPS", "ItemCompass", "ItemWatch", "tf_anprc152_2" }; uniformClass = "SA_W_Uniform"; backpack = "SA_Backpack_Fast_Olive"; }; class SAEF_AT_M16 { displayName = "Anti-Tank (M16)"; // Name visible in the menu //icon = "\Images\gl_ca.paa"; // Icon displayed next to the name // Condition must return true in order for the loadout to be displayed in the menu. // Evaluated when the menu is opened. show = "side group _this == west"; // Loadout definition, uses same entries as CfgVehicles classes weapons[] = { "rhs_weap_m16a4_carryhandle_pmag", "RH_m9", "launch_I_Titan_short_F" }; magazines[] = { "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell", "Chemlight_green", "Chemlight_green", "Titan_AT", "Titan_AT", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell" }; items[] = { "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_EarPlugs" }; linkedItems[] = { "rhsusf_acc_nt4_black", "rhsusf_acc_anpeq15_light", "rhsusf_acc_eotech_552", "RH_m9qd", "RH_X300", "SA_PlateCarrier_Green2", "SA_Helmet_Green", "Rus_Shemag", "NVGoggles_INDEP", "ItemMap", "ItemGPS", "ItemCompass", "ItemWatch", "tf_anprc152_2" }; uniformClass = "SA_W_Uniform"; backpack = "SA_Backpack_Fast_Olive"; }; class SAEF_AT_L85 { displayName = "Anti-Tank (L85)"; // Name visible in the menu //icon = "\Images\gl_ca.paa"; // Icon displayed next to the name // Condition must return true in order for the loadout to be displayed in the menu. // Evaluated when the menu is opened. show = "side group _this == west"; // Loadout definition, uses same entries as CfgVehicles classes weapons[] = { "SMA_L85RISafg", "RH_m9", "launch_I_Titan_short_F" }; magazines[] = { "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell", "Chemlight_green", "Chemlight_green", "Titan_AT", "Titan_AT", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell" }; items[] = { "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_EarPlugs" }; linkedItems[] = { "SMA_supp2BOD_556", "rhsusf_acc_anpeq15_light", "rhsusf_acc_eotech_552", "RH_m9qd", "RH_X300", "SA_PlateCarrier_Green2", "SA_Helmet_Green", "Rus_Shemag", "NVGoggles_INDEP", "ItemMap", "ItemGPS", "ItemCompass", "ItemWatch", "tf_anprc152_2" }; uniformClass = "SA_W_Uniform"; backpack = "SA_Backpack_Fast_Olive"; }; class SAEF_Medic_M4 { displayName = "Medic (M4)"; // Name visible in the menu //icon = "\Images\gl_ca.paa"; // Icon displayed next to the name // Condition must return true in order for the loadout to be displayed in the menu. // Evaluated when the menu is opened. show = "side group _this == west"; // Loadout definition, uses same entries as CfgVehicles classes weapons[] = { "rhs_weap_m4_carryhandle_pmag", "RH_m9" }; magazines[] = { "SmokeShell", "SmokeShell", "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell", "Chemlight_green", "Chemlight_green", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red" }; items[] = { "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_EarPlugs" }; linkedItems[] = { "rhsusf_acc_nt4_black", "rhsusf_acc_anpeq15_light", "rhsusf_acc_compm4", "RH_m9qd", "RH_X300", "SA_PlateCarrier_Green2", "SA_Helmet_Green", "Rus_Shemag", "NVGoggles_INDEP", "ItemMap", "ItemGPS", "ItemCompass", "ItemWatch", "tf_anprc152_2" }; uniformClass = "SA_W_Uniform"; backpack = "SA_Backpack_Fast_Olive"; }; class SAEF_Medic_M16 { displayName = "Medic (M16)"; // Name visible in the menu //icon = "\Images\gl_ca.paa"; // Icon displayed next to the name // Condition must return true in order for the loadout to be displayed in the menu. // Evaluated when the menu is opened. show = "side group _this == west"; // Loadout definition, uses same entries as CfgVehicles classes weapons[] = { "rhs_weap_m16a4_carryhandle_pmag", "RH_m9" }; magazines[] = { "SmokeShell", "SmokeShell", "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell", "Chemlight_green", "Chemlight_green", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red" }; items[] = { "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_EarPlugs" }; linkedItems[] = { "rhsusf_acc_nt4_black", "rhsusf_acc_anpeq15_light", "rhsusf_acc_compm4", "RH_m9qd", "RH_X300", "SA_PlateCarrier_Green2", "SA_Helmet_Green", "Rus_Shemag", "NVGoggles_INDEP", "ItemMap", "ItemGPS", "ItemCompass", "ItemWatch", "tf_anprc152_2" }; uniformClass = "SA_W_Uniform"; backpack = "SA_Backpack_Fast_Olive"; }; class SAEF_Medic_L85 { displayName = "Medic (L85)"; // Name visible in the menu //icon = "\Images\gl_ca.paa"; // Icon displayed next to the name // Condition must return true in order for the loadout to be displayed in the menu. // Evaluated when the menu is opened. show = "side group _this == west"; // Loadout definition, uses same entries as CfgVehicles classes weapons[] = { "SMA_L85RISafg", "RH_m9" }; magazines[] = { "SmokeShell", "SmokeShell", "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell", "Chemlight_green", "Chemlight_green", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "SmokeShell", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red" }; items[] = { "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_EarPlugs" }; linkedItems[] = { "SMA_supp2BOD_556", "rhsusf_acc_anpeq15_light", "rhsusf_acc_compm4", "RH_m9qd", "RH_X300", "SA_PlateCarrier_Green2", "SA_Helmet_Green", "Rus_Shemag", "NVGoggles_INDEP", "ItemMap", "ItemGPS", "ItemCompass", "ItemWatch", "tf_anprc152_2" }; uniformClass = "SA_W_Uniform"; backpack = "SA_Backpack_Fast_Olive"; }; class SAEF_LMG { displayName = "Autorifleman"; // Name visible in the menu //icon = "\Images\gl_ca.paa"; // Icon displayed next to the name // Condition must return true in order for the loadout to be displayed in the menu. // Evaluated when the menu is opened. show = "side group _this == west"; // Loadout definition, uses same entries as CfgVehicles classes weapons[] = { "rhs_weap_m249_pip_L", "RH_m9" }; magazines[] = { "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "rhs_200rnd_556x45_M_SAW", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell", "Chemlight_green", "Chemlight_green" }; items[] = { "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_EarPlugs" }; linkedItems[] = { "SMA_SFFL_BLK", "rhsusf_acc_eotech_552", "RH_m9qd", "RH_X300", "SA_PlateCarrier_Green1", "SA_Helmet_Green", "SA_Bandanna_Flag_Green", "NVGoggles_INDEP", "ItemMap", "ItemGPS", "ItemCompass", "ItemWatch", "tf_anprc152_2" }; uniformClass = "SA_W_Uniform"; }; class SAEF_Grenadier_M4 { displayName = "Grenadier (M4)"; // Name visible in the menu //icon = "\Images\gl_ca.paa"; // Icon displayed next to the name // Condition must return true in order for the loadout to be displayed in the menu. // Evaluated when the menu is opened. show = "side group _this == west"; // Loadout definition, uses same entries as CfgVehicles classes weapons[] = { "rhs_weap_m4_m320", "RH_m9", "ACE_Vector" }; magazines[] = { "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "rhs_mag_M441_HE", "rhs_mag_M441_HE", "rhs_mag_M441_HE", "rhs_mag_M441_HE", "rhs_mag_M441_HE", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell", "Chemlight_green", "Chemlight_green" }; items[] = { "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_EarPlugs" }; linkedItems[] = { "rhsusf_acc_nt4_black", "rhsusf_acc_anpeq15_light", "rhsusf_acc_compm4", "RH_m9qd", "RH_X300", "SA_PlateCarrier_Green1", "SA_Helmet_Green", "Rus_Shemag", "NVGoggles_INDEP", "ItemMap", "ItemGPS", "ItemCompass", "ItemWatch", "tf_anprc152_2" }; uniformClass = "SA_W_Uniform"; }; class SAEF_Grenadier_M16 { displayName = "Grenadier (M16)"; // Name visible in the menu //icon = "\Images\gl_ca.paa"; // Icon displayed next to the name // Condition must return true in order for the loadout to be displayed in the menu. // Evaluated when the menu is opened. show = "side group _this == west"; // Loadout definition, uses same entries as CfgVehicles classes weapons[] = { "rhs_weap_m16a4_carryhandle_M203", "RH_m9", "ACE_Vector" }; magazines[] = { "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "rhs_mag_M441_HE", "rhs_mag_M441_HE", "rhs_mag_M441_HE", "rhs_mag_M441_HE", "rhs_mag_M441_HE", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell", "Chemlight_green", "Chemlight_green" }; items[] = { "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_EarPlugs" }; linkedItems[] = { "rhsusf_acc_nt4_black", "rhsusf_acc_anpeq15_light", "rhsusf_acc_compm4", "RH_m9qd", "RH_X300", "SA_PlateCarrier_Green1", "SA_Helmet_Green", "Rus_Shemag", "NVGoggles_INDEP", "ItemMap", "ItemGPS", "ItemCompass", "ItemWatch", "tf_anprc152_2" }; uniformClass = "SA_W_Uniform"; }; class SAEF_Grenadier_L85 { displayName = "Grenadier (L85)"; // Name visible in the menu //icon = "\Images\gl_ca.paa"; // Icon displayed next to the name // Condition must return true in order for the loadout to be displayed in the menu. // Evaluated when the menu is opened. show = "side group _this == west"; // Loadout definition, uses same entries as CfgVehicles classes weapons[] = { "SMA_L85RISafg", "rhs_weap_M320", "ACE_Vector" }; magazines[] = { "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "rhs_mag_M441_HE", "rhs_mag_M441_HE", "rhs_mag_M441_HE", "rhs_mag_M441_HE", "rhs_mag_M441_HE", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell", "Chemlight_green", "Chemlight_green" }; items[] = { "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_EarPlugs" }; linkedItems[] = { "SMA_supp2BOD_556", "rhsusf_acc_anpeq15_light", "rhsusf_acc_compm4", "SA_PlateCarrier_Green1", "SA_Helmet_Green", "Rus_Shemag", "NVGoggles_INDEP", "ItemMap", "ItemGPS", "ItemCompass", "ItemWatch", "tf_anprc152_2" }; uniformClass = "SA_W_Uniform"; }; class SAEF_Engineer_M4 { displayName = "Engineer (M4)"; // Name visible in the menu //icon = "\Images\gl_ca.paa"; // Icon displayed next to the name // Condition must return true in order for the loadout to be displayed in the menu. // Evaluated when the menu is opened. show = "side group _this == west"; // Loadout definition, uses same entries as CfgVehicles classes weapons[] = { "rhs_weap_m4_carryhandle_pmag", "RH_m9" }; magazines[] = { "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell", "Chemlight_green", "Chemlight_green", "DemoCharge_Remote_Mag", "DemoCharge_Remote_Mag", "DemoCharge_Remote_Mag", "DemoCharge_Remote_Mag", "DemoCharge_Remote_Mag", "DemoCharge_Remote_Mag" }; items[] = { "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ToolKit", "ACE_wirecutter", "ACE_Clacker", "ACE_DefusalKit", "ACE_CableTie", "ACE_CableTie", "ACE_CableTie", "ACE_CableTie", "MineDetector", "ACE_EarPlugs" }; linkedItems[] = { "rhsusf_acc_nt4_black", "rhsusf_acc_anpeq15_light", "rhsusf_acc_eotech_552", "RH_m9qd", "RH_X300", "SA_PlateCarrier_Green2", "SA_Helmet_Green", "SA_Bandanna_Flag_Green", "NVGoggles_INDEP", "ItemMap", "ItemGPS", "ItemCompass", "ItemWatch", "tf_anprc152_2" }; uniformClass = "SA_W_Uniform"; backpack = "B_Carryall_oli"; }; class SAEF_Engineer_M16 { displayName = "Engineer (M16)"; // Name visible in the menu //icon = "\Images\gl_ca.paa"; // Icon displayed next to the name // Condition must return true in order for the loadout to be displayed in the menu. // Evaluated when the menu is opened. show = "side group _this == west"; // Loadout definition, uses same entries as CfgVehicles classes weapons[] = { "rhs_weap_m16a4_carryhandle_pmag", "RH_m9" }; magazines[] = { "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell", "Chemlight_green", "Chemlight_green", "DemoCharge_Remote_Mag", "DemoCharge_Remote_Mag", "DemoCharge_Remote_Mag", "DemoCharge_Remote_Mag", "DemoCharge_Remote_Mag", "DemoCharge_Remote_Mag" }; items[] = { "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ToolKit", "ACE_wirecutter", "ACE_Clacker", "ACE_DefusalKit", "ACE_CableTie", "ACE_CableTie", "ACE_CableTie", "ACE_CableTie", "MineDetector", "ACE_EarPlugs" }; linkedItems[] = { "rhsusf_acc_nt4_black", "rhsusf_acc_anpeq15_light", "rhsusf_acc_eotech_552", "RH_m9qd", "RH_X300", "SA_PlateCarrier_Green2", "SA_Helmet_Green", "SA_Bandanna_Flag_Green", "NVGoggles_INDEP", "ItemMap", "ItemGPS", "ItemCompass", "ItemWatch", "tf_anprc152_2" }; uniformClass = "SA_W_Uniform"; backpack = "B_Carryall_oli"; }; class SAEF_Engineer_L85 { displayName = "Engineer (L85)"; // Name visible in the menu //icon = "\Images\gl_ca.paa"; // Icon displayed next to the name // Condition must return true in order for the loadout to be displayed in the menu. // Evaluated when the menu is opened. show = "side group _this == west"; // Loadout definition, uses same entries as CfgVehicles classes weapons[] = { "SMA_L85RISafg", "RH_m9" }; magazines[] = { "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell", "Chemlight_green", "Chemlight_green", "DemoCharge_Remote_Mag", "DemoCharge_Remote_Mag", "DemoCharge_Remote_Mag", "DemoCharge_Remote_Mag", "DemoCharge_Remote_Mag", "DemoCharge_Remote_Mag" }; items[] = { "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ToolKit", "ACE_wirecutter", "ACE_Clacker", "ACE_DefusalKit", "ACE_CableTie", "ACE_CableTie", "ACE_CableTie", "ACE_CableTie", "MineDetector", "ACE_EarPlugs" }; linkedItems[] = { "SMA_supp2BOD_556", "rhsusf_acc_anpeq15_light", "rhsusf_acc_eotech_552", "RH_m9qd", "RH_X300", "SA_PlateCarrier_Green2", "SA_Helmet_Green", "SA_Bandanna_Flag_Green", "NVGoggles_INDEP", "ItemMap", "ItemGPS", "ItemCompass", "ItemWatch", "tf_anprc152_2" }; uniformClass = "SA_W_Uniform"; backpack = "B_Carryall_oli"; }; class SAEF_AmmoBearer_M4 { displayName = "Ammo Bearer (M4)"; // Name visible in the menu //icon = "\Images\gl_ca.paa"; // Icon displayed next to the name // Condition must return true in order for the loadout to be displayed in the menu. // Evaluated when the menu is opened. show = "side group _this == west"; // Loadout definition, uses same entries as CfgVehicles classes weapons[] = { "rhs_weap_m4_carryhandle_pmag", "RH_m9" }; magazines[] = { "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell", "Chemlight_green", "Chemlight_green", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "HandGrenade", "HandGrenade", "rhs_200rnd_556x45_M_SAW", "rhs_200rnd_556x45_M_SAW" }; items[] = { "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_EarPlugs" }; linkedItems[] = { "rhsusf_acc_nt4_black", "rhsusf_acc_anpeq15_light", "rhsusf_acc_compm4", "RH_m9qd", "RH_X300", "SA_PlateCarrier_Green2", "SA_Helmet_Green", "Rus_Shemag", "NVGoggles_INDEP", "ItemMap", "ItemGPS", "ItemCompass", "ItemWatch", "tf_anprc152_2" }; uniformClass = "SA_W_Uniform"; backpack = "B_Carryall_oli"; }; class SAEF_AmmoBearer_M16 { displayName = "Ammo Bearer (M16)"; // Name visible in the menu //icon = "\Images\gl_ca.paa"; // Icon displayed next to the name // Condition must return true in order for the loadout to be displayed in the menu. // Evaluated when the menu is opened. show = "side group _this == west"; // Loadout definition, uses same entries as CfgVehicles classes weapons[] = { "rhs_weap_m16a4_carryhandle_pmag", "RH_m9" }; magazines[] = { "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell", "Chemlight_green", "Chemlight_green", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "HandGrenade", "HandGrenade", "rhs_200rnd_556x45_M_SAW", "rhs_200rnd_556x45_M_SAW" }; items[] = { "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_EarPlugs" }; linkedItems[] = { "rhsusf_acc_nt4_black", "rhsusf_acc_anpeq15_light", "rhsusf_acc_compm4", "RH_m9qd", "RH_X300", "SA_PlateCarrier_Green2", "SA_Helmet_Green", "Rus_Shemag", "NVGoggles_INDEP", "ItemMap", "ItemGPS", "ItemCompass", "ItemWatch", "tf_anprc152_2" }; uniformClass = "SA_W_Uniform"; backpack = "B_Carryall_oli"; }; class SAEF_AmmoBearer_L85 { displayName = "Ammo Bearer (L85)"; // Name visible in the menu //icon = "\Images\gl_ca.paa"; // Icon displayed next to the name // Condition must return true in order for the loadout to be displayed in the menu. // Evaluated when the menu is opened. show = "side group _this == west"; // Loadout definition, uses same entries as CfgVehicles classes weapons[] = { "SMA_L85RISafg", "RH_m9" }; magazines[] = { "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell", "Chemlight_green", "Chemlight_green", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "30Rnd_556x45_Stanag_Tracer_Red", "HandGrenade", "HandGrenade", "rhs_200rnd_556x45_M_SAW", "rhs_200rnd_556x45_M_SAW" }; items[] = { "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_EarPlugs" }; linkedItems[] = { "SMA_supp2BOD_556", "rhsusf_acc_anpeq15_light", "rhsusf_acc_compm4", "RH_m9qd", "RH_X300", "SA_PlateCarrier_Green2", "SA_Helmet_Green", "Rus_Shemag", "NVGoggles_INDEP", "ItemMap", "ItemGPS", "ItemCompass", "ItemWatch", "tf_anprc152_2" }; uniformClass = "SA_W_Uniform"; backpack = "B_Carryall_oli"; }; class SAEF_Marksman { displayName = "Marksman"; // Name visible in the menu //icon = "\Images\gl_ca.paa"; // Icon displayed next to the name // Condition must return true in order for the loadout to be displayed in the menu. // Evaluated when the menu is opened. show = "side group _this == west"; // Loadout definition, uses same entries as CfgVehicles classes weapons[] = { "rhs_weap_XM2010", "RH_m9" }; magazines[] = { "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "rhsusf_5Rnd_300winmag_xm2010", "rhsusf_5Rnd_300winmag_xm2010", "rhsusf_5Rnd_300winmag_xm2010", "rhsusf_5Rnd_300winmag_xm2010", "rhsusf_5Rnd_300winmag_xm2010", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell", "Chemlight_green", "Chemlight_green", "rhsusf_5Rnd_300winmag_xm2010", "rhsusf_5Rnd_300winmag_xm2010", "rhsusf_5Rnd_300winmag_xm2010", "rhsusf_5Rnd_300winmag_xm2010", "rhsusf_5Rnd_300winmag_xm2010", "rhsusf_5Rnd_300winmag_xm2010", "rhsusf_5Rnd_300winmag_xm2010", "rhsusf_5Rnd_300winmag_xm2010", "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "RH_15Rnd_9x19_M9", "HandGrenade", "HandGrenade", "SmokeShell", "SmokeShell" }; items[] = { "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_fieldDressing", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_morphine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_epinephrine", "ACE_EarPlugs" }; linkedItems[] = { "rhsusf_acc_M2010S", "rhsusf_acc_anpeq15side", "optic_NVS", "RH_m9qd", "RH_X300", "SA_PlateCarrier_Green2", "SA_Beanie_blk", "SA_Bandanna_Flag_Green", "NVGoggles_INDEP", "ItemMap", "ItemGPS", "ItemCompass", "ItemWatch", "tf_anprc152_2" }; uniformClass = "SA_W_Uniform_S"; backpack = "SA_Backpack_Olive"; }; }; At this point in time we have just commented out the "PlayerLoadouts.sqf" execution in the "initPlayerLocal.sqf", but this is a temporary solution as we would like to start using the Loadout Selection menu again soon. Any and all help would be appreciated. If any more information is required I would be happy to supply it. Thanks in Advance, Squirrel.
×