Hi
I have a co-op mission and want to make it so that each player can change their starting weapon from the Gear screen in the briefing.
I thought that to do this I needed to add weapon and magazine classes to my description.ext file so I have done this but I cannot change the loadout on the briefing screen. There are arrows that let me choose the players but how do I actually change the weapons?
respawn = "instant";
respawndelay = 15;
class Weapons
{
class M16
{
count = 5;
};
class M16GrenadeLauncher
{
count = 5;
};
class M4
{
count = 5;
};
class M60
{
count = 5;
};
class HK
{
count = 5;
};
class M21
{
count = 5;
};
class CarlGustavLauncher
{
count = 5;
};
class LAWLauncher
{
count = 5;
};
class AALauncher
{
count = 5;
};
};
class Magazines
{
class M16
{
count = 10;
};
class GrenadeLauncher
{
count = 10;
};
class M4
{
count = 10;
};
class M60
{
count = 10;
};
class HK
{
count = 10;
};
class M21
{
count = 10;
};
class CarlGustavLauncher
{
count = 10;
};
class LAWLauncher
{
count = 10;
};
class AALauncher
{
count = 10;
};
};
class CfgSounds
{
sounds[] = { };
class BT
{
name = "";
sound[] = {"BT.ogg", db+10, 1.0};
forceTitles = false;
titles[] = { };
};
};