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
Unexpected end of file
drunkmonk Offline
Member

Posts: 109
Threads: 7
Joined: Jun 2012
Reputation: 4
#5
RE: Unexpected end of file

AddEntityPlayerInteractCallback("Key_Upper_Levels", "monsterscare", true);
void monsterscare(string &in asEntity)
{
AddEntityCollideCallback("Player", "monsterscarearea", "monsterscare2" true, 1);
SetSwingDoorClosed("castle_arched02", false, false);
SetSwingDoorDisableAutoClose("castle_arched02", true);
AddPropForce("castle_arched02", 70.0f, 0, 0, "World");
SetSwingDoorLocked("castle_arched02_1", false, false);
SetSwingDoorClosed("castle_arched02_1", false, false);
SetSwingDoorDisableAutoClose("castle_arched02_1", true);
AddPropForce("castle_arched02_1", 70.0f, 0, 0, "World");
SetEntityActive("monsterscarearea", true);
SetEntityActive("MonsterActive", false);
}
void monsterscare2(string &in asParent, string &in asChild, int alState)
{
SetEntityActive("servant_brute_2", true);
AddEnemyPatrolNode("servant_brute_2", "monster_disable_node", 0, "run.dae_anim");
AddEntityCollideCallback("servant_brute_2", "monster_disable_area", monsterdisable", false, 1);
StartPlayerLookAt("castle_arched02", 10, 10, "");
AddTimer("stoplook", 2.0, "PlayerStopLook");
GiveSanityDamage(0, true);
}
void PlayerStopLook(string &in asTimer)
{
StopPlayerLookAt();
}

I think thats all the new stuff
06-20-2012, 09:09 PM
Find


Messages In This Thread
Unexpected end of file - by drunkmonk - 06-20-2012, 08:47 PM
RE: Unexpected end of file - by Cruzore - 06-20-2012, 08:55 PM
RE: Unexpected end of file - by drunkmonk - 06-20-2012, 08:58 PM
RE: Unexpected end of file - by Cruzore - 06-20-2012, 09:04 PM
RE: Unexpected end of file - by drunkmonk - 06-20-2012, 09:09 PM
RE: Unexpected end of file - by Cruzore - 06-20-2012, 09:13 PM
RE: Unexpected end of file - by drunkmonk - 06-20-2012, 09:19 PM
RE: Unexpected end of file - by Cruzore - 06-20-2012, 09:22 PM
RE: Unexpected end of file - by drunkmonk - 06-20-2012, 09:30 PM
RE: Unexpected end of file - by Apjjm - 06-20-2012, 09:34 PM
RE: Unexpected end of file - by drunkmonk - 06-20-2012, 09:40 PM
RE: Unexpected end of file - by Cruzore - 06-20-2012, 09:36 PM



Users browsing this thread: 1 Guest(s)