I am in need of a bit of help please, I have trawled the forum the last couple of days but still cant figure out what I am doing wrong.
Its come to a point where I need my .BSF script file as part of a scenario to work, simply because side0 needs reinforcements on a certain turn - simple right?
however it looks like it just isnt being read or there is an error that stops it working!
my file (Phase2Battle1.BSF, which puts a sherman on 16,16 on turn 2 of side 0) looks like this:-
Code: Select all
include "Functions.BSF"
FUNCTION StartTurn
{
// Reinforcements
if(GetTurn() == 2)
{
if(side == 0)
{
// AddUnit with more options : FUNCTION PlaceUnit(x, y, facing, side, team, type)
PlaceUnit(16, 16, 2, 0, 1, "SHERMAN") ;
AddVizCamCenter(16, 16);
}
}
cheers
Lee
					
					
