HPL2/HPL2 Helper Scripts
Introduction
HPL2 Helper Scripts by Aetheric Games is a package of .hps files containing script classes and functions that may be useful to HPL2 modders and custom story creators. It is compatible with ATDD version 1.5 and later.
Would you like to...
...make 500 candles blow out in a big wave? ...make haunted objects hover in the air? ...spawn dozens of random debris objects throughout an area? ...make a particle system move along a spline? ...manage a list of quest objectives? ...compare the distances between entities? ...make puzzles based on position and rotation? ...store an array in a global game variable? ...seamlessly teleport the player into an almost identical room? ...make a statue that twitches when the player has low sanity?
Well, this script package isn't going to magically do those things for you, but it gives you a lot of tools to help you do them yourself.
The scripts are divided into two categories: utilities and features. The utilities scripts include tools for general scripting, like new maths functions, or linked lists and vector classes. The features scripts are more specific solutions that make use of the utilities, such as a way to spawn entities at specific locations, script a large chain of events or to make entities twitch and flicker. Some modders might prefer to just adopt the utilities scripts. It's up to you!
See below for download and set-up instructions.
Contents
The documentation and help is organised by file. You'll find everything detailed on these pages:
Utilities
|
Features
|
Set-up
Requires version 1.5
First, download HPL2 Helper Scripts via Steam Workshop or ModDb. Once you have it, there are three options for how you add it into your mod. If you are unsure, just go with option A.
Option A: The full feature-set package
- If you want to be able to use all the new functions and classes, go with option A.
- Copy the folder
HPL2HelperScripts
into yourmaps
folder. - Include
HelperScripts_FullPackage.hps
in your level's.hps
script file using the#include
directive. - Add
HelperScriptsUpdate(afStep)
to your mainOnUpdate()
function in your level's.hps
script file.
- Copy the folder
- For example, in
myLevel.hps
: #include "HelperScripts_FullPackage.hps" void OnUpdate(float afStep) { HelperScriptsUpdate(afStep); }
- If you want to be able to use all the new functions and classes, go with option A.
Option B: The utilities-only package
- Choose option B if you want to have access to the functions and classes in the utilities category, but don't need the stuff in the features category.
- Copy the folder
HPL2HelperScripts
into yourmaps
folder. - Include
HelperScripts_UtilitiesOnly.hps
in your level's.hps
script file using the#include
directive. - Add
HelperScriptsUpdate(afStep)
to your mainOnUpdate()
function in your level's.hps
script file.
- Copy the folder
- For example, in
myLevel.hps
: #include "HelperScripts_UtilitiesOnly.hps" void OnUpdate(float afStep) { HelperScriptsUpdate(afStep); }
- Choose option B if you want to have access to the functions and classes in the utilities category, but don't need the stuff in the features category.
Option C: Pick-n-mix
- Advanced modders might prefer to only adopt the specific script files they need. Go nuts! But also be aware of the #include dependencies in each script file, as many of them are interdependent. You might find it easiest to start with option A or B and then remove scripts later that you definitely haven't used. You're also fully allowed and encouraged to just use HPL2HelperScripts as a learning resource or even to just copy snippets here and there.
Licence and Credits
You are free to use HPL2 Helper Scripts in whatever way you see fit, no rights reserved by Aetheric Games. (As long as you're not going against any licence terms between you and Frictional Games, of course!) Aetheric Games is mostly just one person, mrbehemo, me (hello), and this has been a stupid amount of work, so if you find it helpful then it would be very cool of you to give me a credit in your mod or custom story. You can list it as "HPL2 Helper Scripts by Aetheric Games".
This script package would not have been possible without the work of the tireless and patient Luis Rodero of Frictional Games, and the ever present pillar of the community, Mudbill.
Support
HPL2 Helper Scripts is made by mrbehemo of Aetheric Games. If you need support, here's what to do:
- First be sure that you're familar with the official HPL2 modding reference docs and tutorials.
- And second, be sure that you've read the relevant parts of this documentation, including the FAQ.
- And then if you're still stuck I'll be happy to hear from you and will help if I can. Come and find me on the Frictional Discord server.
FAQ
Fervently Anticipated Questions. Nobody's asked anything yet...
- I've added one or more scripts to my project separately, but I'm getting errors. What should I check?
- The script files are very interdependent. Check the .hps files you've added - they will have #include directives near the top for every other script they rely on. Either make sure you've also added those into your project.
- What's "#include"? What's "OnUpdate()"?
- Those are new features added with the ATDD 1.5 update.
- I want to make something weird happen, like make 100 flying naked guys do a loop-de-loop around the player. How?
- Sounds fun and is probably do-able, come and find me on the Frictional Discord server.
- Can I get the player's camera direction yet?
- No, sorry. I investigated multiple ways of doing that, as have many people over the years. There's just no reliable way of doing it in HPL2 without branching the source code.
- Why did you do any of this?
- I know, I know - HPL2 is old now, I should have done this for The Bunker or whatever. Actually, I was just tidying up The Trapdoor (ATDD mod) for a Steam release, and I got carried away with refactoring it... and then, half a million characters of script later, this had happened. Hope it's useful. If not, it was a good exercise for me.