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
Triggering Monsters
HansEnMilan Offline
Junior Member

Posts: 6
Threads: 2
Joined: Aug 2011
Reputation: 0
#3
RE: Triggering Monsters

(08-12-2011, 06:06 PM)Tanshaydar Wrote: Hi and welcome to forum.
Yes, this is correct section.

You need to place a monster where you want to spawn it, then deactivate it in the editor. This can be done with unchecking "active" checkbox.
After that, you need to activate the monster, with setentityactive function; then add the patrols.

You need to add patrol nodes in level editor first.
You can find the exact functions here: http://wiki.frictionalgames.com/hpl2/amn..._functions

I tried this but I seem to fail haha, So If I'm correct I use :
void AddEntityCollideCallback(string& asParentName, string& asChildName, string& asFunction, bool abDeleteOnCollide, int alStates);

then link it with :
void SetEntityActive(string& asName, bool abActive);

and link that up with :
void AddEnemyPatrolNode(string& asName, string& asNodeName, float afWaitTime, string& asAnimation);

Mind giving me an example that fits in with this:

////////////////////////////
// Run first time starting map
void OnStart()
{
AddEntityCollideCallback("Player", "AreaEen", "CollideRoomEen", true, 1);
}

void CollideRoomEen(string &in asParent, string &in asChild, int alState)

{
SetSwingDoorLocked("hanskamerdeur", true, true);
}


////////////////////////////
// Run when entering map
void OnEnter()
{
AddUseItemCallback("", "hanskamerdeurkey_1", "hanskamerdeur", "UsedKeyOnDoor", true);
}

void UsedKeyOnDoor(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("hanskamerdeur", false, true);
PlaySoundAtEntity("", "unlock_door", "hanskamerdeur", 0, false);
RemoveItem("hanskamerdeurkey_1");
}


////////////////////////////
// Run when leaving map
void OnLeave()
{

}

I would be very very happy.




08-12-2011, 06:25 PM
Find


Messages In This Thread
Triggering Monsters - by HansEnMilan - 08-12-2011, 05:54 PM
RE: Triggering Monsters - by Tanshaydar - 08-12-2011, 06:06 PM
RE: Triggering Monsters - by HansEnMilan - 08-12-2011, 06:25 PM
RE: Triggering Monsters - by Tanshaydar - 08-12-2011, 06:28 PM
RE: Triggering Monsters - by HansEnMilan - 08-12-2011, 06:38 PM
RE: Triggering Monsters - by Tanshaydar - 08-12-2011, 06:56 PM
RE: Triggering Monsters - by HansEnMilan - 08-12-2011, 06:59 PM
RE: Triggering Monsters - by MegaScience - 08-13-2011, 06:20 AM



Users browsing this thread: 1 Guest(s)