Quote from: Radiant on Sun 25/05/2008 16:33:46
What kind of name is Mutt anyway?
Well, Indiana was named after a dog.... "Mutt" must be.... a cat of some king?

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 MenuQuote from: Radiant on Sun 25/05/2008 16:33:46
What kind of name is Mutt anyway?
Quote from: monkey_05_06 on Sat 24/05/2008 06:44:22
Remember everyone:Spoiler
In the event of a nuclear explosion, hide in the refrigerator. The freon will keep you nice and cool.[close]
struct People_Profile
{
string Name;
int Age;
bool Sex;
};
People_Profile Humans[50];
funtion UpdateHumans (string Name, int Age, bool Sex, int HumanNum)
{
Humans[HumanNum].Name = Name;
Humans[HumanNum].Age = Age;
Humans[HumanNum].Sex = Sex;
}
function ReadHumans (int WhatToRead, int HumanNum)
{
if (WhatToRead == 1) return Humans[HumanNum].Name;
else if (WhatToRead == 2) return Humans[HumanNum].Age;
else if (WhatToRead == 3) return Humans[HumanNum].Sex;
}
export funtion UpdateHumans (string Name, int Age, bool Sex, int HumanNum);
export function ReadHumans (int WhatToRead, int HumanNum);
String GetName;
int GetAge;
bool GetSex;
function myRoomFunction()
{
GetName = ReadHumans(1, 3); // Reads Humans[3]'s Name
GetAge = ReadHumans(2, 0); // Reads Humans[3]'s Age
GetSex = ReadHumans(3, 21); // Reads Humans[3]'s Sex
Display ("Human #3's Name is %s", GetName);
Display ("Human #0's Age is %d", GetAge);
if (GetSex == true) Display ("Human #21's Sex is True");
else Display ("Human #21's Sex is False");
UpdateHumans ("Bob", 27, false, 12);
// Set's Humans[12] Name to Bob, age to 27, and sex to False;
}
Quote from: vict0r on Wed 21/05/2008 21:05:56
Hmm... Although not the best game ever, Doom 3 scared the crap out of me several times!
Quote from: Pablo on Sun 18/05/2008 14:17:50
I watched it ALL THE TIME and I LOVED it, ok!!! It was the best fucking show that ever aired! THERE! I said it!
bool origscalesetting[10];
bool origlightsetting[10];
if (mouse.y < 13 && gIconbar.Visible == false)
{
gIconbar.Visible = true;
Mouse.UseModeGraphic(eModePointer);
}
if (mouse.y > 231 && gIconbar.Visible == true)
{
gIconbar.Visible = false;
Mouse.UseDefaultGraphic();
}
function IconTalk_Click(GUIControl *control, MouseButton button) {
mouse.Mode = eModeTalkto;
mouse.UseDefaultGraphic();
gIconbar.Visible = false;
}
Quote from: ProgZmax on Sat 17/05/2008 14:07:24
I bet they made millions just from hint lines back then.
if (mouse.y < 20) gIconbar.Visible = true;
else gIconbar.Visible = false;
Quote from: Domino on Fri 16/05/2008 23:16:44
Play Global Thermonuclear War.
Quote from: evenwolf on Thu 15/05/2008 17:22:18
These guys have alot of internet balls.
Quote from: SSH on Tue 13/05/2008 20:05:19
Just pay the pron site's subscription, Joseph, and then you'll get full-size images and not just thumbnails
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.170 seconds with 14 queries.