ZealOS/src/Misc/Tour/Tour9.IN
TomAwezome db32fdb367 Reformatted entire codebase.
Reformatted DolDoc files, adjusted sprites in documentation to reflect naming changes, corrected keybinding labels in AutoComplete window, fixed formatting error in Tips.DD.

Added DVD Boot AHCI prototyping into Kernel, displays detected AHCI configuration and halts mid-boot.

Small modifications to standard font, slight increase to mouse X and Y speed.
2020-12-23 18:27:18 -05:00

24 lines
609 B
HolyC
Executable file

"Ed(\"::/Misc/Bible.TXT\");\n";
TourPut("Press $$GREEN$$<CTRL-F>$$FG$$ to find.\n");
InCharGet(CH_CTRLF);
InPrint(150, "new song");
TourPut("Cursor down 8 times.\n");
I64 i;
for (i = 0; i < 8; i++)
InKeyGet(SC_CURSOR_DOWN);
TourPut("Press '$$GREEN$$2$$FG$$' to show all lines within 2 of a match.\n");
InGetStr("2");
TourPut("Press $$GREEN$$<ESC>$$FG$$ to exit the form.\n");
InCharGet(CH_ESC);
TourPut("Look around and press $$GREEN$$<ESC>$$FG$$ to turn off filter.\n");
InUntilChar(CH_ESC, CH_SHIFT_ESC);
TourPut("You can combine filters to effectively do AND searches.\n", TRUE);
'' CH_SHIFT_ESC;