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: Ghost on Sun 15/02/2009 20:24:42There must be a problem with my monitor or yours. It's clearly blue on mine and looks fine.
The purple top clashes most violently with the red, though.
int selling_step;
function room_RepExec()
{
if(BarbaraPosition == "Selling"){
if(BarbaraSelling == false){
BarbaraSelling = true;
SetTimer(3, 120);
cBar.Walk(192, 130, eNoBlock);
}
else if(IsTimerExpired(3)){
selling_step = 3;
cBar.SayQueued("Hello citizen of Conroid! I have this wonderful cookie dough for sale.");
cBar.SayQueued("It's going to a great cause! This is to support the...");
cBar.SayQueued("Oh sorry boss. I forgot that I was getting this for the Steakhouse.");
cBar.SayQueued("I'll just be going now.");
}
else if ((selling_step == 3) && (QueuedSpeech.IsQueueEmpty())) {
SetTimer(1, 120);
selling_step = 0;
cBar.Walk(268, 134, eNoBlock);
}
else if(IsTimerExpired(1)){
selling_step = 1;
cBar.SayQueued("Hey citizen of Conroid! I'm selling some great chocolate chip cookie dough!");
cBar.SayQueued("It's going to a cause you know. To save the Western Steak House.");
cBar.SayQueued("...");
cBar.SayQueued("No I won't except rat hides as currency! Your discusting Archabald!");
cBar.SayQueued("Goodbye!");
}
else if ((selling_step == 1) && (QueuedSpeech.IsQueueEmpty())) {
SetTimer(2, 240);
cBar.Walk(126, 132, eNoBlock);
selling_step = 0;
}
else if(IsTimerExpired(2)){
selling_step = 2;
cBar.SayQueued("Hello mister. I would like to sell you some cookie dough to support a good cause.");
cBar.SayQueued("It's to save the Western Steak House.");
cBar.SayQueued("...");
cBar.SayQueued("Yes I understand your busy.");
cBar.SayQueued("Thanks anyway. Bye.");
}
else if ((selling_step == 2) && (QueuedSpeech.IsQueueEmpty())) {
selling_step = 0;
BarbaraSelling = false;
}
}
}
else if ((selling_step == 3) && (QueuedSpeech.IsQueueEmpty())) {
SetTimer(1, 120);
cBar.Walk(268, 134, eNoBlock);
}
function room_RepExec()
{
if(BarbaraPosition == "Selling"){
if(BarbaraSelling == false){
BarbaraSelling = true;
SetTimer(3, 120);
cBar.Walk(192, 130, eNoBlock);
}
if(IsTimerExpired(3)){
cBar.SayQueued("Hello citizen of Conroid! I have this wonderful cookie dough for sale.");
cBar.SayQueued("It's going to a great cause! This is to support the...");
cBar.SayQueued("Oh sorry boss. I forgot that I was getting this for the Steakhouse.");
cBar.SayQueued("I'll just be going now.");
SetTimer(1, 120);
cBar.Walk(268, 134, eNoBlock);
}
if(IsTimerExpired(1)){
cBar.SayQueued("Hey citizen of Conroid! I'm selling some great chocolate chip cookie dough!");
cBar.SayQueued("It's going to a cause you know. To save the Western Steak House.");
cBar.SayQueued("...");
cBar.SayQueued("No I won't except rat hides as currency! Your discusting Archabald!");
cBar.SayQueued("Goodbye!");
SetTimer(2, 240);
cBar.Walk(126, 131, eNoBlock);
}
if(IsTimerExpired(2)){
cBar.SayQueued("Hello mister. I would like to sell you some cookie dough to support a good cause.");
cBar.SayQueued("It's to save the Western Steak House.");
cBar.SayQueued("...");
cBar.SayQueued("Yes I understand your busy.");
cBar.SayQueued("Thanks anyway. Bye.");
BarbaraSelling = false;
}
}
}
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.134 seconds with 14 queries.