Page 1 of 1

Help with CounterSheet

Posted: 19 Mar 2010, 00:52
by onihero
Hi, new to this and trying to create a Gamebox.

I can get the map to show up, but have no idea where my counter sheet is. The filenames seem right. What am I missing? My begin.zts is below. I think it may have to do with my begin.zts? But I really have no idea.

Code: Select all

<?xml version="1.0" encoding="windows-1252" ?>
<game-box
	name="Battlements!"
	description="Battlements Online Prototype."
	copyright="Stop Drop and Roll Games, 2010"
	startup-scenario="begin.zts">
	<map name="5x5" image-file="board.jpg" resolution="150 dpi" />
	<counter-sheet name="Attacker"
		front-image-file="countersfront.jpg" front-resolution="300 dpi"
		back-image-file="countersback.jpg" back-resolution="300 dpi">
		<counter-section rows="2" columns="12"
			front-left="0" front-top="0" front-right="2700" front-bottom="450"
			back-left="0" back-top="0" back-right="2700" back-bottom="450" />
		<counter-section rows="1" columns="2"
			front-left="0" front-top="450" front-right="450" front-bottom="675"
			back-left="0" back-top="450" back-right="450" back-bottom="675" />
		<counter-section rows="2" columns="12"
			front-left="0" front-top="1350" front-right="2700" front-bottom="1800"
			back-left="0" back-top="1350" back-right="2700" back-bottom="1800" />
	</counter-sheet>

</game-box>

Code: Select all

<?xml version="1.0" encoding="Windows-1252"?>
<game
	game-box="Battlements!"
	scenario-name="begin">
	<layout board="5x5" />
</game>

Posted: 19 Mar 2010, 01:12
by Bill Barrett
You need to add a line to your .zts file to layout the counter sheet:

<?xml version="1.0" encoding="Windows-1252"?>
<game
game-box="Battlements!"
scenario-name="begin">
<layout board="5x5" />
<layout board="Attacker" />
</game>

Posted: 19 Mar 2010, 01:37
by onihero
Hah, silly me :) Thanks.