Page 1 of 1

game box wrong local header signature error

Posted: 11 Sep 2013, 22:45
by sweeteye
I just started working with Zuntzu and am trying to run an initial test with the game box...I am following the directions in the tutorial provided. when I try to load the ztb file I get a wrong local header signature error.It seems to be a very simple process to create a game box but I just cannot figure out where I am making a mistake.Surely it is something very simple...below are the codes I am using for the game box xml file and the zts scenario file.I also have a blank test map that is 150dpi

<?xml version="1.0" encoding="windows-1252" ?>
<game-box
name="testgame"
description="test"
copyright="me"
startup-scenario="testgame.zts">
</game-box>


<?xml version="1.0" encoding="Windows-1252"?>
<game
game-box="testgame"
scenario-name="testgame"
scenario-description="testgame"
scenario-copyright="me">
<layout board="testmap" />
</game>

Posted: 15 Sep 2013, 16:18
by GJK
I'm not sure if this is the (only) problem or not, but don't have your map defined in your game-box XML file (but you do define it in your scenario file). And it probably doesn't matter, but there's no space at the end of your XML declaration for the scenario file:

<?xml version="1.0" encoding="Windows-1252"?>

(missing space after 1252" between that and the ?)

Posted: 17 Sep 2013, 03:39
by sweeteye
Thanks for the reply......will try your suggestion......I figured it would be a simple error I overlooked...........