# Set Alliance (One-Way)
Grammar — Make player sourcePlayer treat player targetPlayer as alliance
Flags —Action
Sets the alliance settings of one player towards another player, but not vice-versa. This action will determine how the Source Player treats the Target Player, such as whether or not the Source Player*“s units fight the Target Player"s units. Pushable means that the Target Player"s units are allowed to push the Source Player”*s units out of the way if they are trying to path through them.
# Arguments
- int— Source Player
- int— Target Player
- int<preset::AllianceSetting> — Alliance Setting
Returns — void
void libNtve_gf_SetAllianceOneWay(
	int lp_sourcePlayer,
	int lp_targetPlayer,
	int lp_alliance,
);
# Related
Category: Player / Alliances
- Player Changes Alliances — void— TriggerAddEventPlayerAllianceChange
- Set Alliance — void— libNtve_gf_SetAlliance
- Set Alliance (One-Way) — void— libNtve_gf_SetAllianceOneWay
- Set Alliance Aspect — void— PlayerSetAlliance
- Set Alliance For Player Group — void— libNtve_gf_SetPlayerGroupAlliance
- Set Alliance Between Two Player Groups — void— libNtve_gf_SetAllianceBetweenTwoPlayerGroups
- Set Alliance Aspect For Player Group — void— libNtve_gf_SetAllianceAspectForPlayerGroup
- Alliance Aspect — bool— PlayerGetAlliance
- Get Relationship Between Players — bool— libNtve_gf_PlayerIsEnemy
# Examples
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/thorner04.sc2map/MapScript.galaxy:841
    libNtve_gf_SetAlliance(gv_p05_DOMINION_RAIDER, gv_p06_CIVILIANS, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAlliance(gv_p07_HORNERBASE, gv_p06_CIVILIANS, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_p08_DOMINION, gv_p06_CIVILIANS, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAlliance(gv_p07_HORNERBASE, gv_p02_DOMINION_INFANTRY, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAlliance(gv_p07_HORNERBASE, gv_p03_DOMINION_SIEGE, libNtve_ge_AllianceSetting_Neutral);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/thorner04.sc2map/MapScript.galaxy:846
    libNtve_gf_SetAlliance(gv_p07_HORNERBASE, gv_p04_DOMINION_AIR, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAlliance(gv_p07_HORNERBASE, gv_p05_DOMINION_RAIDER, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_p07_HORNERBASE, gv_p08_DOMINION, libNtve_ge_AllianceSetting_Neutral);
    libCamp_gf_ApplyCampaignTech(gv_p07_HORNERBASE);
    PlayerModifyPropertyInt(gv_p02_DOMINION_INFANTRY, c_playerPropMinerals, c_playerPropOperSetTo, 5000);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/thorner05s.sc2map/MapScript.galaxy:11871
    TriggerEnable(TriggerGetCurrent(), false);
    libNtve_gf_SetAllianceOneWay(gv_p05_ZERG_LAB_SPECIMENS, gv_p02_DOMINION, libNtve_ge_AllianceSetting_Enemy);
    gv_midLab01Zerglings = false;
    CameraShakeStart(gv_p01_USER, c_cameraPositionTarget, c_cameraDirectionZ, 0.5, 1.0, 100.0, 1.0);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/ttosh03a.sc2map/MapScript.galaxy:580
    libNtve_gf_SetAlliance(gv_p2_RAYNOR_LIGHTBLUE, gv_p11_ALLIED_CELLBLOCK_A, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_p2_RAYNOR_LIGHTBLUE, gv_p12_ALLIED_CELLBLOCK_B, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAllianceOneWay(gv_p2_RAYNOR_LIGHTBLUE, gv_p1_USER, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_p8_ALLIED_PINK, gv_p7_PRISONER_YELLOW, libNtve_ge_AllianceSetting_NeutralWithSharedVision);
    libNtve_gf_SetAlliance(gv_p8_ALLIED_PINK, gv_p9_ALLIED_GREEN, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/ttosh03a.sc2map/MapScript.galaxy:585
    libNtve_gf_SetAlliance(gv_p8_ALLIED_PINK, gv_p11_ALLIED_CELLBLOCK_A, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_p8_ALLIED_PINK, gv_p12_ALLIED_CELLBLOCK_B, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAllianceOneWay(gv_p8_ALLIED_PINK, gv_p1_USER, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_p9_ALLIED_GREEN, gv_p7_PRISONER_YELLOW, libNtve_ge_AllianceSetting_NeutralWithSharedVision);
    libNtve_gf_SetAlliance(gv_p9_ALLIED_GREEN, gv_p11_ALLIED_CELLBLOCK_A, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/ttosh03a.sc2map/MapScript.galaxy:589
    libNtve_gf_SetAlliance(gv_p9_ALLIED_GREEN, gv_p11_ALLIED_CELLBLOCK_A, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_p9_ALLIED_GREEN, gv_p12_ALLIED_CELLBLOCK_B, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAllianceOneWay(gv_p9_ALLIED_GREEN, gv_p1_USER, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_p11_ALLIED_CELLBLOCK_A, gv_p7_PRISONER_YELLOW, libNtve_ge_AllianceSetting_NeutralWithSharedVision);
    libNtve_gf_SetAlliance(gv_p11_ALLIED_CELLBLOCK_A, gv_p12_ALLIED_CELLBLOCK_B, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/ttosh03a.sc2map/MapScript.galaxy:592
    libNtve_gf_SetAlliance(gv_p11_ALLIED_CELLBLOCK_A, gv_p7_PRISONER_YELLOW, libNtve_ge_AllianceSetting_NeutralWithSharedVision);
    libNtve_gf_SetAlliance(gv_p11_ALLIED_CELLBLOCK_A, gv_p12_ALLIED_CELLBLOCK_B, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAllianceOneWay(gv_p11_ALLIED_CELLBLOCK_A, gv_p1_USER, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_p12_ALLIED_CELLBLOCK_B, gv_p7_PRISONER_YELLOW, libNtve_ge_AllianceSetting_NeutralWithSharedVision);
    libNtve_gf_SetAllianceOneWay(gv_p12_ALLIED_CELLBLOCK_B, gv_p1_USER, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/ttosh03a.sc2map/MapScript.galaxy:594
    libNtve_gf_SetAllianceOneWay(gv_p11_ALLIED_CELLBLOCK_A, gv_p1_USER, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_p12_ALLIED_CELLBLOCK_B, gv_p7_PRISONER_YELLOW, libNtve_ge_AllianceSetting_NeutralWithSharedVision);
    libNtve_gf_SetAllianceOneWay(gv_p12_ALLIED_CELLBLOCK_B, gv_p1_USER, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    PlayerGroupAdd(gv_dominionPlayers, gv_p3_DOMINION_RED);
    PlayerGroupAdd(gv_dominionPlayers, gv_p4_DOMINION_PURPLE);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/ttosh03a.sc2map/MapScript.galaxy:609
    libNtve_gf_SetAlliance(gv_p5_DOMINION_GREY, gv_p7_PRISONER_YELLOW, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAlliance(gv_p6_DOMINION_ORANGE, gv_p7_PRISONER_YELLOW, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_p6_DOMINION_ORANGE, gv_p3_DOMINION_RED, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    PlayerModifyPropertyInt(gv_p1_USER, c_playerPropMinerals, c_playerPropOperSetTo, 0);
    PlayerModifyPropertyInt(gv_p1_USER, c_playerPropVespene, c_playerPropOperSetTo, 0);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tzeratul01.sc2map/MapScript.galaxy:5795
    gf_ActivatePatrolAIForUnit(UnitFromId(831), PointFromId(850), 1.0);
    TechTreeUpgradeAddLevel(gv_p3_ZERG, "hydraliskspeed", 1);
    libNtve_gf_SetAllianceOneWay(gv_p3_ZERG, 0, libNtve_ge_AllianceSetting_Enemy);
    TimerStart(gv_runoutTimer, 9999.0, false, c_timeGame);
    libNtve_gf_MakeUnitInvulnerable(gv_tHEONEKERRIGAN, false);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tzeratul02.sc2map/MapScript.galaxy:4058
    UnitSetState(EventUnit(), c_unitStateInvulnerable, false);
    PlayerSetAlliance(gv_p2_PROTOSS_STALKER, c_allianceIdVision, gv_p1_USER, false);
    libNtve_gf_SetAllianceOneWay(gv_p2_PROTOSS_STALKER, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p3_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p4_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tzeratul02.sc2map/MapScript.galaxy:4059
    PlayerSetAlliance(gv_p2_PROTOSS_STALKER, c_allianceIdVision, gv_p1_USER, false);
    libNtve_gf_SetAllianceOneWay(gv_p2_PROTOSS_STALKER, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p3_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p4_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p6_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tzeratul02.sc2map/MapScript.galaxy:4060
    libNtve_gf_SetAllianceOneWay(gv_p2_PROTOSS_STALKER, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p3_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p4_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p6_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    Wait(1.0, c_timeGame);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tzeratul02.sc2map/MapScript.galaxy:4061
    libNtve_gf_SetAllianceOneWay(gv_p3_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p4_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p6_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    Wait(1.0, c_timeGame);
    libNtve_gf_SetAlliance(gv_p1_USER, gv_p2_PROTOSS_STALKER, libNtve_ge_AllianceSetting_Enemy);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tzeratul02.sc2map/MapScript.galaxy:4144
    UnitSetState(EventUnit(), c_unitStateInvulnerable, false);
    PlayerSetAlliance(gv_p2_PROTOSS_STALKER, c_allianceIdVision, gv_p1_USER, false);
    libNtve_gf_SetAllianceOneWay(gv_p2_PROTOSS_STALKER, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p3_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p4_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tzeratul02.sc2map/MapScript.galaxy:4145
    PlayerSetAlliance(gv_p2_PROTOSS_STALKER, c_allianceIdVision, gv_p1_USER, false);
    libNtve_gf_SetAllianceOneWay(gv_p2_PROTOSS_STALKER, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p3_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p4_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p6_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tzeratul02.sc2map/MapScript.galaxy:4146
    libNtve_gf_SetAllianceOneWay(gv_p2_PROTOSS_STALKER, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p3_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p4_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p6_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    Wait(1.0, c_timeGame);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tzeratul02.sc2map/MapScript.galaxy:4147
    libNtve_gf_SetAllianceOneWay(gv_p3_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p4_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p6_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    Wait(1.0, c_timeGame);
    libNtve_gf_SetAlliance(gv_p1_USER, gv_p2_PROTOSS_STALKER, libNtve_ge_AllianceSetting_Enemy);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/rushdefense.sc2map/MapScript.galaxy:329
    }
    libNtve_gf_SetAllianceOneWay(gv_p2_ENEMY_ZERG, gv_pLAYER_USER, 6);
    libNtve_gf_SetAllianceOneWay(gv_p3_ENEMY_PROTOSS, gv_pLAYER_USER, 6);
    libNtve_gf_SetAlliance(gv_p2_ENEMY_ZERG, gv_p3_ENEMY_PROTOSS, 1);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/rushdefense.sc2map/MapScript.galaxy:330
    libNtve_gf_SetAllianceOneWay(gv_p2_ENEMY_ZERG, gv_pLAYER_USER, 6);
    libNtve_gf_SetAllianceOneWay(gv_p3_ENEMY_PROTOSS, gv_pLAYER_USER, 6);
    libNtve_gf_SetAlliance(gv_p2_ENEMY_ZERG, gv_p3_ENEMY_PROTOSS, 1);
    PlayerGroupAdd(gv_allEnemyPlayers, gv_p2_ENEMY_ZERG);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner04.sc2map — MapScript.galaxy:841
    libNtve_gf_SetAlliance(gv_p05_DOMINION_RAIDER, gv_p06_CIVILIANS, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAlliance(gv_p07_HORNERBASE, gv_p06_CIVILIANS, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_p08_DOMINION, gv_p06_CIVILIANS, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAlliance(gv_p07_HORNERBASE, gv_p02_DOMINION_INFANTRY, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAlliance(gv_p07_HORNERBASE, gv_p03_DOMINION_SIEGE, libNtve_ge_AllianceSetting_Neutral);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner04.sc2map — MapScript.galaxy:846
    libNtve_gf_SetAlliance(gv_p07_HORNERBASE, gv_p04_DOMINION_AIR, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAlliance(gv_p07_HORNERBASE, gv_p05_DOMINION_RAIDER, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_p07_HORNERBASE, gv_p08_DOMINION, libNtve_ge_AllianceSetting_Neutral);
    libCamp_gf_ApplyCampaignTech(gv_p07_HORNERBASE);
    PlayerModifyPropertyInt(gv_p02_DOMINION_INFANTRY, c_playerPropMinerals, c_playerPropOperSetTo, 5000);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner05s.sc2map — MapScript.galaxy:11871
    TriggerEnable(TriggerGetCurrent(), false);
    libNtve_gf_SetAllianceOneWay(gv_p05_ZERG_LAB_SPECIMENS, gv_p02_DOMINION, libNtve_ge_AllianceSetting_Enemy);
    gv_midLab01Zerglings = false;
    CameraShakeStart(gv_p01_USER, c_cameraPositionTarget, c_cameraDirectionZ, 0.5, 1.0, 100.0, 1.0);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/ttosh03a.sc2map — MapScript.galaxy:580
    libNtve_gf_SetAlliance(gv_p2_RAYNOR_LIGHTBLUE, gv_p11_ALLIED_CELLBLOCK_A, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_p2_RAYNOR_LIGHTBLUE, gv_p12_ALLIED_CELLBLOCK_B, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAllianceOneWay(gv_p2_RAYNOR_LIGHTBLUE, gv_p1_USER, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_p8_ALLIED_PINK, gv_p7_PRISONER_YELLOW, libNtve_ge_AllianceSetting_NeutralWithSharedVision);
    libNtve_gf_SetAlliance(gv_p8_ALLIED_PINK, gv_p9_ALLIED_GREEN, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/ttosh03a.sc2map — MapScript.galaxy:585
    libNtve_gf_SetAlliance(gv_p8_ALLIED_PINK, gv_p11_ALLIED_CELLBLOCK_A, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_p8_ALLIED_PINK, gv_p12_ALLIED_CELLBLOCK_B, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAllianceOneWay(gv_p8_ALLIED_PINK, gv_p1_USER, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_p9_ALLIED_GREEN, gv_p7_PRISONER_YELLOW, libNtve_ge_AllianceSetting_NeutralWithSharedVision);
    libNtve_gf_SetAlliance(gv_p9_ALLIED_GREEN, gv_p11_ALLIED_CELLBLOCK_A, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/ttosh03a.sc2map — MapScript.galaxy:589
    libNtve_gf_SetAlliance(gv_p9_ALLIED_GREEN, gv_p11_ALLIED_CELLBLOCK_A, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_p9_ALLIED_GREEN, gv_p12_ALLIED_CELLBLOCK_B, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAllianceOneWay(gv_p9_ALLIED_GREEN, gv_p1_USER, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_p11_ALLIED_CELLBLOCK_A, gv_p7_PRISONER_YELLOW, libNtve_ge_AllianceSetting_NeutralWithSharedVision);
    libNtve_gf_SetAlliance(gv_p11_ALLIED_CELLBLOCK_A, gv_p12_ALLIED_CELLBLOCK_B, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/ttosh03a.sc2map — MapScript.galaxy:592
    libNtve_gf_SetAlliance(gv_p11_ALLIED_CELLBLOCK_A, gv_p7_PRISONER_YELLOW, libNtve_ge_AllianceSetting_NeutralWithSharedVision);
    libNtve_gf_SetAlliance(gv_p11_ALLIED_CELLBLOCK_A, gv_p12_ALLIED_CELLBLOCK_B, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAllianceOneWay(gv_p11_ALLIED_CELLBLOCK_A, gv_p1_USER, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_p12_ALLIED_CELLBLOCK_B, gv_p7_PRISONER_YELLOW, libNtve_ge_AllianceSetting_NeutralWithSharedVision);
    libNtve_gf_SetAllianceOneWay(gv_p12_ALLIED_CELLBLOCK_B, gv_p1_USER, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/ttosh03a.sc2map — MapScript.galaxy:594
    libNtve_gf_SetAllianceOneWay(gv_p11_ALLIED_CELLBLOCK_A, gv_p1_USER, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_p12_ALLIED_CELLBLOCK_B, gv_p7_PRISONER_YELLOW, libNtve_ge_AllianceSetting_NeutralWithSharedVision);
    libNtve_gf_SetAllianceOneWay(gv_p12_ALLIED_CELLBLOCK_B, gv_p1_USER, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    PlayerGroupAdd(gv_dominionPlayers, gv_p3_DOMINION_RED);
    PlayerGroupAdd(gv_dominionPlayers, gv_p4_DOMINION_PURPLE);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/ttosh03a.sc2map — MapScript.galaxy:609
    libNtve_gf_SetAlliance(gv_p5_DOMINION_GREY, gv_p7_PRISONER_YELLOW, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAlliance(gv_p6_DOMINION_ORANGE, gv_p7_PRISONER_YELLOW, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_p6_DOMINION_ORANGE, gv_p3_DOMINION_RED, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    PlayerModifyPropertyInt(gv_p1_USER, c_playerPropMinerals, c_playerPropOperSetTo, 0);
    PlayerModifyPropertyInt(gv_p1_USER, c_playerPropVespene, c_playerPropOperSetTo, 0);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tzeratul01.sc2map — MapScript.galaxy:5795
    gf_ActivatePatrolAIForUnit(UnitFromId(831), PointFromId(850), 1.0);
    TechTreeUpgradeAddLevel(gv_p3_ZERG, "hydraliskspeed", 1);
    libNtve_gf_SetAllianceOneWay(gv_p3_ZERG, 0, libNtve_ge_AllianceSetting_Enemy);
    TimerStart(gv_runoutTimer, 9999.0, false, c_timeGame);
    libNtve_gf_MakeUnitInvulnerable(gv_tHEONEKERRIGAN, false);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tzeratul02.sc2map — MapScript.galaxy:4058
    UnitSetState(EventUnit(), c_unitStateInvulnerable, false);
    PlayerSetAlliance(gv_p2_PROTOSS_STALKER, c_allianceIdVision, gv_p1_USER, false);
    libNtve_gf_SetAllianceOneWay(gv_p2_PROTOSS_STALKER, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p3_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p4_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tzeratul02.sc2map — MapScript.galaxy:4059
    PlayerSetAlliance(gv_p2_PROTOSS_STALKER, c_allianceIdVision, gv_p1_USER, false);
    libNtve_gf_SetAllianceOneWay(gv_p2_PROTOSS_STALKER, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p3_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p4_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p6_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tzeratul02.sc2map — MapScript.galaxy:4060
    libNtve_gf_SetAllianceOneWay(gv_p2_PROTOSS_STALKER, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p3_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p4_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p6_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    Wait(1.0, c_timeGame);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tzeratul02.sc2map — MapScript.galaxy:4061
    libNtve_gf_SetAllianceOneWay(gv_p3_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p4_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p6_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    Wait(1.0, c_timeGame);
    libNtve_gf_SetAlliance(gv_p1_USER, gv_p2_PROTOSS_STALKER, libNtve_ge_AllianceSetting_Enemy);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tzeratul02.sc2map — MapScript.galaxy:4144
    UnitSetState(EventUnit(), c_unitStateInvulnerable, false);
    PlayerSetAlliance(gv_p2_PROTOSS_STALKER, c_allianceIdVision, gv_p1_USER, false);
    libNtve_gf_SetAllianceOneWay(gv_p2_PROTOSS_STALKER, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p3_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p4_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tzeratul02.sc2map — MapScript.galaxy:4145
    PlayerSetAlliance(gv_p2_PROTOSS_STALKER, c_allianceIdVision, gv_p1_USER, false);
    libNtve_gf_SetAllianceOneWay(gv_p2_PROTOSS_STALKER, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p3_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p4_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p6_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tzeratul02.sc2map — MapScript.galaxy:4146
    libNtve_gf_SetAllianceOneWay(gv_p2_PROTOSS_STALKER, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p3_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p4_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p6_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    Wait(1.0, c_timeGame);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tzeratul02.sc2map — MapScript.galaxy:4147
    libNtve_gf_SetAllianceOneWay(gv_p3_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p4_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_p6_PROTOSS_ENEMY, gv_p1_USER, libNtve_ge_AllianceSetting_Enemy);
    Wait(1.0, c_timeGame);
    libNtve_gf_SetAlliance(gv_p1_USER, gv_p2_PROTOSS_STALKER, libNtve_ge_AllianceSetting_Enemy);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/rushdefense.sc2map — MapScript.galaxy:329
    }
    libNtve_gf_SetAllianceOneWay(gv_p2_ENEMY_ZERG, gv_pLAYER_USER, 6);
    libNtve_gf_SetAllianceOneWay(gv_p3_ENEMY_PROTOSS, gv_pLAYER_USER, 6);
    libNtve_gf_SetAlliance(gv_p2_ENEMY_ZERG, gv_p3_ENEMY_PROTOSS, 1);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/rushdefense.sc2map — MapScript.galaxy:330
    libNtve_gf_SetAllianceOneWay(gv_p2_ENEMY_ZERG, gv_pLAYER_USER, 6);
    libNtve_gf_SetAllianceOneWay(gv_p3_ENEMY_PROTOSS, gv_pLAYER_USER, 6);
    libNtve_gf_SetAlliance(gv_p2_ENEMY_ZERG, gv_p3_ENEMY_PROTOSS, 1);
    PlayerGroupAdd(gv_allEnemyPlayers, gv_p2_ENEMY_ZERG);
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zchar03.sc2map/MapScript.galaxy:6149
    UnitIssueOrder(UnitFromId(1362), Order(AbilityCommand("ExtendingBridgeNWShort8Out", 0)), c_orderQueueReplace);
    UnitIssueOrder(UnitFromId(184), Order(AbilityCommand("DefensiveWall45GateLargeWestLowered", 0)), c_orderQueueReplace);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_02_WARFIELDOutpost, libNtve_ge_AllianceSetting_Enemy);
    libSwaC_gf_EnableDisableZerglingRespawn(true);
    libSwaC_gf_ZerglingRespawnSetPrimaryHatchery(gv_midMainLair);
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zkorhal01.sc2map/MapScript.galaxy:1078
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_02_DOMINION422, libNtve_ge_AllianceSetting_Ally);
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_02_DOMINION423, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION2, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION3, libNtve_ge_AllianceSetting_Neutral);
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zkorhal01.sc2map/MapScript.galaxy:1079
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_02_DOMINION423, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION2, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION3, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAlliance(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION42, libNtve_ge_AllianceSetting_Neutral);
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zkorhal01.sc2map/MapScript.galaxy:1080
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION2, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION3, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAlliance(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION42, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAlliance(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION423, libNtve_ge_AllianceSetting_Enemy);
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zkorhal01.sc2map/MapScript.galaxy:1093
        libNtve_gf_SetAlliance(autoA7178B81_var, gv_pLAYER_02_DOMINION43, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
        libNtve_gf_SetAlliance(autoA7178B81_var, gv_pLAYER_02_DOMINION42, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
        libNtve_gf_SetAllianceOneWay(autoA7178B81_var, gv_pLAYER_02_DOMINION422, libNtve_ge_AllianceSetting_Enemy);
        libNtve_gf_SetAlliance(autoA7178B81_var, gv_pLAYER_02_DOMINION423, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    }
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zkorhal03.sc2map/MapScript.galaxy:5644
    GameTimeOfDayPause(false);
    PlayerSetState(gv_PLAYER_01_USER, c_playerStateXPGain, true);
    libNtve_gf_SetAllianceOneWay(gv_PLAYER_07_DOMINION_GREEN22, gv_PLAYER_03_DOMINION_BLUE, libNtve_ge_AllianceSetting_Enemy);
    AIToggleBulliesInRegion(gv_PLAYER_07_DOMINION_GREEN22, RegionFromId(24), true);
    libSwaC_gf_EnableDisableZerglingRespawn(true);
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zkorhal03.sc2map/MapScript.galaxy:5687
    }
    libNtve_gf_SetAllianceOneWay(gv_PLAYER_07_DOMINION_GREEN22, gv_PLAYER_03_DOMINION_BLUE, libNtve_ge_AllianceSetting_Neutral);
    UnitCreate(1, "Hyperion", 0, gv_PLAYER_07_DOMINION_GREEN22, PointFromId(1945), PointGetFacing(PointFromId(1945)));
    gv_midHyperion = UnitLastCreated();
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zkorhal03.sc2map/MapScript.galaxy:5696
    libNtve_gf_PlayAnimation(libNtve_gf_MainActorofUnit(gv_midHyperion), c_animNameDefault, "Stand Work 01", 0, c_animTimeDefault);
    Wait(3.0, c_timeGame);
    libNtve_gf_SetAllianceOneWay(gv_PLAYER_07_DOMINION_GREEN22, gv_PLAYER_03_DOMINION_BLUE, libNtve_ge_AllianceSetting_Enemy);
    while (!((libNtve_gf_UnitInRegion(gv_midHyperion, RegionCircle(UnitGetPosition(UnitFromId(370)), 2.0)) == true))) {
        Wait(0.5, c_timeGame);
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zlab01.sc2map/MapScript.galaxy:2018
    gv_droneSelected = true;
    TriggerExecute(gt_ObjectiveSelectDroneComplete, true, false);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION2, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Neutral);
    return true;
}
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zzerus01.sc2map/MapScript.galaxy:2019
    }
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION34, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION35, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION32, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Enemy);
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zzerus01.sc2map/MapScript.galaxy:2020
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION34, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION35, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION32, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Enemy);
    PlayerGroupAdd(gv_enemyPlayers, gv_pLAYER_02_DOMINION);
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zzerus01.sc2map/MapScript.galaxy:2021
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION34, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION35, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION32, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Enemy);
    PlayerGroupAdd(gv_enemyPlayers, gv_pLAYER_02_DOMINION);
    PlayerGroupAdd(gv_enemyPlayers, gv_pLAYER_02_DOMINION2);
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zzerus02.sc2map/MapScript.galaxy:5196
    Wait(0.1, c_timeGame);
    CreepModify(PointFromId(2), 40.0, false, false);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_02_BRAKK, libNtve_ge_AllianceSetting_Ally);
    return true;
}
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zzerus02.sc2map/MapScript.galaxy:5388
    SoundStop(gv_introImpactSound2, true);
    SoundStop(gv_introSteamSound, true);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_02_BRAKK, libNtve_ge_AllianceSetting_Enemy);
    UnitGroupAdd(lv_startingSelection, gv_kerrigan);
    UnitGroupAddUnitGroup(lv_startingSelection, gv_swarmHostGroup);
campaigns/swarm.sc2campaign/base.sc2maps/maps/campaign/swarm/zchar03.sc2map — MapScript.galaxy:6149
    UnitIssueOrder(UnitFromId(1362), Order(AbilityCommand("ExtendingBridgeNWShort8Out", 0)), c_orderQueueReplace);
    UnitIssueOrder(UnitFromId(184), Order(AbilityCommand("DefensiveWall45GateLargeWestLowered", 0)), c_orderQueueReplace);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_02_WARFIELDOutpost, libNtve_ge_AllianceSetting_Enemy);
    libSwaC_gf_EnableDisableZerglingRespawn(true);
    libSwaC_gf_ZerglingRespawnSetPrimaryHatchery(gv_midMainLair);
campaigns/swarm.sc2campaign/base.sc2maps/maps/campaign/swarm/zkorhal01.sc2map — MapScript.galaxy:1078
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_02_DOMINION422, libNtve_ge_AllianceSetting_Ally);
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_02_DOMINION423, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION2, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION3, libNtve_ge_AllianceSetting_Neutral);
campaigns/swarm.sc2campaign/base.sc2maps/maps/campaign/swarm/zkorhal01.sc2map — MapScript.galaxy:1079
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_02_DOMINION423, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION2, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION3, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAlliance(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION42, libNtve_ge_AllianceSetting_Neutral);
campaigns/swarm.sc2campaign/base.sc2maps/maps/campaign/swarm/zkorhal01.sc2map — MapScript.galaxy:1080
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION2, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION3, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAlliance(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION42, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAlliance(gv_pLAYER_02_DOMINION422, gv_pLAYER_02_DOMINION423, libNtve_ge_AllianceSetting_Enemy);
campaigns/swarm.sc2campaign/base.sc2maps/maps/campaign/swarm/zkorhal01.sc2map — MapScript.galaxy:1093
        libNtve_gf_SetAlliance(autoA7178B81_var, gv_pLAYER_02_DOMINION43, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
        libNtve_gf_SetAlliance(autoA7178B81_var, gv_pLAYER_02_DOMINION42, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
        libNtve_gf_SetAllianceOneWay(autoA7178B81_var, gv_pLAYER_02_DOMINION422, libNtve_ge_AllianceSetting_Enemy);
        libNtve_gf_SetAlliance(autoA7178B81_var, gv_pLAYER_02_DOMINION423, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    }
campaigns/swarm.sc2campaign/base.sc2maps/maps/campaign/swarm/zkorhal03.sc2map — MapScript.galaxy:5644
    GameTimeOfDayPause(false);
    PlayerSetState(gv_PLAYER_01_USER, c_playerStateXPGain, true);
    libNtve_gf_SetAllianceOneWay(gv_PLAYER_07_DOMINION_GREEN22, gv_PLAYER_03_DOMINION_BLUE, libNtve_ge_AllianceSetting_Enemy);
    AIToggleBulliesInRegion(gv_PLAYER_07_DOMINION_GREEN22, RegionFromId(24), true);
    libSwaC_gf_EnableDisableZerglingRespawn(true);
campaigns/swarm.sc2campaign/base.sc2maps/maps/campaign/swarm/zkorhal03.sc2map — MapScript.galaxy:5687
    }
    libNtve_gf_SetAllianceOneWay(gv_PLAYER_07_DOMINION_GREEN22, gv_PLAYER_03_DOMINION_BLUE, libNtve_ge_AllianceSetting_Neutral);
    UnitCreate(1, "Hyperion", 0, gv_PLAYER_07_DOMINION_GREEN22, PointFromId(1945), PointGetFacing(PointFromId(1945)));
    gv_midHyperion = UnitLastCreated();
campaigns/swarm.sc2campaign/base.sc2maps/maps/campaign/swarm/zkorhal03.sc2map — MapScript.galaxy:5696
    libNtve_gf_PlayAnimation(libNtve_gf_MainActorofUnit(gv_midHyperion), c_animNameDefault, "Stand Work 01", 0, c_animTimeDefault);
    Wait(3.0, c_timeGame);
    libNtve_gf_SetAllianceOneWay(gv_PLAYER_07_DOMINION_GREEN22, gv_PLAYER_03_DOMINION_BLUE, libNtve_ge_AllianceSetting_Enemy);
    while (!((libNtve_gf_UnitInRegion(gv_midHyperion, RegionCircle(UnitGetPosition(UnitFromId(370)), 2.0)) == true))) {
        Wait(0.5, c_timeGame);
campaigns/swarm.sc2campaign/base.sc2maps/maps/campaign/swarm/zlab01.sc2map — MapScript.galaxy:2018
    gv_droneSelected = true;
    TriggerExecute(gt_ObjectiveSelectDroneComplete, true, false);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION2, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Neutral);
    return true;
}
campaigns/swarm.sc2campaign/base.sc2maps/maps/campaign/swarm/zzerus01.sc2map — MapScript.galaxy:2019
    }
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION34, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION35, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION32, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Enemy);
campaigns/swarm.sc2campaign/base.sc2maps/maps/campaign/swarm/zzerus01.sc2map — MapScript.galaxy:2020
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION34, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION35, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION32, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Enemy);
    PlayerGroupAdd(gv_enemyPlayers, gv_pLAYER_02_DOMINION);
campaigns/swarm.sc2campaign/base.sc2maps/maps/campaign/swarm/zzerus01.sc2map — MapScript.galaxy:2021
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION34, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION35, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Neutral);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION32, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Enemy);
    PlayerGroupAdd(gv_enemyPlayers, gv_pLAYER_02_DOMINION);
    PlayerGroupAdd(gv_enemyPlayers, gv_pLAYER_02_DOMINION2);
campaigns/swarm.sc2campaign/base.sc2maps/maps/campaign/swarm/zzerus02.sc2map — MapScript.galaxy:5196
    Wait(0.1, c_timeGame);
    CreepModify(PointFromId(2), 40.0, false, false);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_02_BRAKK, libNtve_ge_AllianceSetting_Ally);
    return true;
}
campaigns/swarm.sc2campaign/base.sc2maps/maps/campaign/swarm/zzerus02.sc2map — MapScript.galaxy:5388
    SoundStop(gv_introImpactSound2, true);
    SoundStop(gv_introSteamSound, true);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_02_BRAKK, libNtve_ge_AllianceSetting_Enemy);
    UnitGroupAdd(lv_startingSelection, gv_kerrigan);
    UnitGroupAddUnitGroup(lv_startingSelection, gv_swarmHostGroup);
campaigns/void.sc2campaign — base.sc2maps/maps/campaign/void/paiur02.sc2map/MapScript.galaxy:6591
    PlayerSetState(gv_pLAYER_01_USER, c_playerStateXPGain, false);
    GameTimeOfDayPause(true);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_02_ZERG, libNtve_ge_AllianceSetting_Neutral);
    autoA538D728_g = UnitGroup(null, gv_pLAYER_01_USER, RegionPlayableMap(), UnitFilter(0, 0, (1 << c_targetFilterMissile), (1 << (c_targetFilterDead - 32)) | (1 << (c_targetFilterHidden - 32))), 0);
    autoA538D728_u = UnitGroupCount(autoA538D728_g, c_unitCountAll);
campaigns/void.sc2campaign — base.sc2maps/maps/campaign/void/paiur02.sc2map/MapScript.galaxy:6691
    UnitIssueOrder(UnitGroupUnit(gv_introStalkers, 2), OrderTargetingPoint(AbilityCommand("Blink", 0), UnitGetPosition(UnitFromId(2318))), c_orderQueueReplace);
    UnitIssueOrder(UnitGroupUnit(gv_introStalkers, 3), OrderTargetingPoint(AbilityCommand("Blink", 0), UnitGetPosition(UnitFromId(468))), c_orderQueueReplace);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_02_ZERG, libNtve_ge_AllianceSetting_Enemy);
    libVCMI_gf_SendTransmissionCampaign(UnitGroupUnit(gv_introStalkers, 1), "pMission_Aiur02|Line00185", c_transmissionDurationAdd, 0.0, true, libVCMI_ge_MissionTransmissionPortraitOptioins_HidePortraitAfter, libVCMI_ge_MissionTransmissionCueSoundOptions_DefaultCueSoundBehavior);
    while (!((libNtve_gf_UnitGroupIsDead(gv_introZerg) == true))) {
campaigns/void.sc2campaign — base.sc2maps/maps/campaign/void/paiur02.sc2map/MapScript.galaxy:6865
    GameTimeOfDayPause(false);
    PlayerSetState(gv_pLAYER_01_USER, c_playerStateXPGain, true);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_02_ZERG, libNtve_ge_AllianceSetting_Enemy);
    VisExploreArea(gv_pLAYER_01_USER, RegionEntireMap(), false, false);
    VisExploreArea(gv_pLAYER_01_USER, RegionFromId(41), true, false);
campaigns/void.sc2campaign — base.sc2maps/maps/campaign/void/paiur02.sc2map/MapScript.galaxy:7506
    UnitIssueOrder(gv_midUpperStalkersArray[4], OrderTargetingPoint(AbilityCommand("move", 4), PointFromId(1241)), c_orderQueueReplace);
    Wait(1.5, c_timeReal);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_03_DARK_PROTOSS, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Enemy);
    auto217EA54A_g = gv_midUpperZealots;
    auto217EA54A_u = UnitGroupCount(auto217EA54A_g, c_unitCountAll);
campaigns/void.sc2campaign — base.sc2maps/maps/campaign/void/paiur04.sc2map/MapScript.galaxy:9862
    RegionPlayableMapSet(RegionFromId(10));
    VisExploreArea(gv_pLAYER_01_USER, RegionFromId(9), true, false);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_PROTOSS_NEUTRAL, gv_pLAYER_05_AMONS_FORCES, libNtve_ge_AllianceSetting_Neutral);
    if ((gv_currentEnvironment != 1)) {
        gf_EnvironmentCitadeloftheExecutor();
campaigns/void.sc2campaign — base.sc2maps/maps/campaign/void/pkorhal01.sc2map/MapScript.galaxy:1640
    libNtve_gf_SetAlliance(gv_pLAYER_06_RAYNOR_BASE_2, gv_pLAYER_03_PLATFORM_STABILIZER, libNtve_ge_AllianceSetting_Ally);
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_04_RAYNOR_AI, libNtve_ge_AllianceSetting_AllyWithSharedVision);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_04_RAYNOR_AI, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_05_RAYNOR_BASE_1, libNtve_ge_AllianceSetting_AllyWithSharedVision);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_05_RAYNOR_BASE_1, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
campaigns/void.sc2campaign — base.sc2maps/maps/campaign/void/pkorhal01.sc2map/MapScript.galaxy:1642
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_04_RAYNOR_AI, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_05_RAYNOR_BASE_1, libNtve_ge_AllianceSetting_AllyWithSharedVision);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_05_RAYNOR_BASE_1, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_06_RAYNOR_BASE_2, libNtve_ge_AllianceSetting_AllyWithSharedVision);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_06_RAYNOR_BASE_2, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
campaigns/void.sc2campaign — base.sc2maps/maps/campaign/void/pkorhal01.sc2map/MapScript.galaxy:1644
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_05_RAYNOR_BASE_1, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_06_RAYNOR_BASE_2, libNtve_ge_AllianceSetting_AllyWithSharedVision);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_06_RAYNOR_BASE_2, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_pLAYER_02_MOEBIUS, gv_pLAYER_04_RAYNOR_AI, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAlliance(gv_pLAYER_04_RAYNOR_AI, gv_pLAYER_05_RAYNOR_BASE_1, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
campaigns/void.sc2campaign — base.sc2maps/maps/campaign/void/sc2epilogue02.sc2map/MapScript.galaxy:1035
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_02_DOMINION7, libNtve_ge_AllianceSetting_AllyWithSharedVision);
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_02_DOMINION8, libNtve_ge_AllianceSetting_NeutralWithSharedVisionAndPushable);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION4, gv_pLAYER_02_DOMINION7, libNtve_ge_AllianceSetting_NeutralWithSharedVision);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION3, gv_pLAYER_02_DOMINION7, libNtve_ge_AllianceSetting_NeutralWithSharedVision);
    auto4B5D0698_g = gv_enemyPlayers;
campaigns/void.sc2campaign — base.sc2maps/maps/campaign/void/sc2epilogue02.sc2map/MapScript.galaxy:1036
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_02_DOMINION8, libNtve_ge_AllianceSetting_NeutralWithSharedVisionAndPushable);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION4, gv_pLAYER_02_DOMINION7, libNtve_ge_AllianceSetting_NeutralWithSharedVision);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION3, gv_pLAYER_02_DOMINION7, libNtve_ge_AllianceSetting_NeutralWithSharedVision);
    auto4B5D0698_g = gv_enemyPlayers;
    auto4B5D0698_var = -1;
campaigns/void.sc2campaign/base.sc2maps/maps/campaign/void/paiur02.sc2map — MapScript.galaxy:6591
    PlayerSetState(gv_pLAYER_01_USER, c_playerStateXPGain, false);
    GameTimeOfDayPause(true);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_02_ZERG, libNtve_ge_AllianceSetting_Neutral);
    autoA538D728_g = UnitGroup(null, gv_pLAYER_01_USER, RegionPlayableMap(), UnitFilter(0, 0, (1 << c_targetFilterMissile), (1 << (c_targetFilterDead - 32)) | (1 << (c_targetFilterHidden - 32))), 0);
    autoA538D728_u = UnitGroupCount(autoA538D728_g, c_unitCountAll);
campaigns/void.sc2campaign/base.sc2maps/maps/campaign/void/paiur02.sc2map — MapScript.galaxy:6691
    UnitIssueOrder(UnitGroupUnit(gv_introStalkers, 2), OrderTargetingPoint(AbilityCommand("Blink", 0), UnitGetPosition(UnitFromId(2318))), c_orderQueueReplace);
    UnitIssueOrder(UnitGroupUnit(gv_introStalkers, 3), OrderTargetingPoint(AbilityCommand("Blink", 0), UnitGetPosition(UnitFromId(468))), c_orderQueueReplace);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_02_ZERG, libNtve_ge_AllianceSetting_Enemy);
    libVCMI_gf_SendTransmissionCampaign(UnitGroupUnit(gv_introStalkers, 1), "pMission_Aiur02|Line00185", c_transmissionDurationAdd, 0.0, true, libVCMI_ge_MissionTransmissionPortraitOptioins_HidePortraitAfter, libVCMI_ge_MissionTransmissionCueSoundOptions_DefaultCueSoundBehavior);
    while (!((libNtve_gf_UnitGroupIsDead(gv_introZerg) == true))) {
campaigns/void.sc2campaign/base.sc2maps/maps/campaign/void/paiur02.sc2map — MapScript.galaxy:6865
    GameTimeOfDayPause(false);
    PlayerSetState(gv_pLAYER_01_USER, c_playerStateXPGain, true);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_02_ZERG, libNtve_ge_AllianceSetting_Enemy);
    VisExploreArea(gv_pLAYER_01_USER, RegionEntireMap(), false, false);
    VisExploreArea(gv_pLAYER_01_USER, RegionFromId(41), true, false);
campaigns/void.sc2campaign/base.sc2maps/maps/campaign/void/paiur02.sc2map — MapScript.galaxy:7506
    UnitIssueOrder(gv_midUpperStalkersArray[4], OrderTargetingPoint(AbilityCommand("move", 4), PointFromId(1241)), c_orderQueueReplace);
    Wait(1.5, c_timeReal);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_03_DARK_PROTOSS, gv_pLAYER_01_USER, libNtve_ge_AllianceSetting_Enemy);
    auto217EA54A_g = gv_midUpperZealots;
    auto217EA54A_u = UnitGroupCount(auto217EA54A_g, c_unitCountAll);
campaigns/void.sc2campaign/base.sc2maps/maps/campaign/void/paiur04.sc2map — MapScript.galaxy:9862
    RegionPlayableMapSet(RegionFromId(10));
    VisExploreArea(gv_pLAYER_01_USER, RegionFromId(9), true, false);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_PROTOSS_NEUTRAL, gv_pLAYER_05_AMONS_FORCES, libNtve_ge_AllianceSetting_Neutral);
    if ((gv_currentEnvironment != 1)) {
        gf_EnvironmentCitadeloftheExecutor();
campaigns/void.sc2campaign/base.sc2maps/maps/campaign/void/pkorhal01.sc2map — MapScript.galaxy:1640
    libNtve_gf_SetAlliance(gv_pLAYER_06_RAYNOR_BASE_2, gv_pLAYER_03_PLATFORM_STABILIZER, libNtve_ge_AllianceSetting_Ally);
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_04_RAYNOR_AI, libNtve_ge_AllianceSetting_AllyWithSharedVision);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_04_RAYNOR_AI, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_05_RAYNOR_BASE_1, libNtve_ge_AllianceSetting_AllyWithSharedVision);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_05_RAYNOR_BASE_1, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
campaigns/void.sc2campaign/base.sc2maps/maps/campaign/void/pkorhal01.sc2map — MapScript.galaxy:1642
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_04_RAYNOR_AI, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_05_RAYNOR_BASE_1, libNtve_ge_AllianceSetting_AllyWithSharedVision);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_05_RAYNOR_BASE_1, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_06_RAYNOR_BASE_2, libNtve_ge_AllianceSetting_AllyWithSharedVision);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_06_RAYNOR_BASE_2, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
campaigns/void.sc2campaign/base.sc2maps/maps/campaign/void/pkorhal01.sc2map — MapScript.galaxy:1644
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_05_RAYNOR_BASE_1, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_06_RAYNOR_BASE_2, libNtve_ge_AllianceSetting_AllyWithSharedVision);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_01_USER, gv_pLAYER_06_RAYNOR_BASE_2, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
    libNtve_gf_SetAlliance(gv_pLAYER_02_MOEBIUS, gv_pLAYER_04_RAYNOR_AI, libNtve_ge_AllianceSetting_Enemy);
    libNtve_gf_SetAlliance(gv_pLAYER_04_RAYNOR_AI, gv_pLAYER_05_RAYNOR_BASE_1, libNtve_ge_AllianceSetting_AllyWithSharedVisionAndPushable);
campaigns/void.sc2campaign/base.sc2maps/maps/campaign/void/sc2epilogue02.sc2map — MapScript.galaxy:1035
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_02_DOMINION7, libNtve_ge_AllianceSetting_AllyWithSharedVision);
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_02_DOMINION8, libNtve_ge_AllianceSetting_NeutralWithSharedVisionAndPushable);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION4, gv_pLAYER_02_DOMINION7, libNtve_ge_AllianceSetting_NeutralWithSharedVision);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION3, gv_pLAYER_02_DOMINION7, libNtve_ge_AllianceSetting_NeutralWithSharedVision);
    auto4B5D0698_g = gv_enemyPlayers;
