Spoiler
Yes, the name is what you're missing. I'm guessing that you haven't gotten to read JoAnn's Notebook yet. Perhaps Joey's ghostly powers could help you in that respect?
[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#sectionstart Alphabetize(String a, String b)// DO NOT EDIT OR REMOVE THIS LINE
function Alphabetize(String a, String b) {
int ordered;
int charlength;
if (a.Length >= b.Length) charlength = b.Length;
else if (a.Length < b.Length) charlength = a.Length;
int lettercount;
while ((ordered == 0) && (lettercount <= charlength)) {
if (a.Chars[lettercount] > b.Chars[lettercount]) ordered = -1;
else if (a.Chars[lettercount] < b.Chars[lettercount]) ordered = 1;
else lettercount++;
}
return ordered;
}
#sectionend Alphabetize(String a, String b)// DO NOT EDIT OR REMOVE THIS LINE
Quote from: Raggit on Tue 05/12/2006 15:00:49Is that the way the game ends? If so, I was disappointed there.
Quote from: SSH on Tue 05/12/2006 16:03:44Basic HTML... Frames? :o
Quote from: big brother on Wed 22/11/2006 15:51:04You are right, I'm sure there's a better way of doing it.
Quote from: ManicMatt on Thu 09/11/2006 11:57:33What was the first adventure game to include speech?
Quote from: Nostradamus on Thu 09/11/2006 07:23:00Broken Sword - combining an interesting true historical story as the subject of an adventure game.
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.545 seconds with 15 queries.