<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.vc-mp.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=AroliS%5E</id>
	<title>Vice City Multiplayer - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.vc-mp.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=AroliS%5E"/>
	<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/wiki/Special:Contributions/AroliS%5E"/>
	<updated>2026-04-28T07:32:05Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Client_Events/Script::ScriptLoad&amp;diff=20227</id>
		<title>Scripting/Squirrel/Client Events/Script::ScriptLoad</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Client_Events/Script::ScriptLoad&amp;diff=20227"/>
		<updated>2019-04-26T18:21:49Z</updated>

		<summary type="html">&lt;p&gt;AroliS^: /* Arguments */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;Script::ScriptLoad()&amp;lt;/pre&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;Label is a variable.&#039;&#039;&lt;br /&gt;
* &#039;&#039;GUILabel( ) will add the text, vector and textcolor.&#039;&#039;&lt;br /&gt;
* &#039;&#039;FontFlags will add a flag.&#039;&#039;&lt;br /&gt;
* &#039;&#039;FontSize will add the size.&#039;&#039; &lt;br /&gt;
* &#039;&#039;FontName will add a font style.&#039;&#039;&lt;br /&gt;
* &#039;&#039;Font size will add re-size or increase or decrease the text size.&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
The following example will show up a text in your screen.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=squirrel&amp;gt;&lt;br /&gt;
function Script::ScriptLoad()&lt;br /&gt;
{&lt;br /&gt;
       Label &amp;lt;- GUILabel( VectorScreen(_screen.X * 0.70, _screen.Y * 0.93.2 ), Colour( 25, 250, 0 ), &amp;quot;Hello World&amp;quot; );&lt;br /&gt;
       Label.FontFlags = GUI_FFLAG_BOLD;&lt;br /&gt;
       Label.FontSize = _screen.X * 0.032.0;&lt;br /&gt;
       Label.FontName = &amp;quot;Pricedown&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
The functions GUILabel( ). FontFlags. FontSize. FontName and Fontsize were used in this example.&lt;/div&gt;</summary>
		<author><name>AroliS^</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Client_Events/Script::ScriptLoad&amp;diff=20196</id>
		<title>Scripting/Squirrel/Client Events/Script::ScriptLoad</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Client_Events/Script::ScriptLoad&amp;diff=20196"/>
		<updated>2019-04-26T05:46:33Z</updated>

		<summary type="html">&lt;p&gt;AroliS^: /* Arguments */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;Script::ScriptLoad()&amp;lt;/pre&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;Label is a variable that will be share with each function above&#039;&#039;&lt;br /&gt;
* &#039;&#039;GUILabel( ) will add the text, vector and textcolor. FontFlags will add a flag&#039;&#039;&lt;br /&gt;
* &#039;&#039;FontSize will add the size&#039;&#039; &lt;br /&gt;
* &#039;&#039;FontName will add a font style&#039;&#039;&lt;br /&gt;
* &#039;&#039;Font size will add re-size or increase or decrease the text size&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
The following example will show up a text in your screen.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=squirrel&amp;gt;&lt;br /&gt;
function Script::ScriptLoad()&lt;br /&gt;
{&lt;br /&gt;
       Label &amp;lt;- GUILabel( VectorScreen(_screen.X * 0.70, _screen.Y * 0.93.2 ), Colour( 25, 250, 0 ), &amp;quot;Hello World&amp;quot; );&lt;br /&gt;
       Label.FontFlags = GUI_FFLAG_BOLD;&lt;br /&gt;
       Label.FontSize = _screen.X * 0.032.0;&lt;br /&gt;
       Label.FontName = &amp;quot;Pricedown&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
The functions GUILabel( ). FontFlags. FontSize. FontName and Fontsize were used in this example.&lt;/div&gt;</summary>
		<author><name>AroliS^</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Client_Events/Script::ScriptLoad&amp;diff=20195</id>
		<title>Scripting/Squirrel/Client Events/Script::ScriptLoad</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Client_Events/Script::ScriptLoad&amp;diff=20195"/>
		<updated>2019-04-26T05:42:52Z</updated>

		<summary type="html">&lt;p&gt;AroliS^: /* Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;Script::ScriptLoad()&amp;lt;/pre&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;Label is a variable that will be share with each function above&#039;&#039;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
The following example will show up a text in your screen.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=squirrel&amp;gt;&lt;br /&gt;
function Script::ScriptLoad()&lt;br /&gt;
{&lt;br /&gt;
       Label &amp;lt;- GUILabel( VectorScreen(_screen.X * 0.70, _screen.Y * 0.93.2 ), Colour( 25, 250, 0 ), &amp;quot;Hello World&amp;quot; );&lt;br /&gt;
       Label.FontFlags = GUI_FFLAG_BOLD;&lt;br /&gt;
       Label.FontSize = _screen.X * 0.032.0;&lt;br /&gt;
       Label.FontName = &amp;quot;Pricedown&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
The functions GUILabel( ). FontFlags. FontSize. FontName and Fontsize were used in this example.&lt;/div&gt;</summary>
		<author><name>AroliS^</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Client_Events/Script::ScriptLoad&amp;diff=20194</id>
		<title>Scripting/Squirrel/Client Events/Script::ScriptLoad</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Client_Events/Script::ScriptLoad&amp;diff=20194"/>
		<updated>2019-04-26T05:35:56Z</updated>

		<summary type="html">&lt;p&gt;AroliS^: /* Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;Script::ScriptLoad()&amp;lt;/pre&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;Label is a variable that will be share with each function above&#039;&#039;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
The following example will show up a text in your screen.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=squirrel&amp;gt;&lt;br /&gt;
function Script::ScriptLoad()&lt;br /&gt;
{&lt;br /&gt;
       Label &amp;lt;- GUILabel( VectorScreen(_screen.X * 0.70, _screen.Y * 0.93.2 ), Colour( 25, 250, 0 ), &amp;quot;Hello World&amp;quot; );&lt;br /&gt;
       Label.FontFlags = GUI_FFLAG_BOLD;&lt;br /&gt;
       Label.FontSize = _screen.X * 0.032.0;&lt;br /&gt;
       Label.FontName = &amp;quot;Pricedown&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
The functions GUILabel( ) will add the text, vector and textcolor. FontFlags will add a flag. FontSize will add the size. FontName will add a font style and Fontsize.&lt;/div&gt;</summary>
		<author><name>AroliS^</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Client_Events/Script::ScriptLoad&amp;diff=20193</id>
		<title>Scripting/Squirrel/Client Events/Script::ScriptLoad</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Client_Events/Script::ScriptLoad&amp;diff=20193"/>
		<updated>2019-04-26T05:33:28Z</updated>

		<summary type="html">&lt;p&gt;AroliS^: /* Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;Script::ScriptLoad()&amp;lt;/pre&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;Label is a variable that will be share with each function above&#039;&#039;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
The following example will show up a text in your screen.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=squirrel&amp;gt;&lt;br /&gt;
function Script::ScriptLoad()&lt;br /&gt;
{&lt;br /&gt;
       Label &amp;lt;- GUILabel( VectorScreen(_screen.X * 0.70, _screen.Y * 0.93.2 ), Colour( 25, 250, 0 ), &amp;quot;Hello World&amp;quot; );&lt;br /&gt;
       Label.FontFlags = GUI_FFLAG_BOLD;&lt;br /&gt;
       Label.FontSize = _screen.X * 0.032.0;&lt;br /&gt;
       Label.FontName = &amp;quot;Pricedown&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
The functions GUILabel( ), FontFlags, FontSize, FontName were used in this example. GUILabel will add the text, vector and textcolor, FontFlags will add a flag to the text, FontName will add a font style and Fontsize will add the size.&lt;/div&gt;</summary>
		<author><name>AroliS^</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Client_Events/Script::ScriptLoad&amp;diff=20192</id>
		<title>Scripting/Squirrel/Client Events/Script::ScriptLoad</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Client_Events/Script::ScriptLoad&amp;diff=20192"/>
		<updated>2019-04-26T05:28:01Z</updated>

		<summary type="html">&lt;p&gt;AroliS^: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;Script::ScriptLoad()&amp;lt;/pre&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;Label is a variable that will be share with each function above&#039;&#039;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
The following example will show up a text in your screen.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=squirrel&amp;gt;&lt;br /&gt;
function Script::ScriptLoad()&lt;br /&gt;
{&lt;br /&gt;
       Label &amp;lt;- GUILabel( VectorScreen(_screen.X * 0.70, _screen.Y * 0.93.2 ), Colour( 25, 250, 0 ), &amp;quot;Hello World&amp;quot; );&lt;br /&gt;
       Label.FontFlags = GUI_FFLAG_BOLD;&lt;br /&gt;
       Label.FontSize = _screen.X * 0.032.0;&lt;br /&gt;
       Label.FontName = &amp;quot;Pricedown&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
Function Console.Print was used in this example. The Console.Print function outputs a string on the console.&lt;/div&gt;</summary>
		<author><name>AroliS^</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Client_Events/Script::ScriptLoad&amp;diff=20191</id>
		<title>Scripting/Squirrel/Client Events/Script::ScriptLoad</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Client_Events/Script::ScriptLoad&amp;diff=20191"/>
		<updated>2019-04-26T05:26:44Z</updated>

		<summary type="html">&lt;p&gt;AroliS^: /* Arguments */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;Script::ScriptLoad()&amp;lt;/pre&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;Label is a variable that will be share with each function above&#039;&#039;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
The following example will show up a text in your screen.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=squirrel&amp;gt;&lt;br /&gt;
function Script::ScriptLoad()&lt;br /&gt;
{&lt;br /&gt;
       Label &amp;lt;- GUILabel( VectorScreen(_screen.X * 0.70, _screen.Y * 0.93.2 ), Colour( 25, 250, 0 ), &amp;quot;Canada City Server&amp;quot; );&lt;br /&gt;
       Label.FontFlags = GUI_FFLAG_BOLD;&lt;br /&gt;
       Label.FontSize = _screen.X * 0.032.0;&lt;br /&gt;
       Label.FontName = &amp;quot;Pricedown&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
Function Console.Print was used in this example. The Console.Print function outputs a string on the console.&lt;/div&gt;</summary>
		<author><name>AroliS^</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Client_Events/Script::ScriptLoad&amp;diff=20190</id>
		<title>Scripting/Squirrel/Client Events/Script::ScriptLoad</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Client_Events/Script::ScriptLoad&amp;diff=20190"/>
		<updated>2019-04-26T05:24:18Z</updated>

		<summary type="html">&lt;p&gt;AroliS^: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;Script::ScriptLoad()&amp;lt;/pre&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;None&#039;&#039;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
The following example will show up a text in your screen.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=squirrel&amp;gt;&lt;br /&gt;
function Script::ScriptLoad()&lt;br /&gt;
{&lt;br /&gt;
       Label &amp;lt;- GUILabel( VectorScreen(_screen.X * 0.70, _screen.Y * 0.93.2 ), Colour( 25, 250, 0 ), &amp;quot;Canada City Server&amp;quot; );&lt;br /&gt;
       Label.FontFlags = GUI_FFLAG_BOLD;&lt;br /&gt;
       Label.FontSize = _screen.X * 0.032.0;&lt;br /&gt;
       Label.FontName = &amp;quot;Pricedown&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
Function Console.Print was used in this example. The Console.Print function outputs a string on the console.&lt;/div&gt;</summary>
		<author><name>AroliS^</name></author>
	</entry>
</feed>