campaigns/void.sc2campaign/base.sc2maps/maps/campaign/void/sc2epilogue02.sc2map — MapScript.galaxy:1036
    libNtve_gf_SetAlliance(gv_pLAYER_01_USER, gv_pLAYER_02_DOMINION8, libNtve_ge_AllianceSetting_NeutralWithSharedVisionAndPushable);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION4, gv_pLAYER_02_DOMINION7, libNtve_ge_AllianceSetting_NeutralWithSharedVision);
    libNtve_gf_SetAllianceOneWay(gv_pLAYER_02_DOMINION3, gv_pLAYER_02_DOMINION7, libNtve_ge_AllianceSetting_NeutralWithSharedVision);
    auto4B5D0698_g = gv_enemyPlayers;
    auto4B5D0698_var = -1;
mods/core.sc2mod — base.sc2data/TriggerLibs/NativeLib.galaxy:3671
    // Automatic Variable Declarations
    // Implementation
    libNtve_gf_SetAllianceOneWay(lp_sourcePlayer, lp_targetPlayer, lp_alliance);
    libNtve_gf_SetAllianceOneWay(lp_targetPlayer, lp_sourcePlayer, lp_alliance);
}
mods/core.sc2mod — base.sc2data/TriggerLibs/NativeLib.galaxy:3672
    // Implementation
    libNtve_gf_SetAllianceOneWay(lp_sourcePlayer, lp_targetPlayer, lp_alliance);
    libNtve_gf_SetAllianceOneWay(lp_targetPlayer, lp_sourcePlayer, lp_alliance);
}
mods/core.sc2mod — base.sc2data/TriggerLibs/NativeLib.galaxy:3754
            if (lv_player2 < 0) { break; }
            if ((lv_player1 != lv_player2)) {
                libNtve_gf_SetAllianceOneWay(lv_player1, lv_player2, lp_alliance);
            }
