Facebook Twitter YouTube Frictional Games | Forum | Newsletter | Dev Blog | Dev Wiki | Support | Shelf | Store

Privacy Policy


Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Script Help
Author Message
flamez3 Offline
Posting Freak

Posts: 1,320
Joined: Apr 2011
Reputation: 57
Post: #2
RE: Script Help
Quote:void OnStart()
{
AddEntityCollideCallback("Player", "PlayerCollide", "MonsterFunction", true, 1);
AddUseItemCallback("", "key1", "Mansion_6", "FUNCTION1", true);
AddUseItemCallback("", "key2", "castle_6", "FUNCTION2", true);
}


void MonsterFunction(string &in asParent, string &in asChild, int alState)
{
SetEntityActive("servant_grunt_1", true);
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_1", 2, "");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_2", 0, "");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_3", 0, "");
}
void FUNCTION1(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("Mansion_6", false, true);
PlaySoundAtEntity("", "unlock_door", "door1", 0, false);
RemoveItem("key1");
}


void FUNCTION2(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("castle_1", false, true);
PlaySoundAtEntity("", "unlock_door", "door1", 0, false);
RemoveItem("key2");
}

The things like "AddEntityCollideCallback("Player", "PlayerCollide", "MonsterFunction", true, 1); " Always go in the void OnStart() block. I've also renamed some of your functions; two different functions can't have the same name. Just copy and paste that into your script.

(This post was last modified: 12-11-2011 12:03 AM by flamez3.)
12-11-2011 12:01 AM
Find all posts by this user Quote this message in a reply
Post Reply 


Messages In This Thread
Script Help - aqfitz622 - 12-10-2011, 10:25 PM
RE: Script Help - flamez3 - 12-11-2011 12:01 AM



User(s) browsing this thread: 1 Guest(s)