Not sure which wall you mean...
Spoiler
Use the sticky pole on the hole in the passage at the bottom of the screen. Tricky, because the pole is longer than the screen is high.... But it eventually should result in a key.
[close]
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
int aa = 1;
int bb = 1;
String myStr;
File* myoutput = File.Open("grid.txt", eFileAppend);
if (myoutput == null) {
Display("Error opening file.");
}
else {
while (aa < 7) {
while (bb < 7) {
>> myStr = myStr.Append(String.Format("%d",GetGrid(aa, bb)));
bb++;
myoutput.WriteRawLine(myStr);
}
bb = 1;
myStr = "";
aa++;
}
myoutput.WriteRawLine(myStr);
myoutput.Close();
}
function Log_Grid()
{
File *output = File.Open("c:\temp.tmp", eFileWrite);
if (output == null)
Display("Error opening file.");
else {
output.WriteString("test string");
output.Close();
}
}
function Log_Grid()
{
File *output = File.Open("c:\temp.tmp", eFileWrite);
if (output == null) {
Display("Error opening file.");
}
else {
output.WriteString("test string");
}
output.Close();
}
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.565 seconds with 15 queries.