mods/core.sc2mod — base.sc2data/TriggerLibs/NativeLib.galaxy:3784
            if (lv_player2 < 0) { break; }
            if ((lv_player1 != lv_player2)) {
                libNtve_gf_SetAllianceOneWay(lv_player1, lv_player2, lp_alliance);
            }
mods/core.stormmod — base.stormdata/TriggerLibs/NativeLib.galaxy:3098
    // Automatic Variable Declarations
    // Implementation
    libNtve_gf_SetAllianceOneWay(lp_sourcePlayer, lp_targetPlayer, lp_alliance);
    libNtve_gf_SetAllianceOneWay(lp_targetPlayer, lp_sourcePlayer, lp_alliance);
}
mods/core.stormmod — base.stormdata/TriggerLibs/NativeLib.galaxy:3099
    // Implementation
    libNtve_gf_SetAllianceOneWay(lp_sourcePlayer, lp_targetPlayer, lp_alliance);
    libNtve_gf_SetAllianceOneWay(lp_targetPlayer, lp_sourcePlayer, lp_alliance);
}
mods/core.stormmod — base.stormdata/TriggerLibs/NativeLib.galaxy:3168
            	if (lv_player2<0) { break; }
            	if ((lv_player1 != lv_player2)) {
                libNtve_gf_SetAllianceOneWay(lv_player1, lv_player2, lp_alliance);
            }
