Page 1 of 1
Orks vs Astra Militarum
Posted: Sun Dec 10, 2017 2:05 pm
by TheHolk80
Hello!
I want to make campaign where Orks fight against Astra Militarum. How does that work? I can only make Astartes against Orks but maybe I am missing something.
Thank you in advance
Edit: To clarifiy you will play the Orks.
Re: Orks vs Astra Militarum
Posted: Wed Dec 27, 2017 8:17 pm
by TheHolk80
Hello, I still can not figure out how to make campaign with non-Space-Wolves units in Side0. I try editing Sides.txt but it does not work, game will freeze when loading battle after unit select screen.

If any one can help I would greatly give thanks.
Re: Orks vs Astra Militarum
Posted: Fri Jan 19, 2018 10:05 am
by Derek Larp
You need to set the gSide0 and gSide1 global variables. Create a .bsf script file inside your scenarios folder with the same name as your mission (e.g. if your mission file is called testmap.bam, the script file must be called testmap.bsf). For orks vs. imperial guard, copy the following code into the script file:
Code: Select all
// TESTMAP SCRIPT
include "Functions.BSF"
include "tools.BSF"
include "ScenarioTools.BSF"
include "Globals.BSF"
FUNCTION PreStartBattle()
{
gSide0 = 1;
gSide1 = 2;
}
gSide0 is the player side, gSide1 is the enemy side.
The numerical values for sides are 0 for Space Wolves, 1 for Orks and 2 for Imperial Guard.
Cheers