Jump to content
Sign in to follow this  
UberSerpent

Encountered "{" instead of ","

Recommended Posts

      items[] = {
            { "hgun_Rook40_F", "", 1000, 500 },
            { "hgun_Pistol_heavy_02_F", "", 5000, 1000 },   <----------- says this line is the issue
            { "arifle_MSBS65_F", "", 200000, 2500 },
            { "SmokeShellBlue", "", 200, 100 },
            { "SmokeShellRed", "", 200, 100 }
        };
        mags[] = {
            { "16Rnd_9x21_Mag", "", 25 },
            { "6Rnd_45ACP_Cylinder", "", 50 },
            { "9Rnd_45ACP_Mag", "", 45 },
            { "30Rnd_65x39_caseless_msbs_mag", "", 300 }
        };
        accs[] = {
            { "optic_ACO_grn_smg", "", 2500 },
            { "acc_flashlight_smg_01", "", 2500 },
            { "optic_MRD", "", 3000 },
            { "acc_flashlight_pistol", "", 2500 },
            { "optic_MRCO", "", 5000 },
            { "optic_Hamr", "", 5000 },
            { "optic_ERCO_blk_F", "", 5000 },
            { "optic_AMS", "", 10000 },
            { "optic_DMS", "", 10000 },
            { "optic_LRPS", "", 35000 }
            { "optic_ico_01_f", "", 10000 }
            { "Acc_flashlight", "", 10000 }
            { "muzzle_snds_65_TI_blk_F", "", 10000 }
        };
    };

 

 

I do not see the issue if someone could help me.

Share this post


Link to post
Share on other sites

Don't know about the line you marked, but there's 3 missing  ,  here

2 hours ago, UberSerpent said:

        accs[] = {
            { "optic_ACO_grn_smg", "", 2500 },
            { "acc_flashlight_smg_01", "", 2500 },
            { "optic_MRD", "", 3000 },
            { "acc_flashlight_pistol", "", 2500 },
            { "optic_MRCO", "", 5000 },
            { "optic_Hamr", "", 5000 },
            { "optic_ERCO_blk_F", "", 5000 },
            { "optic_AMS", "", 10000 },
            { "optic_DMS", "", 10000 },
            { "optic_LRPS", "", 35000 },  //here
            { "optic_ico_01_f", "", 10000 },  //here
            { "Acc_flashlight", "", 10000 },  //here
            { "muzzle_snds_65_TI_blk_F", "", 10000 }
        };

 

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×