Monster area trigger
OK so when i added the path nodes and the stuff needed for the monster to spawn my map keeps crashing with this error:
FATAL ERROR: Could not load script file 'custom_stories/The Deception/maps/The Deception.hps'!
main (9,1) : ERR :Expected ',' or ';'
void OnStart()
{
AddUseItemCallback("", "key_1", "door_1", "UsedKeyOnDoor", true);
SetEntityPlayerInteractCallback("monster_tinderbox", "Spawn_Monster", true);
AddEntityCollideCallback("Player", "PlayerCollide", "MonsterFunction", true, 1);
}
void UsedKeyOnDoor(string &in asItem, string &in asEntity)
void MonsterFunction(string &in asParent, string &in asChild, int alState) <-------This is the line number 9
{
SetSwingDoorLocked("door_1", false, true);
PlaySoundAtEntity("", "unlock_door", "door_1", 0.0f, false);
RemoveItem("key_1");
AddEnemyPatrolNode("servant_grunt_3", "PathNodeArea_1", 2, "");
AddEnemyPatrolNode("servant_grunt_3", "PathNodeArea_2", 0, "");
AddEnemyPatrolNode("servant_grunt_3", "PathNodeArea_3", 0, "");
AddEnemyPatrolNode("servant_grunt_3", "PathNodeArea_4", 0, "");
AddEnemyPatrolNode("servant_grunt_3", "PathNodeArea_5", 0, "");
AddEnemyPatrolNode("servant_grunt_3", "PathNodeArea_6", 0, "");
AddEnemyPatrolNode("servant_grunt_3", "PathNodeArea_7", 0, "");
AddEnemyPatrolNode("servant_grunt_3", "PathNodeArea_8", 0, "");
AddEnemyPatrolNode("servant_grunt_3", "PathNodeArea_9", 0, "");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_10", 4, "");
}
void Spawn_Monster(string &in entity)
{
SetEntityActive("servant_brute_1", true);
SetEntityActive("servant_grunt_3", true);
}
(This post was last modified: 08-02-2012, 07:35 PM by tokugawa1.)
|