Flinty 454 Posted August 23, 2017 Hi all. Recently I've been building a small modpack of retextures for my milsim unit and I've ran across a rather frustrating error that I can't seem to get my head around... When placing a unit down in the arsenal, I get a "No entry .model" error and that's then end of that in single player. When I put a mission with those units on our server, it causes a really horrible error spamming the console with ".model" every time it tries to read the mission. Anyone who can shed light on this, your help will be greatly appreciated :) Config.cpp: https://pastebin.com/Gp9rWiYe Kind Regards, Flinty Share this post Link to post Share on other sites
UK_Apollo 476 Posted August 23, 2017 Remove the lines referencing the 3CB model, as you do not have access to that: eg model = "UK3CB_BAF_Equipment\uniform\smock\uk3cb_smock_Base.p3d"; 1 Share this post Link to post Share on other sites
Flinty 454 Posted August 23, 2017 Also, it seems to be an issue with the standard "British Soldier" units rather than the smock - I forgot to add that in :P edit: I did what you suggested Apollo and it only cleaned up the smock config a little Share this post Link to post Share on other sites
Flinty 454 Posted August 24, 2017 Anyone got any ideas? Share this post Link to post Share on other sites
Flax 397 Posted August 31, 2017 The issue is with the any of the empty arrays: magazines[] = {""}; Just replace all the "" with nothing, I.E: magazines[] = {}; Share this post Link to post Share on other sites
Flinty 454 Posted August 31, 2017 Thank you very much :) Share this post Link to post Share on other sites