prevent.input();
status.line.off();
text.screen();
v19 = 0;
reset(f4);
display(3,0,"               AGI Help");
display(6,0,"      F1 displays this message.");
display(7,0,"      F2 turns the sound off and on.");
display(8,0,"      F3 retypes the last line typed.");
display(9,0,"      F5 saves your current game.");
display(10,0,"      F7 restores a saved game.");
display(11,0,"      F9 restarts the game.");
display(12,0,"   ALT-Z quits the game.");
display(13,0,"     TAB shows the inventory screen.");
display(14,0,"     ESC pops up menus.");
display(15,0,"  Ctrl-J sets up your joystick.");
display(16,0,"      +  Increases volume.");
display(17,0,"      -  Decreases volume.");
display(18,0,"  Ctrl-S shows the status screen.");
Label1:
if (!have.key()) {
  goto(Label1);
}
clear.lines(0,18,0);
//display(3,0,"              Battles");
display(6,0,"  F6 attacks.");
display(7,0,"  F8 attempts to run.");
display(8,0,"  F10 drinks the healing elixir.");
display(9,0,"  Ctrl-W switches weapons if available.");
display(12,0," Pressing F6 stops the power meter.");
display(13,0," If it stops on a white mark, you have");
display(14,0," a better chance to hit.  Each mark");
display(15,0," represents a damage modifier.  The");
display(16,0," left-most doubles the base damage.");
display(17,0," The right-most triples it, and the");
display(18,0," middle multiplies it by 4.");
print.at("Battles",3,7,8);


accept.input();
status.line.on();
graphics();
set(f4);
return();

// Messages
#message 1 "               AGI Help"
#message 2 "      F1 displays this message."
#message 3 "      F2 turns the sound off and on."
#message 4 "      F3 retypes the last line typed."
#message 5 "      F5 saves your current game."
#message 6 "      F7 restores a saved game."
#message 7 "      F9 restarts the game."
#message 8 "   ALT-Z quits the game."
#message 9 "     TAB shows the inventory screen."
#message 10 "     ESC pops up menus."
#message 11 "  Ctrl-J sets up your joystick."
#message 12 "      +  Increases volume."
#message 13 "      -  Decreases volume."