flamez3
Posting Freak
Posts: 1,281
Threads: 48
Joined: Apr 2011
Reputation:
57
|
RE: Getting servant to wait until it sees player.
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);
}
(This post was last modified: 12-19-2011, 03:41 PM by flamez3.)
|
|
12-19-2011, 03:39 PM |
|