Jump to content
Sign in to follow this  
-J4F- Thunder666

Independent as Blue ?

Recommended Posts

Hi,

is there a way to play the Independent as Blue ? I have switched the Uniforms only but in PvP this not really works.

So is it possible to switch the Uniforms that all players can see blue in Independent Uniforms or play Independent as blue ?

thx in advance

greetings

Share this post


Link to post
Share on other sites

If you're playing with units that are placed on the map via the mission editor (not units that are scripted in), then place the desired greenfor units you want to use and save your mission.

Go to the folder for the mission (For example, mine is C:\Users\WINDOWS_USERNAME\Documents\Arma 3 - Other Profiles\GossamerSolid\missions\MissionNameHere.Stratis) and open up mission.sqm in any text editor (I use notepad++).

Observe the array of units if you scroll down a bit. Here's an example of a greenfor unit I placed:

class Item3
	{
		side="GUER";
		class Vehicles
		{
			items=1;
			class Item0
			{
				position[]={4607.4971,129.82039,5295.1323};
				azimut=180;
				id=3;
				side="GUER";
				vehicle="I_soldier_F";
				leader=1;
				skill=0.60000002;
				text="GreenUnit";
				init="removeAllWeapons this; this setBehaviour ""CARELESS""";
			};
		};
	};

Replace "GUER" with "WEST"

class Item3
	{
		side="WEST";
		class Vehicles
		{
			items=1;
			class Item0
			{
				position[]={4607.4971,129.82039,5295.1323};
				azimut=180;
				id=3;
				side="WEST";
				vehicle="I_soldier_F";
				leader=1;
				skill=0.60000002;
				text="GreenUnit";
				init="removeAllWeapons this; this setBehaviour ""CARELESS""";
			};
		};
	};

I'm pretty sure this still works. If I'm wrong, feel free to correct me.

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  

×