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
Amnesia custom story scripting help
Electrofuze Offline
Junior Member

Posts: 13
Threads: 3
Joined: Sep 2011
Reputation: 0
#8
RE: Amnesia custom story scripting help

(10-01-2011, 06:21 AM)Obliviator27 Wrote: extra_english.lang
It's lowercase.
Anyhow, You want your .hps to be in the same folder your .map file is, and they have to have the same name.

Example:
Level1.map
Level1.hps

so in your case,
00_TheHowling.map
00_TheHowling.hps

And your .cfg file should be

<Main

Name = "LivingNightmare"
Author = "Electrofuze"
Imgfile = "Amnesia-Shambles"
Mapsfolder = "Maps/Ch01/"
Startmap = "00_TheHowling.map
Startpos = "PlayerStartArea_2"
/>

I doubt the order in which those terms appear is important, but I switched them around to what I have just in case.
Its strange i switched it to your order it didnt work then i played around with it no luck Since your an expert Smile. Can you make sure my order on what i did is correct because i have a feeling my hps folder is messed up.and just to let you know i am using notepad++
Custom_Story_Settings.cfg
<Main

Name = "LivingNightmare"
Author = "Electrofuze"
Imgfile = "Amnesia-Shambles"
Mapsfolder = "Maps/Ch01/"
Startmap = "00_TheHowling.map
Startpos = "PlayerStartArea_2"
/>
00_Thehowling.hps
////////////////////////////
// Run first time starting map
void OnStart()
{
AddUseItemCallback("", "SmallStorageRoomkey", "SmallStorageRoom", "UsedKeyOnDoor", true);
}

void UsedKeyOnDoor(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("Smallstorageroom", false, true);
PlaySoundAtEntity("", "unlock_door", "SmallStorageRoom", 0, false);
RemoveItem("SmallStorageRoomkey");
}

////////////////////////////
// Run when entering map
void OnEnter()
{

}

////////////////////////////
// Run when leaving map
void OnLeave()
{

}
extra_english.lang
<LANGUAGE>
<CATEGORY Name="Livingnightmare">
<Entry Name="Description">Just a description.</Entry>
</CATEGORY>
<CATEGORY Name="Journal">
<Entry Name="Explaining_Name">Explaining</Entry>
<Entry Name="Explaining_Text">This is a test note.</Entry>
</CATEGORY>
</LANGUAGE>
thats what i have and for the locations
My customstory settings are in my Livingnightmare Directory same goes for extra english lang
and then Maps/ch01 i have my map and my hps folder
I hope thats correct oh and thank you for helping me alot to i gave you rep your aswome lol
10-01-2011, 06:31 AM
Find


Messages In This Thread
RE: Amnesia custom story scripting help - by Electrofuze - 10-01-2011, 06:31 AM



Users browsing this thread: 1 Guest(s)