Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
On Pickup help
Hyperoom Offline
Junior Member

Posts: 5
Threads: 1
Joined: May 2017
Reputation: 0
#4
RE: On Pickup help

(10-22-2010, 03:25 PM)ThePaSch Wrote:
(10-22-2010, 03:19 PM)house Wrote: Hello. I want to make something in my level that when you pick up a lantern, a locked door blocking the path is unlocked. Like in the second level of Amnesia. You cannot continue until you pick up the lantern. Can someone help me?

In the lantern's Entity properties, type (for example) "PickLanternUnlockDoor" (without the quotes) into the "CallbackFunc" field.
Then, in your mapname.hps file, do something like this:
void PickLanternUnlockDoor(string &in EntityName, string &in Type)
{
if(Type == "OnPickup") {
SetSwingDoorLocked("door_name", false, true);
}
}
Of course you have to replace door_name with the entity name of your door.
Did I do something wrong since the whole game crashes when I try to start the custom story?
(This post was last modified: 06-20-2017, 02:43 PM by Hyperoom.)
06-20-2017, 02:41 PM
Find


Messages In This Thread
On Pickup help - by house - 10-22-2010, 03:19 PM
RE: On Pickup help - by ThePaSch - 10-22-2010, 03:25 PM
RE: On Pickup help - by house - 10-22-2010, 06:56 PM
RE: On Pickup help - by Hyperoom - 06-20-2017, 02:41 PM
RE: On Pickup help - by Romulator - 06-20-2017, 03:39 PM



Users browsing this thread: 1 Guest(s)