Hello World

From Frictional Wiki
< HPL3
Revision as of 15:46, 9 August 2020 by TiMan (talk | contribs) (Created page with "{{wip}} {{Hpl3ScriptingGuideMenuBasic}} {{shortPageTitle}} Let’s start by writing a very simple script. Like every programming tutorial ,we will start with a “Hello World...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Let’s start by writing a very simple script. Like every programming tutorial ,we will start with a “Hello World” message.

We want the message to be displayed on the screen when we load our map, so for that, we will go to OnStart, and inside those curly brackets, add

cLux_AddDebugMessage(“Hello World!”);

Don’t worry about what it means just yet.

Let’s save our script and launch our mod via CodeLite.

Once our map is loaded, we should get basically a black screen with a handful of text around the edges. In the lower left corner, you should see the text “Hello World!”.

If you don’t see the text, make sure the developer panel is hidden by pressing F1 again. This is because the game is effectively frozen while the panel is visible by default, so the script may not appear right away if the panel is visible. If you still do not see the text, press F5, which reloads the map and causes it to become visible again.

So let’s look at what we just did in pieces:

First, we used the code cLux_AddDebugMessage followed by an opening and closing parentheses. This is a function call, which you will learn more about in the next video.

For now, just know that this function’s job is to print text onto the screen. Within the parentheses is some text within quotation marks, “Hello World!”. This is what is known as a “string”. The important part to note here is that it is the text that actually appeared in the game itself.