2019-02-17 19:20:56 (edited by Kitsune 2019-02-17 19:22:05)

I have some coad here. please help me.
#include"dynamic_menu.bgt";
void mane()
{
sho_game_window("citty builder");
tts_voice voice;
voice.speak_wait("wellcom to jaidon and adel's first game!");
exit();
}

I am a divine being. I can be called a primordial deity, but that might be pushing it, a smidge. I am the only one of my kind to have ten tails, with others having nine. I don't mean to sound arrogant, but I have ascended my own race.

2019-02-17 19:36:38

you put s, h, o, game window, it's show. s, h, o, w. Lol

-
"There is beauty in simplicity."

2019-02-17 19:39:23 (edited by Slender 2019-02-17 19:43:08)

You also misspelled "void mane". It's m, a, i, n, not m, a, n, e.

Oh no! Somebody released the h key! Everybody run and hide!

2019-02-17 20:12:13

here is correct code
#include"dynamic_menu.bgt";
void main()
{
show_game_window("citty builder");
tts_voice voice;
voice.speak_wait("wellcom to jaidon and adel's first game!");
exit();
}

2019-02-18 13:09:44

Hi,
Your code is 90% wrong, here's the corrected one:
#include "dynamic_menu.bgt"
void main()
{
show_game_window("City builder");
tts_voice voice;
voice.speak_wait("Welcome to jaidon and adel's first game!");
exit();
}
HTH

Best regards
Pranam
Don't forget to give me a thumbs up!