Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: on Thu 13/05/2004 22:01:06

Title: I can't get my object to appear
Post by: on Thu 13/05/2004 22:01:06
 ;D Here's how the game is supposed to be:

You talk to this dude and he says to give you his bag he'll need a sack of money. You get the sack of money out back. When you return with the sack of money, the bag is on the table.

I TRIED:
Laying a whole-room hotspot and using the "IF PLAYER HAS INVENTORY ITEM" and I used "Hide Object". Should I use "Turn Object On" command or what?
Title: Re: I can't get my object to appear
Post by: Scorpiorus on Thu 13/05/2004 22:23:42
QuoteWhen you return with the sack of money, the bag is on the table.
According to that scenario you can have:

Initially, the "bag" object is off. (check it in the AGS editor)

Room interactions:


.Player enters screen (before fade-in)
.|
.|_Conditional - if the player has an inventory item (sack of money)
.......|
.......|_Object - Switch an object back on (bag)


This way the bag will appear when a player enters the room, provided he has the sack of money of course.
Title: Re: I can't get my object to appear
Post by: on Fri 14/05/2004 21:06:21
 ;D I thought so. I was just wondering that if you uncheck: OBJECT IS INITIALLY VISIBLE, does that mean it's off?

THANX FOR THE HELP!

Title: Re: I can't get my object to appear
Post by: TerranRich on Sat 15/05/2004 05:39:55
Visible means you can see. Therefore, it means it's "on".