Frictional Games Forum (read-only)
NEED HELP!!! plz answer. - Printable Version

+- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum)
+-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html)
+--- Forum: Custom Stories, TCs & Mods (https://www.frictionalgames.com/forum/forum-35.html)
+--- Thread: NEED HELP!!! plz answer. (/thread-7297.html)



NEED HELP!!! plz answer. - ZxBrad - 04-11-2011

I dont know what im doing wrong. This stuff is confusing.
all i want is a door to close behind me and my character to spin around and look at it. Heres the my script for it. The game keeps giving me an error when i try to start up the map.

Spoiler below!

////////////////////////////
// Run first time starting map
void OnStart()

{
SetMessage("Journal", "start", 8.0f);
AddUseItemCallback("", "doorkey_1", "castle_1", "UsedKeyOnDoor", true);
AddUseItemCallback("", "exitkey_1", "metal_1", "UsedKeyOnDoor", true);
AddEntityCollideCallback("Player" , "ScriptArea_1" , "MonsterFunc1" , true , 1);
AddEntityCollideCallback("Player", "doorslam", "Collidedoorslam, true, 1);
}

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

{
StartPlayerLookAt("castle_2", 6, 8, "");
SetSwingDoorClosed("castle_2". true, true);
}

void UsedKeyOnDoor(string &in asItem, string &in asEntity)

{
SetSwingDoorLocked("castle_1", false, true);
PlaySoundAtEntity("", "unlock_door", "castle_1", 0, false);
RemoveItem("doorkey_1");
SetSwingDoorLocked("metal_1", false, true);
PlaySoundAtEntity("", "unlock_door", "metal_1", 0, false);
RemoveItem("exitkey_1");
}

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

{
SetEntityActive("servant_grunt_1" , true);
}




RE: NEED HELP!!! plz answer. - Anxt - 04-11-2011

What is the error message?


RE: NEED HELP!!! plz answer. - MrBigzy - 04-11-2011

AddEntityCollideCallback("Player", "doorslam", "Collidedoorslam, true, 1);

You're missing a ". This is why I made that thread about scripting errors, these errors are so common. Tongue

Also:

SetSwingDoorClosed("castle_2". true, true);

A period instead of a comma D:


RE: NEED HELP!!! plz answer. - ZxBrad - 04-11-2011

(04-11-2011, 04:11 AM)MrBigzy Wrote: AddEntityCollideCallback("Player", "doorslam", "Collidedoorslam, true, 1);

You're missing a ". This is why I made that thread about scripting errors, these errors are so common. Tongue

Also:

SetSwingDoorClosed("castle_2". true, true);

A period instead of a comma D:

thx i got it too work. But i want the character to gasp or get scared. and also how do i make him stop staring at the door when its done.


RE: NEED HELP!!! plz answer. - Dalroc - 04-11-2011

(04-11-2011, 04:49 AM)ZxBrad Wrote: thx i got it too work. But i want the character to gasp or get scared. and also how do i make him stop staring at the door when its done.
Your'e looking for these:
Code:
void PlaySoundAtEntity(string& asSoundName, string& asSoundFile, string& asEntity, float afFadeTime, bool abSaveSound);
void AddTimer(string& asName, float afTime, string& asFunction);
void StopPlayerLookAt();



RE: NEED HELP!!! plz answer. - ZxBrad - 04-12-2011

(04-11-2011, 09:47 AM)Dalroc Wrote:
(04-11-2011, 04:49 AM)ZxBrad Wrote: thx i got it too work. But i want the character to gasp or get scared. and also how do i make him stop staring at the door when its done.
Your'e looking for these:
Code:
void PlaySoundAtEntity(string& asSoundName, string& asSoundFile, string& asEntity, float afFadeTime, bool abSaveSound);
void AddTimer(string& asName, float afTime, string& asFunction);
void StopPlayerLookAt();

Thx, but where would i put these in my script and also what would i know what to place them with?

Spoiler below!
////////////////////////////
// Run first time starting map
void OnStart()

{
SetMessage("Journal", "start", 8.0f);
AddUseItemCallback("", "doorkey_1", "castle_1", "UsedKeyOnDoor", true);
AddUseItemCallback("", "exitkey_1", "metal_1", "UsedKeyOnDoor", true);
AddEntityCollideCallback("Player" , "ScriptArea_1" , "MonsterFunc1" , true , 1);
AddEntityCollideCallback("Player", "doorslam", "Collidedoorslam", true, 1);
}

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

{
StartPlayerLookAt("castle_2", 6, 8, "");
SetSwingDoorClosed("castle_2", true, true);
}

void UsedKeyOnDoor(string &in asItem, string &in asEntity)

{
SetSwingDoorLocked("castle_1", false, true);
PlaySoundAtEntity("", "unlock_door", "castle_1", 0, false);
RemoveItem("doorkey_1");
SetSwingDoorLocked("metal_1", false, true);
PlaySoundAtEntity("", "unlock_door", "metal_1", 0, false);
RemoveItem("exitkey_1");
}

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

{
SetEntityActive("servant_grunt_1" , true);
}