posted 01-22- 01:24 AM CT (US) I need your help with making picture's appear on the screen for example: void talk ( void ) { copy_bmp_to_screen("tiles\pic"); }
something like that but i've read the dinkc file and tryed everything but nothing work's. Ok say dink wanted to walk to a sign in a forest,when dink read's the sign I want a picture of the forest to appear and then disappear when the player want's it too.. you know a bmp of any kind im not talking about the main map but say dink's about to read some letter and you want a picture of the letter to appear on the screen to read as if it where real. Any help would be very highly thanked for as I've been stuck with this problem for age's.. Thank you so much by the way this is my first d-mod !!
Drakeman
posted 01-22- 04:08 AM CT (US)
Here's what I used to bring up a riddle screen in Story 4 of SOB.
Just change "graphics\rid-04.bmp" to whatever your bmp is and it should work
void talk( void ) { //let's bring up the bitmap show_bmp("graphics\rid-04.bmp", 0, 0); return; }