mods/heroes.stormmod — base.stormmaps/maps/heroes/singleplayermaps/startingexperience/tutorialveteran.stormmap/MapScript.galaxy:2208
        	if (auto8EF91213_var<0) { break; }
        	PlayerSetAlliance(libCore_gv_cOMPUTER_TeamChaos, c_allianceIdPower, auto8EF91213_var, true);
        libNtve_gf_SetAllianceOneWay(libCore_gv_cOMPUTER_TeamOrder, auto8EF91213_var, libNtve_ge_AllianceSetting_AllyWithSharedVision);
        PlayerSetColorIndex(auto8EF91213_var, libCore_gv_cOLOROrderPlayerColor, true);
        auto1EAB0647_g = libGame_gv_teams[libGame_gv_teamChaosIndex_C].lv_teamPlayerGroup;
mods/heroes.stormmod — base.stormmaps/maps/heroes/singleplayermaps/startingexperience/tutorialveteran.stormmap/MapScript.galaxy:2232
        	if (autoDD36CF4E_var<0) { break; }
        	PlayerSetAlliance(libCore_gv_cOMPUTER_TeamOrder, c_allianceIdPower, autoDD36CF4E_var, true);
        libNtve_gf_SetAllianceOneWay(libCore_gv_cOMPUTER_TeamChaos, autoDD36CF4E_var, libNtve_ge_AllianceSetting_AllyWithSharedVision);
        PlayerSetColorIndex(autoDD36CF4E_var, libCore_gv_cOLORChaosPlayerColor, true);
        libNtve_gf_SetAlliance(autoDD36CF4E_var, libCore_gv_oBSERVER_ObserverUIPlayer, libNtve_ge_AllianceSetting_Enemy);
