Frictional Games Forum (read-only)

Full Version: Getting servant to wait until it sees player.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have placed a servant in a wardrobe but everytime it comes out of there himself, I want him to be there until player opens the door can anyone help with this?
You would have to either, resize the wardrobe, or script it to open once the player touches the door.

To script it first tick the "active" box on the monster entity. Then go to the .hps file and put this in the void OnStart part:

SetEntityPlayerInteractCallback("nameofwardrobe", "monsterspawn", true);

This makes it once the player interacts with the wardrobe, it will activate the monsterspawn function that we will make soon. The true is to remove this function after we touch the wardrobe.


void monsterspawn(string &in asEntity)
{
SetEntityActive("nameofmonster", true);
}

This spawns the monster.

The full script to spawn the monster should look like this:

void OnStart()
{
SetEntityPlayerInteractCallback("nameofwardrobe", "monsterspawn", true);
}

void monsterspawn(string &in asEntity)
{
SetEntityActive("nameofmonster", true);
}
(12-19-2011, 03:39 PM)flamez3 Wrote: [ -> ]You would have to either, resize the wardrobe, or script it to open once the player touches the door.

To script it first tick the "active" box on the monster entity. Then go to the .hps file and put this in the void OnStart part:

SetEntityPlayerInteractCallback("nameofwardrobe", "monsterspawn", true);

This makes it once the player interacts with the wardrobe, it will activate the monsterspawn function that we will make soon. The true is to remove this function after we touch the wardrobe.


void monsterspawn(string &in asEntity)
{
SetEntityActive("nameofmonster", true);
}

This spawns the monster.

The full script to spawn the monster should look like this:

void OnStart()
{
SetEntityPlayerInteractCallback("nameofwardrobe", "monsterspawn", true);
}

void monsterspawn(string &in asEntity)
{
SetEntityActive("nameofmonster", true);
}
Thanks, the script got it working, now to continue making the custom story Smile