Menu

Show posts

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

Messages - dayowlron

#1081
The Rumpus Room / Re: *Guess the Movie Title*
Fri 24/03/2017 16:02:40
Darn it i missed it. I am shocked it was Link. I just through out some movies I knew of that had monkeys
Will post a screen shot shortly, in the mean time solve Mandles trivia?
#1082
was it supposed to be a fake knife but wound up being a real knife?
#1083
The Rumpus Room / Re: The Points Game
Thu 23/03/2017 17:07:56
So far highest score is one. we can score more by making one basket in basketball.
#1084
I was just about to post when I saw Snarky just posted asking all of my questions except 1.

did the person fall onto something that caused his death?
#1085
Lets see, we have a human or several humans that died from an accident at some sporting event. The clue that confuses me was the fall question.

Did he die from anything medical condition?
Did the stands collapse at a sports arena?
#1086
Doesn't look like you are getting any other replies so I will attempt to answer the other part of your question.
I wouldnt use a character for the flower bed but rather use an object. It can animate if you need it to but you can also just change the graphic at various times if "animation" is not needed. If each of the 3 changes/views is just a matter of changing the graphic then you can do that by just setting the Graphic property of the object, but if each time the flowerbed changes state and there is some animation then you can do that with an object as well. Unless the flowerbed is going to be walking around or talking to other characters then it is actually better as an object.
#1087
The Rumpus Room / Re: The Movie Quote Game
Tue 21/03/2017 18:09:27
Clash of the Titans?
Jason and the Argonauts?
Immortals?
Wrath of the Titans?

I just keep getting the feeling the movie was related to Greek gods.
#1088
The problem is you can only have 1 Active Inventory at a time. You need to set up a couple of variables to show when you have completed that particular task.
Give me a sec and I will write the script based on what you have there with proper indention also.

Code: ags

bool SeedsPlanted=false;
bool SoilWatered=false;
bool FlowersMessageDisplayed=false;

function cFlowerbed_UseInv()
{
    if(player.ActiveInventory==iSeeds){
        player.Walk(465, 465, eBlock);
        Display("You throw all the seeds into the soil.");
        player.LoseInventory(iSeeds);
        SeedsPlanted=true;
    }
    else if(player.ActiveInventory==iWATERingcan){
        player.Walk(465, 465, eBlock);
        Display("You pour the water onto the soil.");
        player.LoseInventory(iWATERingcan);
        SoilWatered = true;
    }
    else{
        Display("You don't feel like putting that into the soil.");
    }
    if (SeedsPlanted &&  SoilWatered && !FlowersMessageDisplayed ) 
    {
        Display ("Suddenly, three small, beautiful flowers rise from the soil!");
        FlowersMessageDisplayed=true;
    }
}



Also added the variable FlowersMessageDisplayed because after you see that message you don't want to see that message again if they use something else on the flower bed. Try that code out and see how it works.
#1089
The issue with the single digit minutes, change the format to %02d:

Code: ags

    lbClock.Text = String.Format("Day %d, %d:%02d",vIntDays,vIntHours,vIntMinutes);

the 02 means it should contain 2 digits and zero fill the number to the left.

And you would put it in repeatedly_execute_always if you want the label to be updated even when there is a blocking command running.
#1090
What is a billy boat?
#1091
The Rumpus Room / Re: *Guess the Movie Title*
Mon 20/03/2017 23:34:29
Monkey Shines? or Link?
#1092
Try this. You need to have the format as one single string and it is the first string. also have to call the string format function.

Code: ags

    lbClock.Text = String.Format("Day %d, %d:%d",vIntDays,vIntHours,vIntMinutes);
#1093
Was the feast some special occasion?
and would knowing what the occasion is help in solving the case?
#1094
This is not totally meant as a guess to the puzzle, however it does fit all the clues as far as I know, but still unsure of what kind of "feast" it was.
The father troll was abusive so the mother troll poisoned him and tried to cook him.
The offspring troll saw what the mother did to his dad so he killed the mother (stabbing/shooting don't know).
Then the offspring troll wanting food ate the father troll and died from the poison.

no need to respond, just throwing out ideas. however question.
did the offspring eat one of the parents?
#1095
Sounds like a family of trolls where the child troll was trying to eat the parents.
Was the parents (Mother and Father) the ones dressed in their finest clothes?
#1096
The Rumpus Room / Re: The Movie Quote Game
Sat 18/03/2017 15:13:39
Correct, and I have no clue on your quote.
Maybe a PeeWee Herman movie?
#1097
The Rumpus Room / Re: The Movie Quote Game
Sat 18/03/2017 11:55:08
Quote from: Kumpel on Sat 18/03/2017 09:09:58
The Island?
(wrong)

If this one does not give it away then the one I have picked out next will.

You tell on me, I tell on you.
What are you talking about, I'm as clean as a preacher's sheets. I'm as clean as...
What about that time you blew a six-week operation because you were too busy getting a blow job?
You knew about that?
Uh-huh.
#1098
He already has:
Were the cards playing cards?
in the "No group" so they are not playing cards.
#1099
your problem is ur using the character type not the specific character occurrence.

Code: ags
function repeatedly_execute() 
{
  if (!cBoy.Animating)
  {
    cBoy.Animate(0,7,eRepeat,eNoBlock);
  }
  if (!cGirl.Animating)
  {
    cGirl.Animate(0,8,eRepeat,eNoBlock);
  }
  
}


Basically it is saying when you specified character in the if statement it didn't know which character you were querying about so it wanted an index.
for instance instead of putting cBoy you could put character[1] if cBoy is character number 1, etc.
#1100
The Rumpus Room / Re: The Movie Quote Game
Sat 18/03/2017 01:10:02
all (wrong)
another quote

My turn to drive?
Give me the page!
What?
This jumps from page 9 to page 11, where's page 10?
Must be a typo.
SMF spam blocked by CleanTalk