hey everyone.. i'm back with another problem.
i just created a "description.EXT" file so the player has a number of weapons to choose from at the start of the mission.
the weapons appear but the ammo does not. also, i get an error message saying
" No entry 'config.bin/cfg Weapons.Magazines'.
the weapons are there to picked from but no ammo. :-\
here's what i have in my description.ext file
class Weapons
{
class G36a
{
count = 1;
};
class XMS
{
count = 1;
};
class M16
{
count = 1;
};
class M16GrenadeLauncher
{
count = 1;
};
class LAWLauncher
{
count = 1;
};
class CarlGustavLauncher
{
count = 1;
};
};
// and the ammo
class Magazines
{
class G36aMag
{
count = 9;
};
class M16
{
count = 9;
};
class M16GrenadeLauncher
{
count = 9;
};
class HandGrenade
{
count = 9;
};
class LAWLauncher
{
count = 6;
};
class CarlGustavLauncher
{
count = 2;
};
class Flare
{
count = 4;
};
class FlareRed
{
count = 4;
};
class FlareGreen
{
count = 4;
};
class FlareYellow
{
count = 4;
};
class SmokeShell
{
count = 4;
};
};
did i go wrong somewhere?