|
@@ -608,6 +608,15 @@ user_inf build_menu(user_inf my) {
|
|
while(!done) {
|
|
while(!done) {
|
|
md_clr_scr();
|
|
md_clr_scr();
|
|
md_sendfile("ansis/sc_build.ans", FALSE);
|
|
md_sendfile("ansis/sc_build.ans", FALSE);
|
|
|
|
+ // Paint over sc_build.ans file
|
|
|
|
+ md_set_cursor(3, 15);
|
|
|
|
+ md_printf("%5d", (4 * (my.guns + 1)));
|
|
|
|
+ md_set_cursor(4, 15);
|
|
|
|
+ md_printf("%5d", (3 * (my.armors + 1)));
|
|
|
|
+ md_set_cursor(5, 15);
|
|
|
|
+ md_printf("%5d", (6 * (my.shields + 1)));
|
|
|
|
+ md_set_cursor(9, 0);
|
|
|
|
+ // Resuming normal operations
|
|
md_printf("`bright yellow`You have %d metal\r\n", my.metal);
|
|
md_printf("`bright yellow`You have %d metal\r\n", my.metal);
|
|
ch = md_get_answer("GgAaSsCcRr\r");
|
|
ch = md_get_answer("GgAaSsCcRr\r");
|
|
switch(tolower(ch)) {
|
|
switch(tolower(ch)) {
|