The Dink Network

Title Screen -

July 14th 2010, 07:20 PM
death.gif
Generica
Peasant He/Him United States
"Generic Statement" 
How do you place the buttons on a title screen? Like modify their positions from the default.
July 14th 2010, 07:42 PM
slayer.gif
rabidwolf9
Peasant He/Him United States
twitch.tv/rabidwolf9 
The buttons are created in start.c. You'll have to modify the coordinates there. Thy should look something like this:

&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.
July 14th 2010, 07:49 PM
death.gif
Generica
Peasant He/Him United States
"Generic Statement" 
Thanks for the help!