Scripting/Squirrel/Client Events/Script::ScriptLoad: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
Line 14: | Line 14: | ||
function Script::ScriptLoad() | function Script::ScriptLoad() | ||
{ | { | ||
Label <- GUILabel( VectorScreen(_screen.X * 0.70, _screen.Y * 0.93.2 ), Colour( 25, 250, 0 ), " | Label <- GUILabel( VectorScreen(_screen.X * 0.70, _screen.Y * 0.93.2 ), Colour( 25, 250, 0 ), "Hello World" ); | ||
Label.FontFlags = GUI_FFLAG_BOLD; | Label.FontFlags = GUI_FFLAG_BOLD; | ||
Label.FontSize = _screen.X * 0.032.0; | Label.FontSize = _screen.X * 0.032.0; |
Revision as of 05:28, 26 April 2019
Syntax
Script::ScriptLoad()
Arguments
- Label is a variable that will be share with each function above
Example
The following example will show up a text in your screen.
function Script::ScriptLoad()
{
Label <- GUILabel( VectorScreen(_screen.X * 0.70, _screen.Y * 0.93.2 ), Colour( 25, 250, 0 ), "Hello World" );
Label.FontFlags = GUI_FFLAG_BOLD;
Label.FontSize = _screen.X * 0.032.0;
Label.FontName = "Pricedown";
}
Notes
Function Console.Print was used in this example. The Console.Print function outputs a string on the console.