Skip to content

Commit

Permalink
Bug fixes and text polish
Browse files Browse the repository at this point in the history
  • Loading branch information
alamedyang committed Nov 19, 2024
1 parent cd060e2 commit 3ca4689
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
Binary file modified SD_Card/MAGE/game.dat
Binary file not shown.
2 changes: 1 addition & 1 deletion SD_Card/MAGE/scenario_source_files/mgs/ch1/ch1-elders.mgs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ return-to-watchspot-bert {
show_dialog-bert-start {
if (entity "%SELF%" is glitched) {
show dialog { SELF "...." "Bczv um jiks." }
set entity "%SELF%" on_interact to show_dialog-bert-start;
return;
}
copy face-player;
show dialog { SELF "Who needs help?" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -712,6 +712,7 @@ ch2-install-wizard2 {
if (debug mode is off) {
// show serial dialog {"turn hex control on;"}
turn hex control on;
turn lights control off;
} else {
// show serial dialog {"debug mode is on; no need to enable hex control;"}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,9 @@ hanoi_unregister {
unregister "RESET";
unregister "Q";
unregister "QUIT";
unregister "WIN";
if (debug mode is on) {
unregister "WIN";
}
}

hanoi_quit {
Expand Down Expand Up @@ -518,7 +520,9 @@ hanoi_init_game {
register "RESET" -> hanoi_reset;
register "Q" -> hanoi_quit_from_terminal;
register "QUIT" -> hanoi_quit_from_terminal;
register "WIN" -> hanoi_win;
if (debug mode is on) {
register "WIN" -> hanoi_win;
}
// debug!("hanoi_init_game")
turn light LED_USB on;
set entity Lights on_tick to null_script;
Expand Down
4 changes: 2 additions & 2 deletions SD_Card/MAGE/scenario_source_files/mgs/ch2/ch2-castle-99.mgs
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ ch2-cutscene-castle99-continue {
wait 100ms;
show dialog {
Lambda "Put that in the mainframe's optical drive, and we can get the new OS installed."
"Head on back to the XA room. The Wizard can help you set it all up."
"Head on back to the castle entrance. The Wizard can help you set it all up."
PLAYER "You're not going to come with me?"
}
wait 150ms;
Expand Down Expand Up @@ -395,7 +395,7 @@ interact-ch2-lambda-drawer {
}
interact-ch2-lambda-computer {
show dialog {
PLAYER "(That looks a lot like the mainframe in the XA room.)"
PLAYER "(That looks a lot like the mainframe in the castle entrance.)"
}
}
interact-ch2-lambda-ration {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ goosefacts {
}
} else if (variable goosefact is 17) {
show serial dialog {
"Did you know? <bold>Geese have been domesticated for thousands of <bold>years!</> Geese have been domesticated for at least 3,000 years there are references to geese in ancient Egyptian hieroglyphics."
"Did you know? <bold>Geese have been domesticated for thousands of <bold>years!</> Geese have been domesticated for at least 3,000 years. There are references to geese in ancient Egyptian hieroglyphics."
}
} else if (variable goosefact is 18) {
show serial dialog {
Expand Down

0 comments on commit 3ca4689

Please sign in to comment.