(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