Home   Help Search Login Register  

Author Topic: quick question  (Read 338 times)

0 Members and 1 Guest are viewing this topic.

SilentEcho

  • Guest
quick question
« on: 05 Mar 2003, 05:45:32 »
Im pretty new at making missions and i wanted to give the bas weapon selection under the gear tab.  I followed their instuctions in the readme and copied all their guns into my .ext file, but i keep getting an error saying something along the lines of "found c instead of ]"  After numerous attempts of changing the ext i have had no luck.  I know i am missing something minute so any help you fellas could give would be greatly appreciated.  If you really wanted to make me happy you could even paste an ext file so i could just copy and paste.  Thanks for any reply's

Echo

Offline dmakatra

  • Members
  • *
  • Better known as Armsty
Re:quick question
« Reply #1 on: 05 Mar 2003, 08:12:22 »
can u post the ext here plz?

SilentEcho

  • Guest
Re:quick question
« Reply #2 on: 05 Mar 2003, 08:58:27 »
alright here is the exact error message;

Config; Users\Echo\mpmissions\DesertAirbase.Now\description.ext.:'c' encountered instead of "]"

And it says that after it closes down to the desktop

Here's what my description.ext file looks like, dont laugh to hard this is my first real mission so it may be completely fubar;

respawn="group";

onLoadMission=Nogovo

Code: [Select]
class weapons
{
// M4 Sopmod
   class BAS_M4ACOG        {count = 20;};   
   class BAS_M4MKACOG      {count = 20;};
   class BAS_M4MKReflex    {count = 20;};   
   class BAS_M4REFLEX      {count = 20;};
   class BAS_M4REFLEXM203  {count = 20;};
// M4 Sopmod SD
   class BAS_M4ACOGS       {count = 20;};
   class BAS_M4REFLEXS     {count = 20;};
   class BAS_M4REFLEXSM203 {count = 20;};
// Rifles
   class BAS_M14AIMPOINT   {count = 20;};
   class BAS_M24SWS   {count = 20;};
// SubmachineGuns
   class BAS_MP5SDAIMPOINT   {count = 20;};
// MachineGuns
   class BAS_M249          {count = 20;};
   class BAS_M249SPW         {count = 20;};
   class BAS_M240B         {count = 20;};
// SidArms
   class BAS_Beretta   {count = 50;};
// AT Weapons
   class BAS_AT4Launcher   {count = 20;};
// Gear
   class BAS_Satcom   {count = 20;};
   class BAS_Soflam   {count = 20;};
};
class Magazines
   {
// M4 Mags
   class BAS_M4Mag    {count = 50;};
   class BAS_M4SMag   {count = 50;};
   class BAS_mkshell   {count = 50;};
// Rifle Mags
   class BAS_M14Mag   {count = 50;};
   class BAS_M24Mag   {count = 50;};
// SubmachineGun Mags
   class BAS_MP5SDMag   {count = 50;};
// MachineGun Mags
   class BAS_M249mag   {count = 50;};
   class BAS_M240Mag   {count = 50;};
// Grenades
   class BAS_M433grenade   {count = 50;};
// Sidarm mags
   class BAS_BerettaMag   {count = 50;};
// AT Rockets
   class BAS_AT4Rocket   {count = 50;};
// Laser
   class BAS_Soflam   {count = 50;};
// Extra
   class handgrenade   {count = 50;};
   class flare        {count = 25;};
   class flaregreen   {count = 25;};
   class flarered           {count = 25;};
   class flareyellow   {count = 25;};
   class SmokeShell   {count = 25;};
   class SmokeShellRed   {count = 25;};
   class SmokeShellGreen   {count = 25;};
};
[end code]


Thats it thanks for any help

echo

SilentEcho

  • Guest
Re:quick question
« Reply #3 on: 05 Mar 2003, 09:14:00 »
ok im retarded, i just relized what i did wrong when i pasted my ext file.  Sorry for wasting anyones time

echo