Difference between revisions of "HPL3/Scripting/Scripting Guide/Hello World"

From Frictional Wiki
Jump to navigation Jump to search
Line 5: Line 5:
 
|- valign="top"
 
|- valign="top"
 
| style="padding-right:0.2em" |
 
| style="padding-right:0.2em" |
 
 
Let’s start by writing a very simple script. Like every programming tutorial, we will start with a "Hello World” message.
 
Let’s start by writing a very simple script. Like every programming tutorial, we will start with a "Hello World” message.
  
Line 26: Line 25:
 
| style="width:0.1%" |
 
| style="width:0.1%" |
 
|}
 
|}
[[File:Debug message tut.png|thumb|"Hello World!" will appear at the bottom left when using printing it to the screen.]] {{clr}}
+
[[File:Debug message tut.png|thumb|"Hello World!" will appear at the bottom left when using printing it to the screen.|alt=|left]] {{clr}}
 
<br />
 
<br />
 
==Conclusion==
 
==Conclusion==

Revision as of 21:22, 9 August 2020


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. The code should look something like this:
////////////////////////////
// Run first time starting map
void OnStart()
{
	cLux_AddDebugMessage("Hello World!");
}
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!”.

Note icon.png If you cannot see the text, press F5, which reloads the map.
"Hello World!" will appear at the bottom left when using printing it to the screen.


Conclusion

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 chapter.

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.