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:
  • 1 Vote(s) - 2 Average
  • 1
  • 2
  • 3
  • 4
  • 5
New at HPS need help
p1nky1337 Offline
Junior Member

Posts: 2
Threads: 1
Joined: Feb 2012
Reputation: 0
#1
Exclamation  New at HPS need help

Hey.
i've have startet making a custom story in Amnesia.
but something i dont understand is following:

1: The scripting i make, should i make it in 1 .hps file or multiple?

2: if only in 1 file, what is the problem here:

void OnStart()
{
AddUseItemCallback("", "key01", "Door01", "KeyOnDoor", true);
    }

void KeyOnDoor(string &in asItem, string &in asEntity)
    {
    SetSwingDoorLocked("Door01", false, true);
    PlaySoundAtEntity("", "unlock_door", "Door01", 0, false);
    RemoveItem("key01");
    
}


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

void func_slam(string &in asParent, string &in asChild, int alState)
{
SetSwingDoorClosed("Door_slam01", true, true);

PlaySoundAtEntity("", "react_breath_slow.snt", "Player", 0, false);

PlaySoundAtEntity("", "react_scare", "Player", 0, false); PlaySoundAtEntity("", "close_door.snt", "Player", 0, false);

GiveSanityDamage(5.0f, true);
}



The problem with the code is that when i only have the code for slamming the door, it works. but when i have the code for key to a door in there at same time it wont work. Game crashes.

I have attached a .txt file with the code in.


Thanks for the help! Big Grin


Attached Files
.txt   problem.txt (Size: 736 bytes / Downloads: 99)
(This post was last modified: 02-28-2012, 03:19 PM by p1nky1337.)
02-28-2012, 03:18 PM
Find


Messages In This Thread
New at HPS need help - by p1nky1337 - 02-28-2012, 03:18 PM
RE: New at HPS need help - by jessehmusic - 02-28-2012, 04:25 PM
RE: New at HPS need help - by p1nky1337 - 02-28-2012, 05:03 PM
RE: New at HPS need help - by jessehmusic - 02-28-2012, 10:28 PM
RE: New at HPS need help - by SilentStriker - 02-28-2012, 10:35 PM
RE: New at HPS need help - by jessehmusic - 02-29-2012, 05:15 PM
RE: New at HPS need help - by SilentStriker - 02-29-2012, 06:06 PM



Users browsing this thread: 1 Guest(s)