Frictional Games Forum (read-only)

Full Version: Remove hint in beginning!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So i just started to make another custom story.
When you begin you are given a lantern and it instantly shows a hint which says something like : "You have picked up a lantern...".

I was wondering if i could remove/block that hint somehow.

Anyone knows how?

Thanks!
Go to redist/config/ and open up base_english.lang in your text editor. Do a search for 'CATEGORY Name="Hints"' (without the outermost quotation marks). There you'll find a full list of the hints and their names. Any hints you want to hide, just use BlockHint("<hint name here>"); in OnStart()

When you use its entry name, that hint will be blocked for that map.
void RemoveHint (string& asName);
void BlockHint (string& asName);
void UnBlockHint (string& asName);

Removes\Blocks\Unblocks a hint.