Sign in to follow this  
SiXtYnInEfEaSt

'{' encountered instead of ','

4 posts in this topic

form line 4174

you must add/delete commas

 

           types[] = {"Tools", "Pistol", "Tools", "Food", "Food", "RepairParts", "Sniper", "Rifle"};
 
            class BoxTypes
            {
                class Pistol
                {
                    items[] =
                    {
                        {"hgun_P07_F", 2},
                        {"16Rnd_9x21_Mag", 6},
                        {"hgun_PDW2000_F", 1},
                        {"30Rnd_9x21_Red_Mag", 4},
                        {"hgun_Pistol_heavy_02_F", 1},
                        {"6Rnd_45ACP_Cylinder", 2}
                    };
                };
               
                class Sniper
                {
                    items[] =
                    {
                        {"srifle_EBR_F", 1},
                        {"20Rnd_762x51_Mag", 4}
                    };
                };
               
                class Rifle
                {
                    items[] =
                    {
                        {"arifle_MX_Black_F", 1},
                        {"30Rnd_65x39_caseless_mag", 4}
                    };
                };
               
                class Food
                {
                    items[] =
                    {
                        {"Exile_Item_BBQSandwich", 5},
                        {"Exile_Item_Catfood", 2},
                        {"Exile_Item_ChristmasTinner", 3},
                        {"Exile_Item_GloriousKnakworst", 3},
                        {"Exile_Item_SausageGravy", 3},
                        {"Exile_Item_Surstromming", 2},
                        {"Exile_Item_CanOpener", 2}
                    };
                };

Share this post


Link to post
Share on other sites
Advertisement

Yeah, you're also missing commas in this array, there's not a single comma. Needs to be one after all but the last.

class Pistol
                {
                    items[] =
                    {
                        {"hgun_P07_F", 2}
                        {"16Rnd_9x21_Mag", 6}
                        {"hgun_PDW2000_F", 1}
                        {"30Rnd_9x21_Red_Mag", 4}
                        {"hgun_Pistol_heavy_02_F", 1}
                        {"6Rnd_45ACP_Cylinder", 2}

 

Share this post


Link to post
Share on other sites
1 hour ago, [HG]RaVeN103 said:

form line 4174

you must add/delete commas

 

           types[] = {"Tools", "Pistol", "Tools", "Food", "Food", "RepairParts", "Sniper", "Rifle"};
 
            class BoxTypes
            {
                class Pistol
                {
                    items[] =
                    {
                        {"hgun_P07_F", 2},
                        {"16Rnd_9x21_Mag", 6},
                        {"hgun_PDW2000_F", 1},
                        {"30Rnd_9x21_Red_Mag", 4},
                        {"hgun_Pistol_heavy_02_F", 1},
                        {"6Rnd_45ACP_Cylinder", 2}
                    };
                };
               
                class Sniper
                {
                    items[] =
                    {
                        {"srifle_EBR_F", 1},
                        {"20Rnd_762x51_Mag", 4}
                    };
                };
               
                class Rifle
                {
                    items[] =
                    {
                        {"arifle_MX_Black_F", 1},
                        {"30Rnd_65x39_caseless_mag", 4}
                    };
                };
               
                class Food
                {
                    items[] =
                    {
                        {"Exile_Item_BBQSandwich", 5},
                        {"Exile_Item_Catfood", 2},
                        {"Exile_Item_ChristmasTinner", 3},
                        {"Exile_Item_GloriousKnakworst", 3},
                        {"Exile_Item_SausageGravy", 3},
                        {"Exile_Item_Surstromming", 2},
                        {"Exile_Item_CanOpener", 2}
                    };
                };

Thank you lots! :)

Share this post


Link to post
Share on other sites
Advertisement

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

  • Recently Browsing   0 members

    No registered users viewing this page.