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
Level Editor Help Getting servant to wait until it sees player.
MikkoK Offline
Junior Member

Posts: 6
Threads: 2
Joined: Dec 2011
Reputation: 0
#3
RE: Getting servant to wait until it sees player.

(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


12-19-2011, 03:50 PM
Find


Messages In This Thread
RE: Getting servant to wait until it sees player. - by MikkoK - 12-19-2011, 03:50 PM



Users browsing this thread: 1 Guest(s)