mods/heroes.stormmod/base.stormmaps/maps/heroes/singleplayermaps/startingexperience/tutorialveteran.stormmap — MapScript.galaxy:2208
        	if (auto8EF91213_var<0) { break; }
        	PlayerSetAlliance(libCore_gv_cOMPUTER_TeamChaos, c_allianceIdPower, auto8EF91213_var, true);
        libNtve_gf_SetAllianceOneWay(libCore_gv_cOMPUTER_TeamOrder, auto8EF91213_var, libNtve_ge_AllianceSetting_AllyWithSharedVision);
        PlayerSetColorIndex(auto8EF91213_var, libCore_gv_cOLOROrderPlayerColor, true);
        auto1EAB0647_g = libGame_gv_teams[libGame_gv_teamChaosIndex_C].lv_teamPlayerGroup;
mods/heroes.stormmod/base.stormmaps/maps/heroes/singleplayermaps/startingexperience/tutorialveteran.stormmap — MapScript.galaxy:2232
        	if (autoDD36CF4E_var<0) { break; }
        	PlayerSetAlliance(libCore_gv_cOMPUTER_TeamOrder, c_allianceIdPower, autoDD36CF4E_var, true);
        libNtve_gf_SetAllianceOneWay(libCore_gv_cOMPUTER_TeamChaos, autoDD36CF4E_var, libNtve_ge_AllianceSetting_AllyWithSharedVision);
        PlayerSetColorIndex(autoDD36CF4E_var, libCore_gv_cOLORChaosPlayerColor, true);
        libNtve_gf_SetAlliance(autoDD36CF4E_var, libCore_gv_oBSERVER_ObserverUIPlayer, libNtve_ge_AllianceSetting_Enemy);
mods/heroesbrawlmods/brawlmapmods/coop/escapefrombraxis.stormmod — base.stormdata/LibPEB1.galaxy:3653
        PlayerSetAlliance(libCore_gv_cOMPUTER_NoVision_TeamOrder, c_allianceIdVision, auto32C22853_var, false);
        PlayerSetAlliance(libCore_gv_cOMPUTER_TeamChaos, c_allianceIdPower, auto32C22853_var, true);
        libNtve_gf_SetAllianceOneWay(libCore_gv_cOMPUTER_TeamOrder, auto32C22853_var, libNtve_ge_AllianceSetting_AllyWithSharedVision);
        PlayerSetColorIndex(auto32C22853_var, libCore_gv_cOLOROrderPlayerColor, true);
        autoCDF5C161_g = libGame_gv_teams[libGame_gv_teamChaosIndex_C].lv_teamPlayerGroup;