Merge pull request #8659 from penev92/bleed_playerReference
Rename PlayerReference.Race to Faction
This commit is contained in:
@@ -37,7 +37,7 @@ namespace OpenRA
|
|||||||
"Neutral", new PlayerReference
|
"Neutral", new PlayerReference
|
||||||
{
|
{
|
||||||
Name = "Neutral",
|
Name = "Neutral",
|
||||||
Race = firstRace,
|
Faction = firstRace,
|
||||||
OwnsWorld = true,
|
OwnsWorld = true,
|
||||||
NonCombatant = true
|
NonCombatant = true
|
||||||
}
|
}
|
||||||
@@ -46,7 +46,7 @@ namespace OpenRA
|
|||||||
"Creeps", new PlayerReference
|
"Creeps", new PlayerReference
|
||||||
{
|
{
|
||||||
Name = "Creeps",
|
Name = "Creeps",
|
||||||
Race = firstRace,
|
Faction = firstRace,
|
||||||
NonCombatant = true,
|
NonCombatant = true,
|
||||||
Enemies = Exts.MakeArray(playerCount, i => "Multi{0}".F(i))
|
Enemies = Exts.MakeArray(playerCount, i => "Multi{0}".F(i))
|
||||||
}
|
}
|
||||||
@@ -58,7 +58,7 @@ namespace OpenRA
|
|||||||
var p = new PlayerReference
|
var p = new PlayerReference
|
||||||
{
|
{
|
||||||
Name = "Multi{0}".F(index),
|
Name = "Multi{0}".F(index),
|
||||||
Race = "Random",
|
Faction = "Random",
|
||||||
Playable = true,
|
Playable = true,
|
||||||
Enemies = new[] { "Creeps" }
|
Enemies = new[] { "Creeps" }
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -16,17 +16,17 @@ namespace OpenRA
|
|||||||
{
|
{
|
||||||
public string Name;
|
public string Name;
|
||||||
public string Palette;
|
public string Palette;
|
||||||
public bool OwnsWorld = false;
|
|
||||||
public bool NonCombatant = false;
|
|
||||||
public bool Playable = false;
|
|
||||||
public bool Spectating = false;
|
|
||||||
public string Bot = null;
|
public string Bot = null;
|
||||||
public string StartingUnitsClass = null;
|
public string StartingUnitsClass = null;
|
||||||
public bool AllowBots = true;
|
public bool AllowBots = true;
|
||||||
|
public bool Playable = false;
|
||||||
public bool Required = false;
|
public bool Required = false;
|
||||||
|
public bool OwnsWorld = false;
|
||||||
|
public bool Spectating = false;
|
||||||
|
public bool NonCombatant = false;
|
||||||
|
|
||||||
public bool LockRace = false;
|
public bool LockFaction = false;
|
||||||
public string Race;
|
public string Faction;
|
||||||
|
|
||||||
// ColorRamp naming retained for backward compatibility
|
// ColorRamp naming retained for backward compatibility
|
||||||
public bool LockColor = false;
|
public bool LockColor = false;
|
||||||
|
|||||||
@@ -95,7 +95,7 @@ namespace OpenRA
|
|||||||
Color = client.Color;
|
Color = client.Color;
|
||||||
PlayerName = client.Name;
|
PlayerName = client.Name;
|
||||||
botType = client.Bot;
|
botType = client.Bot;
|
||||||
Country = ChooseCountry(world, client.Race, !pr.LockRace);
|
Country = ChooseCountry(world, client.Race, !pr.LockFaction);
|
||||||
DisplayCountry = ChooseDisplayCountry(world, client.Race);
|
DisplayCountry = ChooseDisplayCountry(world, client.Race);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -108,8 +108,8 @@ namespace OpenRA
|
|||||||
Playable = pr.Playable;
|
Playable = pr.Playable;
|
||||||
Spectating = pr.Spectating;
|
Spectating = pr.Spectating;
|
||||||
botType = pr.Bot;
|
botType = pr.Bot;
|
||||||
Country = ChooseCountry(world, pr.Race, false);
|
Country = ChooseCountry(world, pr.Faction, false);
|
||||||
DisplayCountry = ChooseDisplayCountry(world, pr.Race);
|
DisplayCountry = ChooseDisplayCountry(world, pr.Faction);
|
||||||
}
|
}
|
||||||
|
|
||||||
PlayerActor = world.CreateActor("Player", new TypeDictionary { new OwnerInit(this) });
|
PlayerActor = world.CreateActor("Player", new TypeDictionary { new OwnerInit(this) });
|
||||||
|
|||||||
@@ -72,8 +72,8 @@ namespace OpenRA.Server
|
|||||||
if (pr == null)
|
if (pr == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (pr.LockRace)
|
if (pr.LockFaction)
|
||||||
c.Race = pr.Race;
|
c.Race = pr.Faction;
|
||||||
if (pr.LockSpawn)
|
if (pr.LockSpawn)
|
||||||
c.SpawnPoint = pr.Spawn;
|
c.SpawnPoint = pr.Spawn;
|
||||||
if (pr.LockTeam)
|
if (pr.LockTeam)
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ namespace OpenRA.Mods.Common.Widgets
|
|||||||
td.Add(new FacingInit(facing));
|
td.Add(new FacingInit(facing));
|
||||||
td.Add(new TurretFacingInit(facing));
|
td.Add(new TurretFacingInit(facing));
|
||||||
td.Add(new OwnerInit(owner.Name));
|
td.Add(new OwnerInit(owner.Name));
|
||||||
td.Add(new RaceInit(owner.Race));
|
td.Add(new RaceInit(owner.Faction));
|
||||||
preview.SetPreview(actor, td);
|
preview.SetPreview(actor, td);
|
||||||
|
|
||||||
var ios = actor.Traits.GetOrDefault<IOccupySpaceInfo>();
|
var ios = actor.Traits.GetOrDefault<IOccupySpaceInfo>();
|
||||||
|
|||||||
@@ -40,8 +40,8 @@ namespace OpenRA.Mods.Common.Lint
|
|||||||
|
|
||||||
var races = worldActor.Traits.WithInterface<CountryInfo>().Select(c => c.Race);
|
var races = worldActor.Traits.WithInterface<CountryInfo>().Select(c => c.Race);
|
||||||
foreach (var player in players.Values)
|
foreach (var player in players.Values)
|
||||||
if (!string.IsNullOrWhiteSpace(player.Race) && !races.Contains(player.Race))
|
if (!string.IsNullOrWhiteSpace(player.Faction) && !races.Contains(player.Faction))
|
||||||
emitError("Invalid race {0} chosen for player {1}.".F(player.Race, player.Name));
|
emitError("Invalid race {0} chosen for player {1}.".F(player.Faction, player.Name));
|
||||||
|
|
||||||
if (worldActor.Traits.Contains<MPStartLocationsInfo>())
|
if (worldActor.Traits.Contains<MPStartLocationsInfo>())
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ namespace OpenRA.Mods.Common.Scripting
|
|||||||
public HSLColor Color { get { return Player.Color; } }
|
public HSLColor Color { get { return Player.Color; } }
|
||||||
|
|
||||||
[Desc("The player's race.")]
|
[Desc("The player's race.")]
|
||||||
public string Race { get { return Player.PlayerReference.Race; } }
|
public string Race { get { return Player.PlayerReference.Faction; } }
|
||||||
|
|
||||||
[Desc("The player's spawnpoint ID.")]
|
[Desc("The player's spawnpoint ID.")]
|
||||||
public int Spawn { get { return Player.SpawnPoint; } }
|
public int Spawn { get { return Player.SpawnPoint; } }
|
||||||
|
|||||||
@@ -900,7 +900,7 @@ namespace OpenRA.Mods.Common.Server
|
|||||||
PlayerReference = pr.Name,
|
PlayerReference = pr.Name,
|
||||||
Closed = false,
|
Closed = false,
|
||||||
AllowBots = pr.AllowBots,
|
AllowBots = pr.AllowBots,
|
||||||
LockRace = pr.LockRace,
|
LockRace = pr.LockFaction,
|
||||||
LockColor = pr.LockColor,
|
LockColor = pr.LockColor,
|
||||||
LockTeam = pr.LockTeam,
|
LockTeam = pr.LockTeam,
|
||||||
LockSpawn = pr.LockSpawn,
|
LockSpawn = pr.LockSpawn,
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
Name = "Everyone",
|
Name = "Everyone",
|
||||||
NonCombatant = true,
|
NonCombatant = true,
|
||||||
Spectating = true,
|
Spectating = true,
|
||||||
Race = "Random",
|
Faction = "Random",
|
||||||
Allies = w.Players.Where(p => !p.NonCombatant && p.Playable).Select(p => p.InternalName).ToArray()
|
Allies = w.Players.Where(p => !p.NonCombatant && p.Playable).Select(p => p.InternalName).ToArray()
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|||||||
@@ -178,7 +178,7 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
var pr = new PlayerReference
|
var pr = new PlayerReference
|
||||||
{
|
{
|
||||||
Name = "Multi{0}".F(index),
|
Name = "Multi{0}".F(index),
|
||||||
Race = "Random",
|
Faction = "Random",
|
||||||
Playable = true,
|
Playable = true,
|
||||||
Enemies = new[] { "Creeps" }
|
Enemies = new[] { "Creeps" }
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
this.worldRenderer = worldRenderer;
|
this.worldRenderer = worldRenderer;
|
||||||
|
|
||||||
if (!actor.InitDict.Contains<RaceInit>())
|
if (!actor.InitDict.Contains<RaceInit>())
|
||||||
actor.InitDict.Add(new RaceInit(owner.Race));
|
actor.InitDict.Add(new RaceInit(owner.Faction));
|
||||||
|
|
||||||
if (!actor.InitDict.Contains<OwnerInit>())
|
if (!actor.InitDict.Contains<OwnerInit>())
|
||||||
actor.InitDict.Add(new OwnerInit(owner.Name));
|
actor.InitDict.Add(new OwnerInit(owner.Name));
|
||||||
@@ -119,7 +119,7 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
Func<object, bool> saveInit = init =>
|
Func<object, bool> saveInit = init =>
|
||||||
{
|
{
|
||||||
var race = init as RaceInit;
|
var race = init as RaceInit;
|
||||||
if (race != null && race.Race == Owner.Race)
|
if (race != null && race.Race == Owner.Faction)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// TODO: Other default values will need to be filtered
|
// TODO: Other default values will need to be filtered
|
||||||
|
|||||||
@@ -500,7 +500,7 @@ namespace OpenRA.Mods.Common.UtilityCommands
|
|||||||
Name = section,
|
Name = section,
|
||||||
OwnsWorld = section == "Neutral",
|
OwnsWorld = section == "Neutral",
|
||||||
NonCombatant = section == "Neutral",
|
NonCombatant = section == "Neutral",
|
||||||
Race = race,
|
Faction = race,
|
||||||
Color = namedColorMapping[c]
|
Color = namedColorMapping[c]
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -2013,7 +2013,21 @@ namespace OpenRA.Mods.Common.UtilityCommands
|
|||||||
internal static void UpgradePlayers(int engineVersion, ref List<MiniYamlNode> nodes, MiniYamlNode parent, int depth)
|
internal static void UpgradePlayers(int engineVersion, ref List<MiniYamlNode> nodes, MiniYamlNode parent, int depth)
|
||||||
{
|
{
|
||||||
foreach (var node in nodes)
|
foreach (var node in nodes)
|
||||||
|
{
|
||||||
|
// Rename PlayerReference.Race and LockRace to Faction and LockFaction
|
||||||
|
if (engineVersion < 20150706)
|
||||||
|
{
|
||||||
|
var race = node.Value.Nodes.FirstOrDefault(x => x.Key == "Race");
|
||||||
|
if (race != null)
|
||||||
|
race.Key = "Faction";
|
||||||
|
|
||||||
|
var lockRace = node.Value.Nodes.FirstOrDefault(x => x.Key == "LockRace");
|
||||||
|
if (lockRace != null)
|
||||||
|
lockRace.Key = "LockFaction";
|
||||||
|
}
|
||||||
|
|
||||||
UpgradePlayers(engineVersion, ref node.Value.Nodes, node, depth + 1);
|
UpgradePlayers(engineVersion, ref node.Value.Nodes, node, depth + 1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static void UpgradeActors(int engineVersion, ref List<MiniYamlNode> nodes, MiniYamlNode parent, int depth)
|
internal static void UpgradeActors(int engineVersion, ref List<MiniYamlNode> nodes, MiniYamlNode parent, int depth)
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
|||||||
var td = new TypeDictionary();
|
var td = new TypeDictionary();
|
||||||
td.Add(new HideBibPreviewInit());
|
td.Add(new HideBibPreviewInit());
|
||||||
td.Add(new OwnerInit(world.WorldActor.Owner));
|
td.Add(new OwnerInit(world.WorldActor.Owner));
|
||||||
td.Add(new RaceInit(world.WorldActor.Owner.PlayerReference.Race));
|
td.Add(new RaceInit(world.WorldActor.Owner.PlayerReference.Faction));
|
||||||
|
|
||||||
if (preview != null)
|
if (preview != null)
|
||||||
preview.SetPreview(actor, td);
|
preview.SetPreview(actor, td);
|
||||||
|
|||||||
@@ -112,7 +112,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
|||||||
td.Add(new TurretFacingInit(92));
|
td.Add(new TurretFacingInit(92));
|
||||||
td.Add(new HideBibPreviewInit());
|
td.Add(new HideBibPreviewInit());
|
||||||
td.Add(new OwnerInit(selectedOwner.Name));
|
td.Add(new OwnerInit(selectedOwner.Name));
|
||||||
td.Add(new RaceInit(selectedOwner.Race));
|
td.Add(new RaceInit(selectedOwner.Faction));
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -31,24 +31,24 @@ Options:
|
|||||||
FragileAlliances: False
|
FragileAlliances: False
|
||||||
StartingCash: 0
|
StartingCash: 0
|
||||||
ConfigurableStartingUnits: False
|
ConfigurableStartingUnits: False
|
||||||
|
Difficulties: Easy, Normal
|
||||||
ShortGame: False
|
ShortGame: False
|
||||||
Difficulties: Easy,Normal
|
|
||||||
|
|
||||||
Players:
|
Players:
|
||||||
PlayerReference@Neutral:
|
PlayerReference@Neutral:
|
||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
PlayerReference@Civilian:
|
PlayerReference@Civilian:
|
||||||
Name: Civilian
|
Name: Civilian
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
Enemies: Nod, Dinosaur
|
Enemies: Nod, Dinosaur
|
||||||
PlayerReference@Dinosaur:
|
PlayerReference@Dinosaur:
|
||||||
Name: Dinosaur
|
Name: Dinosaur
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
ColorRamp: 14,119,96
|
ColorRamp: 14,119,96
|
||||||
Enemies: Nod, Civilian
|
Enemies: Nod, Civilian
|
||||||
PlayerReference@Nod:
|
PlayerReference@Nod:
|
||||||
@@ -56,8 +56,8 @@ Players:
|
|||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
|
|||||||
Binary file not shown.
@@ -39,7 +39,7 @@ Options:
|
|||||||
Players:
|
Players:
|
||||||
PlayerReference@Nod:
|
PlayerReference@Nod:
|
||||||
Name: Nod
|
Name: Nod
|
||||||
Race: nod
|
Faction: nod
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
Allies: Nod
|
Allies: Nod
|
||||||
Enemies: GDI, Creeps
|
Enemies: GDI, Creeps
|
||||||
@@ -48,8 +48,8 @@ Players:
|
|||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
@@ -60,11 +60,11 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
PlayerReference@Creeps:
|
PlayerReference@Creeps:
|
||||||
Name: Creeps
|
Name: Creeps
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Nod, GDI
|
Enemies: Nod, GDI
|
||||||
|
|
||||||
Actors:
|
Actors:
|
||||||
|
|||||||
@@ -40,8 +40,8 @@ Players:
|
|||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
@@ -50,7 +50,7 @@ Players:
|
|||||||
Enemies: Nod
|
Enemies: Nod
|
||||||
PlayerReference@Nod:
|
PlayerReference@Nod:
|
||||||
Name: Nod
|
Name: Nod
|
||||||
Race: nod
|
Faction: nod
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
Allies: Nod
|
Allies: Nod
|
||||||
Enemies: GDI
|
Enemies: GDI
|
||||||
@@ -58,11 +58,11 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
PlayerReference@Creeps:
|
PlayerReference@Creeps:
|
||||||
Name: Creeps
|
Name: Creeps
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Nod, GDI
|
Enemies: Nod, GDI
|
||||||
|
|
||||||
Actors:
|
Actors:
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ Options:
|
|||||||
Players:
|
Players:
|
||||||
PlayerReference@Nod:
|
PlayerReference@Nod:
|
||||||
Name: Nod
|
Name: Nod
|
||||||
Race: nod
|
Faction: nod
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
Allies: Nod
|
Allies: Nod
|
||||||
Enemies: GDI
|
Enemies: GDI
|
||||||
@@ -46,14 +46,14 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
PlayerReference@GDI:
|
PlayerReference@GDI:
|
||||||
Name: GDI
|
Name: GDI
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
@@ -63,7 +63,7 @@ Players:
|
|||||||
PlayerReference@Creeps:
|
PlayerReference@Creeps:
|
||||||
Name: Creeps
|
Name: Creeps
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Nod, GDI
|
Enemies: Nod, GDI
|
||||||
|
|
||||||
Actors:
|
Actors:
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ Options:
|
|||||||
Players:
|
Players:
|
||||||
PlayerReference@Nod:
|
PlayerReference@Nod:
|
||||||
Name: Nod
|
Name: Nod
|
||||||
Race: nod
|
Faction: nod
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
Allies: Nod
|
Allies: Nod
|
||||||
Enemies: GDI
|
Enemies: GDI
|
||||||
@@ -48,8 +48,8 @@ Players:
|
|||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
@@ -60,11 +60,11 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
PlayerReference@Creeps:
|
PlayerReference@Creeps:
|
||||||
Name: Creeps
|
Name: Creeps
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Nod, GDI
|
Enemies: Nod, GDI
|
||||||
|
|
||||||
Actors:
|
Actors:
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ Options:
|
|||||||
Players:
|
Players:
|
||||||
PlayerReference@Nod:
|
PlayerReference@Nod:
|
||||||
Name: Nod
|
Name: Nod
|
||||||
Race: nod
|
Faction: nod
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
Allies: Nod
|
Allies: Nod
|
||||||
Enemies: GDI
|
Enemies: GDI
|
||||||
@@ -48,8 +48,8 @@ Players:
|
|||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
@@ -60,11 +60,11 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
PlayerReference@Creeps:
|
PlayerReference@Creeps:
|
||||||
Name: Creeps
|
Name: Creeps
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Nod, GDI
|
Enemies: Nod, GDI
|
||||||
|
|
||||||
Actors:
|
Actors:
|
||||||
|
|||||||
@@ -41,10 +41,10 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
PlayerReference@Nod:
|
PlayerReference@Nod:
|
||||||
Name: Nod
|
Name: Nod
|
||||||
Race: nod
|
Faction: nod
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
Allies: Nod
|
Allies: Nod
|
||||||
Enemies: GDI, Civillians
|
Enemies: GDI, Civillians
|
||||||
@@ -53,8 +53,8 @@ Players:
|
|||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
@@ -64,12 +64,12 @@ Players:
|
|||||||
PlayerReference@Civillians:
|
PlayerReference@Civillians:
|
||||||
Name: Civillians
|
Name: Civillians
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
Enemies: Nod
|
Enemies: Nod
|
||||||
PlayerReference@Creeps:
|
PlayerReference@Creeps:
|
||||||
Name: Creeps
|
Name: Creeps
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Nod, GDI
|
Enemies: Nod, GDI
|
||||||
|
|
||||||
Actors:
|
Actors:
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ Options:
|
|||||||
Players:
|
Players:
|
||||||
PlayerReference@Nod:
|
PlayerReference@Nod:
|
||||||
Name: Nod
|
Name: Nod
|
||||||
Race: nod
|
Faction: nod
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
Allies: Nod
|
Allies: Nod
|
||||||
Enemies: GDI
|
Enemies: GDI
|
||||||
@@ -48,8 +48,8 @@ Players:
|
|||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
@@ -60,16 +60,16 @@ Players:
|
|||||||
Name: AbandonedBase
|
Name: AbandonedBase
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
PlayerReference@Neutral:
|
PlayerReference@Neutral:
|
||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
PlayerReference@Creeps:
|
PlayerReference@Creeps:
|
||||||
Name: Creeps
|
Name: Creeps
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Nod, GDI
|
Enemies: Nod, GDI
|
||||||
|
|
||||||
Actors:
|
Actors:
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ Options:
|
|||||||
Players:
|
Players:
|
||||||
PlayerReference@Nod:
|
PlayerReference@Nod:
|
||||||
Name: Nod
|
Name: Nod
|
||||||
Race: nod
|
Faction: nod
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
Enemies: GDI, AbandonedBase
|
Enemies: GDI, AbandonedBase
|
||||||
PlayerReference@GDI:
|
PlayerReference@GDI:
|
||||||
@@ -47,8 +47,8 @@ Players:
|
|||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
@@ -58,12 +58,12 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
PlayerReference@AbandonedBase:
|
PlayerReference@AbandonedBase:
|
||||||
Name: AbandonedBase
|
Name: AbandonedBase
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
Enemies: Nod
|
Enemies: Nod
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -39,14 +39,14 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
PlayerReference@Villagers:
|
PlayerReference@Villagers:
|
||||||
Name: Villagers
|
Name: Villagers
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
PlayerReference@GDI:
|
PlayerReference@GDI:
|
||||||
Name: GDI
|
Name: GDI
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
Allies: Villagers
|
Allies: Villagers
|
||||||
Enemies: Nod
|
Enemies: Nod
|
||||||
@@ -55,8 +55,8 @@ Players:
|
|||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
@@ -65,7 +65,7 @@ Players:
|
|||||||
PlayerReference@Creeps:
|
PlayerReference@Creeps:
|
||||||
Name: Creeps
|
Name: Creeps
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Nod, GDI
|
Enemies: Nod, GDI
|
||||||
|
|
||||||
Actors:
|
Actors:
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ Options:
|
|||||||
Players:
|
Players:
|
||||||
PlayerReference@GDI:
|
PlayerReference@GDI:
|
||||||
Name: GDI
|
Name: GDI
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
Enemies: Nod
|
Enemies: Nod
|
||||||
PlayerReference@Nod:
|
PlayerReference@Nod:
|
||||||
@@ -46,8 +46,8 @@ Players:
|
|||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
@@ -57,7 +57,7 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
|
|
||||||
Actors:
|
Actors:
|
||||||
Actor0: t08
|
Actor0: t08
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ Options:
|
|||||||
Players:
|
Players:
|
||||||
PlayerReference@GDI:
|
PlayerReference@GDI:
|
||||||
Name: GDI
|
Name: GDI
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
Allies: GDI
|
Allies: GDI
|
||||||
Enemies: Nod
|
Enemies: Nod
|
||||||
@@ -47,8 +47,8 @@ Players:
|
|||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
@@ -58,7 +58,7 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
|
|
||||||
Actors:
|
Actors:
|
||||||
Actor0: t08
|
Actor0: t08
|
||||||
|
|||||||
@@ -40,10 +40,10 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
PlayerReference@GDI:
|
PlayerReference@GDI:
|
||||||
Name: GDI
|
Name: GDI
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
Allies: GDI
|
Allies: GDI
|
||||||
Enemies: Nod
|
Enemies: Nod
|
||||||
@@ -52,8 +52,8 @@ Players:
|
|||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
@@ -63,7 +63,7 @@ Players:
|
|||||||
PlayerReference@Creeps:
|
PlayerReference@Creeps:
|
||||||
Name: Creeps
|
Name: Creeps
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Nod, GDI
|
Enemies: Nod, GDI
|
||||||
|
|
||||||
Actors:
|
Actors:
|
||||||
|
|||||||
@@ -40,10 +40,10 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
PlayerReference@GDI:
|
PlayerReference@GDI:
|
||||||
Name: GDI
|
Name: GDI
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
Allies: GDI
|
Allies: GDI
|
||||||
Enemies: Nod
|
Enemies: Nod
|
||||||
@@ -52,8 +52,8 @@ Players:
|
|||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
@@ -63,7 +63,7 @@ Players:
|
|||||||
PlayerReference@Creeps:
|
PlayerReference@Creeps:
|
||||||
Name: Creeps
|
Name: Creeps
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Nod, GDI
|
Enemies: Nod, GDI
|
||||||
|
|
||||||
Actors:
|
Actors:
|
||||||
|
|||||||
@@ -39,14 +39,14 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
PlayerReference@NodSupporter:
|
PlayerReference@NodSupporter:
|
||||||
Name: NodSupporter
|
Name: NodSupporter
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
PlayerReference@GDI:
|
PlayerReference@GDI:
|
||||||
Name: GDI
|
Name: GDI
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
Enemies: Nod
|
Enemies: Nod
|
||||||
PlayerReference@Nod:
|
PlayerReference@Nod:
|
||||||
@@ -54,8 +54,8 @@ Players:
|
|||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
|
|||||||
@@ -36,21 +36,21 @@ Options:
|
|||||||
Players:
|
Players:
|
||||||
PlayerReference@GDI:
|
PlayerReference@GDI:
|
||||||
Name: GDI
|
Name: GDI
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
Enemies: Nod
|
Enemies: Nod
|
||||||
PlayerReference@Neutral:
|
PlayerReference@Neutral:
|
||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
PlayerReference@Nod:
|
PlayerReference@Nod:
|
||||||
Name: Nod
|
Name: Nod
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ Options:
|
|||||||
Players:
|
Players:
|
||||||
PlayerReference@GDI:
|
PlayerReference@GDI:
|
||||||
Name: GDI
|
Name: GDI
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
Allies: GDI
|
Allies: GDI
|
||||||
Enemies: Nod
|
Enemies: Nod
|
||||||
@@ -47,14 +47,14 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
PlayerReference@Nod:
|
PlayerReference@Nod:
|
||||||
Name: Nod
|
Name: Nod
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
|
|||||||
@@ -39,11 +39,11 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
PlayerReference@GDI:
|
PlayerReference@GDI:
|
||||||
Name: GDI
|
Name: GDI
|
||||||
Playable: False
|
Playable: False
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
Enemies: Nod
|
Enemies: Nod
|
||||||
PlayerReference@Nod:
|
PlayerReference@Nod:
|
||||||
@@ -51,8 +51,8 @@ Players:
|
|||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
|
|||||||
@@ -38,26 +38,26 @@ Players:
|
|||||||
PlayerReference@GDI:
|
PlayerReference@GDI:
|
||||||
Name: GDI
|
Name: GDI
|
||||||
Playable: False
|
Playable: False
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
Enemies: Nod
|
Enemies: Nod
|
||||||
PlayerReference@Neutral:
|
PlayerReference@Neutral:
|
||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
PlayerReference@Civilians:
|
PlayerReference@Civilians:
|
||||||
Name: Civilians
|
Name: Civilians
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
Enemies: Nod
|
Enemies: Nod
|
||||||
PlayerReference@Nod:
|
PlayerReference@Nod:
|
||||||
Name: Nod
|
Name: Nod
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ Players:
|
|||||||
PlayerReference@GDI:
|
PlayerReference@GDI:
|
||||||
Name: GDI
|
Name: GDI
|
||||||
Playable: False
|
Playable: False
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
Enemies: Nod
|
Enemies: Nod
|
||||||
PlayerReference@Nod:
|
PlayerReference@Nod:
|
||||||
@@ -46,8 +46,8 @@ Players:
|
|||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
@@ -57,7 +57,7 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
|
|
||||||
Actors:
|
Actors:
|
||||||
Actor0: brik
|
Actor0: brik
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -25,13 +25,13 @@ Options:
|
|||||||
Players:
|
Players:
|
||||||
PlayerReference@Nod:
|
PlayerReference@Nod:
|
||||||
Name: Nod
|
Name: Nod
|
||||||
Race: nod
|
Faction: nod
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
Allies: Nod
|
Allies: Nod
|
||||||
Enemies: GDI, Creeps
|
Enemies: GDI, Creeps
|
||||||
PlayerReference@GDI:
|
PlayerReference@GDI:
|
||||||
Name: GDI
|
Name: GDI
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
ColorRamp: 31,222,183
|
ColorRamp: 31,222,183
|
||||||
Allies: GDI
|
Allies: GDI
|
||||||
Enemies: Nod, Creeps
|
Enemies: Nod, Creeps
|
||||||
@@ -39,41 +39,41 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
PlayerReference@Multi0:
|
PlayerReference@Multi0:
|
||||||
Name: Multi0
|
Name: Multi0
|
||||||
Playable: True
|
Playable: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi1:
|
PlayerReference@Multi1:
|
||||||
Name: Multi1
|
Name: Multi1
|
||||||
Playable: True
|
Playable: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi2:
|
PlayerReference@Multi2:
|
||||||
Name: Multi2
|
Name: Multi2
|
||||||
Playable: True
|
Playable: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi3:
|
PlayerReference@Multi3:
|
||||||
Name: Multi3
|
Name: Multi3
|
||||||
Playable: True
|
Playable: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi4:
|
PlayerReference@Multi4:
|
||||||
Name: Multi4
|
Name: Multi4
|
||||||
Playable: True
|
Playable: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi5:
|
PlayerReference@Multi5:
|
||||||
Name: Multi5
|
Name: Multi5
|
||||||
Playable: True
|
Playable: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Creeps:
|
PlayerReference@Creeps:
|
||||||
Name: Creeps
|
Name: Creeps
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Nod, GDI, Multi0, Multi1, Multi2, Multi3, Multi4, Multi5
|
Enemies: Nod, GDI, Multi0, Multi1, Multi2, Multi3, Multi4, Multi5
|
||||||
|
|
||||||
Actors:
|
Actors:
|
||||||
|
|||||||
@@ -27,89 +27,89 @@ Options:
|
|||||||
AllyBuildRadius: False
|
AllyBuildRadius: False
|
||||||
FragileAlliances: False
|
FragileAlliances: False
|
||||||
StartingCash: 5000
|
StartingCash: 5000
|
||||||
ConfigurableStartingUnits: False
|
|
||||||
TechLevel: Unrestricted
|
TechLevel: Unrestricted
|
||||||
|
ConfigurableStartingUnits: False
|
||||||
|
|
||||||
Players:
|
Players:
|
||||||
PlayerReference@Neutral:
|
PlayerReference@Neutral:
|
||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
PlayerReference@Multi0:
|
PlayerReference@Multi0:
|
||||||
Name: Multi0
|
Name: Multi0
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi1:
|
PlayerReference@Multi1:
|
||||||
Name: Multi1
|
Name: Multi1
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi2:
|
PlayerReference@Multi2:
|
||||||
Name: Multi2
|
Name: Multi2
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi3:
|
PlayerReference@Multi3:
|
||||||
Name: Multi3
|
Name: Multi3
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi4:
|
PlayerReference@Multi4:
|
||||||
Name: Multi4
|
Name: Multi4
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi5:
|
PlayerReference@Multi5:
|
||||||
Name: Multi5
|
Name: Multi5
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi6:
|
PlayerReference@Multi6:
|
||||||
Name: Multi6
|
Name: Multi6
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi7:
|
PlayerReference@Multi7:
|
||||||
Name: Multi7
|
Name: Multi7
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi8:
|
PlayerReference@Multi8:
|
||||||
Name: Multi8
|
Name: Multi8
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi9:
|
PlayerReference@Multi9:
|
||||||
Name: Multi9
|
Name: Multi9
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: nod
|
Faction: nod
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Creeps:
|
PlayerReference@Creeps:
|
||||||
Name: Creeps
|
Name: Creeps
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: gdi
|
Faction: gdi
|
||||||
Enemies: Multi0, Multi1, Multi2, Multi3, Multi4, Multi5, Multi6, Multi7, Multi8, Multi9
|
Enemies: Multi0, Multi1, Multi2, Multi3, Multi4, Multi5, Multi6, Multi7, Multi8, Multi9
|
||||||
|
|
||||||
Actors:
|
Actors:
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -29,33 +29,33 @@ Options:
|
|||||||
AllyBuildRadius: False
|
AllyBuildRadius: False
|
||||||
FragileAlliances: False
|
FragileAlliances: False
|
||||||
StartingCash: 2300
|
StartingCash: 2300
|
||||||
ConfigurableStartingUnits: False
|
|
||||||
ShortGame: False
|
|
||||||
TechLevel: Low
|
TechLevel: Low
|
||||||
|
ConfigurableStartingUnits: False
|
||||||
Difficulties: Easy, Normal, Hard
|
Difficulties: Easy, Normal, Hard
|
||||||
|
ShortGame: False
|
||||||
|
|
||||||
Players:
|
Players:
|
||||||
PlayerReference@Neutral:
|
PlayerReference@Neutral:
|
||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
PlayerReference@Creeps:
|
PlayerReference@Creeps:
|
||||||
Name: Creeps
|
Name: Creeps
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
PlayerReference@Atreides:
|
PlayerReference@Atreides:
|
||||||
Name: Atreides
|
Name: Atreides
|
||||||
Playable: true
|
Playable: true
|
||||||
Race: atreides
|
Faction: atreides
|
||||||
LockRace: true
|
LockFaction: true
|
||||||
ColorRamp: 170,255,200
|
ColorRamp: 170,255,200
|
||||||
LockColor: true
|
LockColor: true
|
||||||
Enemies: Harkonnen
|
Enemies: Harkonnen
|
||||||
PlayerReference@Harkonnen:
|
PlayerReference@Harkonnen:
|
||||||
Name: Harkonnen
|
Name: Harkonnen
|
||||||
Race: harkonnen
|
Faction: harkonnen
|
||||||
LockRace: true
|
LockFaction: true
|
||||||
ColorRamp: 0,255,127
|
ColorRamp: 0,255,127
|
||||||
LockColor: true
|
LockColor: true
|
||||||
Enemies: Atreides
|
Enemies: Atreides
|
||||||
|
|||||||
@@ -29,33 +29,33 @@ Options:
|
|||||||
AllyBuildRadius: False
|
AllyBuildRadius: False
|
||||||
FragileAlliances: False
|
FragileAlliances: False
|
||||||
StartingCash: 2300
|
StartingCash: 2300
|
||||||
ConfigurableStartingUnits: False
|
|
||||||
ShortGame: False
|
|
||||||
TechLevel: Low
|
TechLevel: Low
|
||||||
|
ConfigurableStartingUnits: False
|
||||||
Difficulties: Easy, Normal, Hard
|
Difficulties: Easy, Normal, Hard
|
||||||
|
ShortGame: False
|
||||||
|
|
||||||
Players:
|
Players:
|
||||||
PlayerReference@Neutral:
|
PlayerReference@Neutral:
|
||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
PlayerReference@Creeps:
|
PlayerReference@Creeps:
|
||||||
Name: Creeps
|
Name: Creeps
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
PlayerReference@Atreides:
|
PlayerReference@Atreides:
|
||||||
Name: Atreides
|
Name: Atreides
|
||||||
Playable: true
|
Playable: true
|
||||||
Race: atreides
|
Faction: atreides
|
||||||
LockRace: true
|
LockFaction: true
|
||||||
ColorRamp: 170,255,200
|
ColorRamp: 170,255,200
|
||||||
LockColor: true
|
LockColor: true
|
||||||
Enemies: Harkonnen
|
Enemies: Harkonnen
|
||||||
PlayerReference@Harkonnen:
|
PlayerReference@Harkonnen:
|
||||||
Name: Harkonnen
|
Name: Harkonnen
|
||||||
Race: harkonnen
|
Faction: harkonnen
|
||||||
LockRace: true
|
LockFaction: true
|
||||||
ColorRamp: 0,255,127
|
ColorRamp: 0,255,127
|
||||||
LockColor: true
|
LockColor: true
|
||||||
Enemies: Atreides
|
Enemies: Atreides
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -25,21 +25,21 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: atreides
|
Faction: atreides
|
||||||
PlayerReference@Multi0:
|
PlayerReference@Multi0:
|
||||||
Name: Multi0
|
Name: Multi0
|
||||||
Playable: True
|
Playable: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi1:
|
PlayerReference@Multi1:
|
||||||
Name: Multi1
|
Name: Multi1
|
||||||
Playable: True
|
Playable: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Creeps:
|
PlayerReference@Creeps:
|
||||||
Name: Creeps
|
Name: Creeps
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: atreides
|
Faction: atreides
|
||||||
Enemies: Multi0, Multi1
|
Enemies: Multi0, Multi1
|
||||||
|
|
||||||
Actors:
|
Actors:
|
||||||
|
|||||||
@@ -27,41 +27,41 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: atreides
|
Faction: atreides
|
||||||
PlayerReference@Multi0:
|
PlayerReference@Multi0:
|
||||||
Name: Multi0
|
Name: Multi0
|
||||||
Playable: True
|
Playable: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi1:
|
PlayerReference@Multi1:
|
||||||
Name: Multi1
|
Name: Multi1
|
||||||
Playable: True
|
Playable: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi2:
|
PlayerReference@Multi2:
|
||||||
Name: Multi2
|
Name: Multi2
|
||||||
Playable: True
|
Playable: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi3:
|
PlayerReference@Multi3:
|
||||||
Name: Multi3
|
Name: Multi3
|
||||||
Playable: True
|
Playable: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi4:
|
PlayerReference@Multi4:
|
||||||
Name: Multi4
|
Name: Multi4
|
||||||
Playable: True
|
Playable: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi5:
|
PlayerReference@Multi5:
|
||||||
Name: Multi5
|
Name: Multi5
|
||||||
Playable: True
|
Playable: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Creeps:
|
PlayerReference@Creeps:
|
||||||
Name: Creeps
|
Name: Creeps
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: atreides
|
Faction: atreides
|
||||||
Enemies: Multi0, Multi1, Multi2, Multi3, Multi4, Multi5
|
Enemies: Multi0, Multi1, Multi2, Multi3, Multi4, Multi5
|
||||||
|
|
||||||
Actors:
|
Actors:
|
||||||
|
|||||||
@@ -25,21 +25,21 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: atreides
|
Faction: atreides
|
||||||
PlayerReference@Multi0:
|
PlayerReference@Multi0:
|
||||||
Name: Multi0
|
Name: Multi0
|
||||||
Playable: True
|
Playable: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi1:
|
PlayerReference@Multi1:
|
||||||
Name: Multi1
|
Name: Multi1
|
||||||
Playable: True
|
Playable: True
|
||||||
Race: Random
|
Faction: Random
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Creeps:
|
PlayerReference@Creeps:
|
||||||
Name: Creeps
|
Name: Creeps
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: atreides
|
Faction: atreides
|
||||||
Enemies: Multi0, Multi1
|
Enemies: Multi0, Multi1
|
||||||
|
|
||||||
Actors:
|
Actors:
|
||||||
|
|||||||
@@ -27,15 +27,15 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: atreides
|
Faction: atreides
|
||||||
PlayerReference@Atreides:
|
PlayerReference@Atreides:
|
||||||
Name: Atreides
|
Name: Atreides
|
||||||
Race: atreides
|
Faction: atreides
|
||||||
ColorRamp: 161,134,200
|
ColorRamp: 161,134,200
|
||||||
PlayerReference@Creeps:
|
PlayerReference@Creeps:
|
||||||
Name: Creeps
|
Name: Creeps
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: atreides
|
Faction: atreides
|
||||||
Enemies: Atreides
|
Enemies: Atreides
|
||||||
ColorRamp: 210,255,127
|
ColorRamp: 210,255,127
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -37,21 +37,21 @@ Options:
|
|||||||
Players:
|
Players:
|
||||||
PlayerReference@USSR:
|
PlayerReference@USSR:
|
||||||
Name: USSR
|
Name: USSR
|
||||||
Race: soviet
|
Faction: soviet
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
Enemies: Greece, England
|
Enemies: Greece, England
|
||||||
PlayerReference@Neutral:
|
PlayerReference@Neutral:
|
||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: allies
|
Faction: allies
|
||||||
PlayerReference@Greece:
|
PlayerReference@Greece:
|
||||||
Name: Greece
|
Name: Greece
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: allies
|
Faction: allies
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 161,134,200
|
ColorRamp: 161,134,200
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
@@ -60,7 +60,7 @@ Players:
|
|||||||
Enemies: USSR
|
Enemies: USSR
|
||||||
PlayerReference@England:
|
PlayerReference@England:
|
||||||
Name: England
|
Name: England
|
||||||
Race: allies
|
Faction: allies
|
||||||
ColorRamp: 76,196,190
|
ColorRamp: 76,196,190
|
||||||
Allies: Greece
|
Allies: Greece
|
||||||
Enemies: USSR
|
Enemies: USSR
|
||||||
|
|||||||
@@ -37,14 +37,14 @@ Options:
|
|||||||
Players:
|
Players:
|
||||||
PlayerReference@USSR:
|
PlayerReference@USSR:
|
||||||
Name: USSR
|
Name: USSR
|
||||||
Race: soviet
|
Faction: soviet
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
Allies: Ukraine
|
Allies: Ukraine
|
||||||
Enemies: Greece, France
|
Enemies: Greece, France
|
||||||
PlayerReference@France:
|
PlayerReference@France:
|
||||||
Name: France
|
Name: France
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: allies
|
Faction: allies
|
||||||
ColorRamp: 115,115,143
|
ColorRamp: 115,115,143
|
||||||
Allies: Greece, France
|
Allies: Greece, France
|
||||||
Enemies: USSR, Ukraine
|
Enemies: USSR, Ukraine
|
||||||
@@ -52,10 +52,10 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: allies
|
Faction: allies
|
||||||
PlayerReference@Ukraine:
|
PlayerReference@Ukraine:
|
||||||
Name: Ukraine
|
Name: Ukraine
|
||||||
Race: soviet
|
Faction: soviet
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
Allies: USSR
|
Allies: USSR
|
||||||
Enemies: Greece, France
|
Enemies: Greece, France
|
||||||
@@ -64,8 +64,8 @@ Players:
|
|||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: allies
|
Faction: allies
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 161,134,200
|
ColorRamp: 161,134,200
|
||||||
LockSpawn: True
|
LockSpawn: True
|
||||||
|
|||||||
@@ -39,18 +39,18 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: allies
|
Faction: allies
|
||||||
PlayerReference@USSR:
|
PlayerReference@USSR:
|
||||||
Name: USSR
|
Name: USSR
|
||||||
Race: soviet
|
Faction: soviet
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
Enemies: Greece
|
Enemies: Greece
|
||||||
PlayerReference@Greece:
|
PlayerReference@Greece:
|
||||||
Name: Greece
|
Name: Greece
|
||||||
Playable: True
|
Playable: True
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: allies
|
Faction: allies
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 161,134,236
|
ColorRamp: 161,134,236
|
||||||
Enemies: USSR
|
Enemies: USSR
|
||||||
|
|||||||
@@ -39,18 +39,18 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: allies
|
Faction: allies
|
||||||
PlayerReference@USSR:
|
PlayerReference@USSR:
|
||||||
Name: USSR
|
Name: USSR
|
||||||
Race: soviet
|
Faction: soviet
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
Enemies: Greece
|
Enemies: Greece
|
||||||
PlayerReference@Greece:
|
PlayerReference@Greece:
|
||||||
Name: Greece
|
Name: Greece
|
||||||
Playable: True
|
Playable: True
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: allies
|
Faction: allies
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 161,134,236
|
ColorRamp: 161,134,236
|
||||||
Enemies: USSR
|
Enemies: USSR
|
||||||
|
|||||||
@@ -41,18 +41,18 @@ Players:
|
|||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: allies
|
Faction: allies
|
||||||
PlayerReference@USSR:
|
PlayerReference@USSR:
|
||||||
Name: USSR
|
Name: USSR
|
||||||
Race: soviet
|
Faction: soviet
|
||||||
ColorRamp: 3,255,127
|
ColorRamp: 3,255,127
|
||||||
Enemies: Greece
|
Enemies: Greece
|
||||||
PlayerReference@Greece:
|
PlayerReference@Greece:
|
||||||
Name: Greece
|
Name: Greece
|
||||||
Playable: True
|
Playable: True
|
||||||
Required: True
|
Required: True
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: allies
|
Faction: allies
|
||||||
LockColor: True
|
LockColor: True
|
||||||
ColorRamp: 161,134,236
|
ColorRamp: 161,134,236
|
||||||
Enemies: USSR
|
Enemies: USSR
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -27,75 +27,75 @@ Options:
|
|||||||
AllyBuildRadius: False
|
AllyBuildRadius: False
|
||||||
FragileAlliances: False
|
FragileAlliances: False
|
||||||
StartingCash: 60
|
StartingCash: 60
|
||||||
ConfigurableStartingUnits: False
|
|
||||||
TechLevel: Unrestricted
|
TechLevel: Unrestricted
|
||||||
|
ConfigurableStartingUnits: False
|
||||||
|
|
||||||
Players:
|
Players:
|
||||||
PlayerReference@Neutral:
|
PlayerReference@Neutral:
|
||||||
Name: Neutral
|
Name: Neutral
|
||||||
OwnsWorld: True
|
OwnsWorld: True
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: allies
|
Faction: allies
|
||||||
PlayerReference@Creeps:
|
PlayerReference@Creeps:
|
||||||
Name: Creeps
|
Name: Creeps
|
||||||
NonCombatant: True
|
NonCombatant: True
|
||||||
Race: allies
|
Faction: allies
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi0:
|
PlayerReference@Multi0:
|
||||||
Name: Multi0
|
Name: Multi0
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: soviet
|
Faction: soviet
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi1:
|
PlayerReference@Multi1:
|
||||||
Name: Multi1
|
Name: Multi1
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: soviet
|
Faction: soviet
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi2:
|
PlayerReference@Multi2:
|
||||||
Name: Multi2
|
Name: Multi2
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: soviet
|
Faction: soviet
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi3:
|
PlayerReference@Multi3:
|
||||||
Name: Multi3
|
Name: Multi3
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: soviet
|
Faction: soviet
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi4:
|
PlayerReference@Multi4:
|
||||||
Name: Multi4
|
Name: Multi4
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: soviet
|
Faction: soviet
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi5:
|
PlayerReference@Multi5:
|
||||||
Name: Multi5
|
Name: Multi5
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: soviet
|
Faction: soviet
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi6:
|
PlayerReference@Multi6:
|
||||||
Name: Multi6
|
Name: Multi6
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: soviet
|
Faction: soviet
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
PlayerReference@Multi7:
|
PlayerReference@Multi7:
|
||||||
Name: Multi7
|
Name: Multi7
|
||||||
Playable: True
|
Playable: True
|
||||||
AllowBots: False
|
AllowBots: False
|
||||||
LockRace: True
|
LockFaction: True
|
||||||
Race: soviet
|
Faction: soviet
|
||||||
Enemies: Creeps
|
Enemies: Creeps
|
||||||
|
|
||||||
Actors:
|
Actors:
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user