Thats a nice looking cat sprite Khris...didnt know you did art too! (scripting guru + nice art, wow)
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: GarageGothic on Mon 07/12/2009 00:05:31
Oh, if he's on a bike it would make perfect sense with the goggles (I take it he's also breaking the helmet law), then you can always use the one without for when he's taken to jail or if the player meets him again later on.
string $sMyVariable = "MyVariable";
int $iMyIntVariable = "5";
// room script file
int Lampost_counter;
function hLampPost_Look()
{
if (Lampost_counter == 0)
{
Display("You see a lampost.");
}
if (Lampost_counter == 1)
{
Display("Looking closer, you see theres a piece of gum stuck to it.");
}
if (Lampost_counter == 2)
{
cEgo.SpeechView = 17;
Game.MinimumTextDisplayTimeMs = 2500;
cEgo.SayCustomFont("Nasty...");
Game.MinimumTextDisplayTimeMs = 1000;
SetOfficerSpeechView_Neutral();
}
if (Lampost_counter == 3)
{
Display("You notice nothing else of interest about the lampost..");
}
if (Lampost_counter < 3)
{
Lampost_counter += 1;
}
}
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.067 seconds with 14 queries.