The following warnings occurred:
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 906 - File: showthread.php PHP 7.2.24-0ubuntu0.18.04.17 (Linux)
File Line Function
/showthread.php 906 errorHandler->error



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
Need help with scripting!
Zaapeer Offline
Junior Member

Posts: 32
Threads: 9
Joined: Dec 2011
Reputation: 0
#1
Need help with scripting!

So I'm making my map in amnesia level editor, everything's just fine. But then I wanna start my scripting. So I add a function, and it's works perfectly fine, but when I try to add a new function there's an error when I start up my custom story! D: I dunno what the problem is D:
Here's the error message:

[Image: amnesiaerror.png]

Uploaded with ImageShack.us

Here's my script:

void OnStart()

{
AddEntityCollideCallback("Player", "door_slamHousekeeper", "func_slam", true, 1);
}

void func_slam(string &in asParent, string &in asChild, int alState)
{
SetSwingDoorClosed("HousekeeperDoor", true, false);
PlaySoundAtEntity("DoorSlamSound", "scare_slam_door.snt", "Player", 0, false);
PlaySoundAtEntity("", "react_pant.snt", "Player", 0, false);
PlaySoundAtEntity("", "react_scare.snt", "Player", 0, false);
GiveSanityDamage(5.0f, true);
}

{
AddEntityCollideCallback("Player", "NoOil", "Collide_Area", true, 1);
}

void Collide_Area(string &in asParent, string &in asChild, int alState)
{
SetPlayerLampOil(0.0f);
}

{
AddUseItemCallback("", "FirstRoomKey_1", "BedroomDoorFirst_1", "unlock_door", true);
}

void unlock_door(string &in FirstRoomKey_1, string &in BedroomDoorFirst_1)
{
SetSwingDoorLocked(BedroomDoorFirst_1, false, true);
PlaySoundAtEntity("", "unlock_door", BedroomDoorFirst_1, 0, false);
RemoveItem(FirstRoomKey_1);
}

void OnEnter()
{


}

void OnLeave()
{

}

Please help me!
12-27-2011, 07:56 PM
Find


Messages In This Thread
Need help with scripting! - by Zaapeer - 12-27-2011, 07:56 PM
RE: Need help with scripting! - by Your Computer - 12-27-2011, 09:25 PM
RE: Need help with scripting! - by Zaapeer - 12-28-2011, 09:53 AM
RE: Need help with scripting! - by ferryadams10 - 12-28-2011, 10:07 AM
RE: Need help with scripting! - by Zaapeer - 12-28-2011, 11:42 AM
RE: Need help with scripting! - by flamez3 - 12-28-2011, 02:31 PM
RE: Need help with scripting! - by Tripication - 12-28-2011, 11:47 AM
RE: Need help with scripting! - by Zaapeer - 12-28-2011, 12:07 PM
RE: Need help with scripting! - by ferryadams10 - 12-28-2011, 02:47 PM
RE: Need help with scripting! - by SilentStriker - 12-28-2011, 02:53 PM
RE: Need help with scripting! - by ferryadams10 - 12-28-2011, 03:04 PM
RE: Need help with scripting! - by SilentStriker - 12-28-2011, 03:24 PM
RE: Need help with scripting! - by flamez3 - 12-28-2011, 03:05 PM
RE: Need help with scripting! - by Zaapeer - 12-28-2011, 03:19 PM



Users browsing this thread: 2 Guest(s)