3rd-mef 1 Posted November 5, 2015 heya guys, i've hit a snag in trying to code my faction for my unit. when ever i try to preview a game i get the error : no entry .model does any1 of you have an idea what this might be? below is the code for the model which is causing this. class CfgVehicles{ class B_Soldier_base_F; class Mar_TL_W: B_Soldier_base_F { side = 1; faction = "3rd_MEF"; backpack = "B_mas_m_Bergen_acr_c"; vehicleclass = "Marines_wood"; author = "3mef"; _generalMacro = "MS_TL_W"; scope = 2; displayName = "Team Leader"; weapons[] = {""}; respawnWeapons[] = {""}; magazines[] = {""}; respawnMagazines[] = {""}; cost = 3000000; threat[] = {1,0.7,0.3}; linkedItems[] = {""}; respawnLinkeditems[] = {""}; model = "\A3\Characters_F\Common\basicbody"; uniformClass = "U_mas_mar_B_CombatUniform_wood"; camouflage = 1.6; };}; if you want more info please feel free to slap me in the face and i will deliver the files needed if i have them haha Share this post Link to post Share on other sites
Jackal326 1181 Posted November 6, 2015 It probably wont fix your error, but change weapons[] = {""}; respawnWeapons[] = {""}; magazines[] = {""}; respawnMagazines[] = {""}; linkedItems[] = {""}; respawnLinkeditems[] = {""}; to weapons[] = {}; respawnWeapons[] = {}; magazines[] = {}; respawnMagazines[] = {}; linkedItems[] = {}; respawnLinkeditems[] = {}; As heaving quotations without content (i.e. "") looks for an empty classname and messes things up. Share this post Link to post Share on other sites
3rd-mef 1 Posted November 7, 2015 heej jackal, this fixed it .. thank you ... feeling stupid now for not noticing this xD Share this post Link to post Share on other sites