Jump to content
Sign in to follow this  
mick17

Problem with scripting backpacks into briefing gear.

Recommended Posts

Hello,

I'm trying to script a backpack into the briefing where you can choose your gear. I try to script in the coyote backpack in the description.ext with this:

class Weapons

{

class M4A1 {count = 5;};

class US_Backpack_EP1 {count = 8;};

};

The backpack never shows up in the gear menu... but the gun does.

Any ideas?

Thanks!

Edited by mick17

Share this post


Link to post
Share on other sites

Backpacks aren't "weapons" configuratively speaking. (Sure that's a word!) For backpacks you need to use this:

class Backpacks 
{
	class US_Patrol_Pack_EP1 {count = 4;};
	class US_Assault_Pack_EP1 {count = 4;};
};

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  

×