Title Screen -
How do you place the buttons on a title screen? Like modify their positions from the default.
The buttons are created in start.c. You'll have to modify the coordinates there. Thy should look something like this:
The first two numbers of create_sprite() are the x,y coordinates. The easiest thing to do is use WinDinkEdit and make your title screen on a map screen to get your coordinates. Keep in mind though that the title screen will be bigger in the end because it overlaps the status bars while the map screen will not.
&crap = create_sprite(76, 40, 14, 194, 1); sp_script(&crap, "start-1"); sp_noclip(&crap, 1);
The first two numbers of create_sprite() are the x,y coordinates. The easiest thing to do is use WinDinkEdit and make your title screen on a map screen to get your coordinates. Keep in mind though that the title screen will be bigger in the end because it overlaps the status bars while the map screen will not.