SiXtYnInEfEaSt 1 Report post Posted July 5, 2017 RPT: https://pastebin.com/AExpu1uP My Pastebin: https://pastebin.com/CsDFQ8JQ I can't find what's wrong. Please help. ;-; Share this post Link to post Share on other sites
[HG]RaVeN103 207 Report post Posted July 5, 2017 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
Georgie 19 Report post Posted July 5, 2017 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
SiXtYnInEfEaSt 1 Report post Posted July 5, 2017 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