<?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=Franklin</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=Franklin"/>
	<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/wiki/Special:Contributions/Franklin"/>
	<updated>2026-04-15T02:42:21Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerSpawn&amp;diff=612</id>
		<title>OnPlayerSpawn</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerSpawn&amp;diff=612"/>
		<updated>2014-08-08T14:45:31Z</updated>

		<summary type="html">&lt;p&gt;Franklin: Created page with &amp;quot;This is called when a player spawns.  == Syntax ==  &amp;lt;pre&amp;gt;function onPlayerSpawn( player )&amp;lt;/pre&amp;gt;  == Parameters ==  * &amp;#039;&amp;#039;&amp;#039;player&amp;#039;&amp;#039;&amp;#039; - The pointer of the player  == Example ==  T...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is called when a player spawns.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerSpawn( player )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;player&#039;&#039;&#039; - The pointer of the player&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
This will message the chat when a player spawns.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onPlayerSpawn( player )&lt;br /&gt;
{&lt;br /&gt;
     Message( &amp;quot;*** &amp;quot; + player.Name + &amp;quot; spawned as skin &amp;quot; + GetSkinName( player.Skin ) );&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 [[Scripting/Squirrel/Functions/Message|Message]], [[Scripting/Squirrel/Functions/Player.Name|Player.Name]] and [[Scripting/Squirrel/Functions/Player.Skin|Player.Skin]] were used in in this example. More info about them in corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Events ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player_Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerHealthChange&amp;diff=611</id>
		<title>OnPlayerHealthChange</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerHealthChange&amp;diff=611"/>
		<updated>2014-08-08T14:39:48Z</updated>

		<summary type="html">&lt;p&gt;Franklin: Created page with &amp;quot;This is called when player&amp;#039;s health amount changes.  == Syntax ==  &amp;lt;pre&amp;gt;function onPlayerHealthChange( player, lastHP, newHP )&amp;lt;/pre&amp;gt;  == Parameters ==  * &amp;#039;&amp;#039;&amp;#039;player&amp;#039;&amp;#039;&amp;#039; - The po...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is called when player&#039;s health amount changes.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerHealthChange( player, lastHP, newHP )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;player&#039;&#039;&#039; - The pointer of the player&lt;br /&gt;
* &#039;&#039;&#039;lastHP&#039;&#039;&#039; - The amount of health player had before the change&lt;br /&gt;
* &#039;&#039;&#039;newHP&#039;&#039;&#039; - The current health amount&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
This will tell the player if they got hurt.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onPlayerHealthChange( player, lastHP, newHP )&lt;br /&gt;
{&lt;br /&gt;
     if ( lastHP &amp;gt; newHP ) MessagePlayer( &amp;quot;You just lost &amp;quot; + ( lastHP - newHP ) + &amp;quot; health.&amp;quot;, player );&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 function [[Scripting/Squirrel/Functions/MessagePlayer|MessagePlayer]] was used in in this example. More info about it in the corresponding page.&lt;br /&gt;
&lt;br /&gt;
== Related Events ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player_Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerMove&amp;diff=610</id>
		<title>OnPlayerMove</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerMove&amp;diff=610"/>
		<updated>2014-08-08T14:34:38Z</updated>

		<summary type="html">&lt;p&gt;Franklin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is called when a player moves on foot or as a passenger.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerMove( player, oldX, oldY, oldZ, newX, newY, newZ )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;player&#039;&#039;&#039; - The pointer of the player&lt;br /&gt;
* &#039;&#039;&#039;oldX&#039;&#039;&#039; - Old X coordinate&lt;br /&gt;
* &#039;&#039;&#039;oldY&#039;&#039;&#039; - Old Y coordinate&lt;br /&gt;
* &#039;&#039;&#039;oldZ&#039;&#039;&#039; - Old Z coordinate&lt;br /&gt;
* &#039;&#039;&#039;newX&#039;&#039;&#039; - New X coordinate&lt;br /&gt;
* &#039;&#039;&#039;newY&#039;&#039;&#039; - New Y coordinate&lt;br /&gt;
* &#039;&#039;&#039;newZ&#039;&#039;&#039; - New Z coordinate&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
This example will move the player back to point (0, 0, 0) if they move too far away from it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onPlayerMove( player, x1, y1, z1, x2, y2, z2 )&lt;br /&gt;
{&lt;br /&gt;
     if ( sqrt( x2*x2 + y2*y2 + z2*z2 ) &amp;gt; 50 ) player.Pos = Vector( 0.0, 0.0, 0.0 );&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 function [[Scripting/Squirrel/Functions/Player.Pos|Player.Pos]] was used in in this example. More info about it in the corresponding page.&lt;br /&gt;
&lt;br /&gt;
== Related Events ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player_Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerMove&amp;diff=609</id>
		<title>OnPlayerMove</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerMove&amp;diff=609"/>
		<updated>2014-08-08T14:34:14Z</updated>

		<summary type="html">&lt;p&gt;Franklin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is called when a player moves on foot or as a passenger.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;function onPlayerMove( player, oldX, oldY, oldZ, newX, newY, newZ )&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;player&#039;&#039;&#039; - The pointer of the player&lt;br /&gt;
* &#039;&#039;&#039;oldX&#039;&#039;&#039; - Old X coordinate&lt;br /&gt;
* &#039;&#039;&#039;oldY&#039;&#039;&#039; - Old Y coordinate&lt;br /&gt;
* &#039;&#039;&#039;oldZ&#039;&#039;&#039; - Old Z coordinate&lt;br /&gt;
* &#039;&#039;&#039;newX&#039;&#039;&#039; - New X coordinate&lt;br /&gt;
* &#039;&#039;&#039;newY&#039;&#039;&#039; - New Y coordinate&lt;br /&gt;
* &#039;&#039;&#039;newZ&#039;&#039;&#039; - New Z coordinate&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
This example will move the player back to point (0, 0, 0) if they move too far away from it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onPlayerMove( player, x1, y1, z1, x2, y2, z2 )&lt;br /&gt;
{&lt;br /&gt;
     if ( sqrt( x2*x2 + y2*y2 + z2*z2 ) &amp;gt; 50 ) player.Pos = Vector( 0.0, 0.0, 0.0 );&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 function [[Scripting/Squirrel/Functions/Player.Pos|Player.Pos]] was used in in this example. More info about it in the corresponding page.&lt;br /&gt;
&lt;br /&gt;
== Related Events ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player_Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerMove&amp;diff=608</id>
		<title>OnPlayerMove</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerMove&amp;diff=608"/>
		<updated>2014-08-08T14:32:56Z</updated>

		<summary type="html">&lt;p&gt;Franklin: Created page with &amp;quot;__NOTOC__ This is called when a player moves on foot or as a passenger.  == Syntax ==  &amp;lt;code&amp;gt;function onPlayerMove( player, oldX, oldY, oldZ, newX, newY, newZ )&amp;lt;/code&amp;gt;  == Par...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is called when a player moves on foot or as a passenger.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;function onPlayerMove( player, oldX, oldY, oldZ, newX, newY, newZ )&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;player&#039;&#039;&#039; - The pointer of the player&lt;br /&gt;
* &#039;&#039;&#039;oldX&#039;&#039;&#039; - Old X coordinate&lt;br /&gt;
* &#039;&#039;&#039;oldY&#039;&#039;&#039; - Old Y coordinate&lt;br /&gt;
* &#039;&#039;&#039;oldZ&#039;&#039;&#039; - Old Z coordinate&lt;br /&gt;
* &#039;&#039;&#039;newX&#039;&#039;&#039; - New X coordinate&lt;br /&gt;
* &#039;&#039;&#039;newY&#039;&#039;&#039; - New Y coordinate&lt;br /&gt;
* &#039;&#039;&#039;newZ&#039;&#039;&#039; - New Z coordinate&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
This example will move the player back to point (0, 0, 0) if they move too far away from it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onPlayerMove( player, x1, y1, z1, x2, y2, z2 )&lt;br /&gt;
{&lt;br /&gt;
     if ( sqrt( x2*x2 + y2*y2 + z2*z2 ) &amp;gt; 50 ) player.Pos = Vector( 0.0, 0.0, 0.0 );&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
&lt;br /&gt;
The function [[Scripting/Squirrel/Functions/Player.Pos|Player.Pos]] was used in in this example. More info about it in the corresponding page.&lt;br /&gt;
&lt;br /&gt;
== Related Events ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player_Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerJoin&amp;diff=607</id>
		<title>OnPlayerJoin</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerJoin&amp;diff=607"/>
		<updated>2014-07-29T23:34:40Z</updated>

		<summary type="html">&lt;p&gt;Franklin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is called when a player joins the server. This is fired &#039;&#039;after&#039;&#039; data has been sent to the client.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerJoin( player )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;player&#039;&#039;&#039; - The pointer of the new player&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onPlayerJoin( player )&lt;br /&gt;
{&lt;br /&gt;
    MessagePlayer( &amp;quot;Welcome &amp;quot; + player.Name + &amp;quot; to the server.&amp;quot;, player );    &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 [[Scripting/Squirrel/Functions/MessagePlayer|MessagePlayer]] and [[Scripting/Squirrel/Functions/Player.Name|Player.Name]] were used in this example. More info about them in corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player_Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerPart&amp;diff=606</id>
		<title>OnPlayerPart</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerPart&amp;diff=606"/>
		<updated>2014-07-29T23:33:37Z</updated>

		<summary type="html">&lt;p&gt;Franklin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is called when a player disconnects from the server.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerPart( player, reason )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;player&#039;&#039;&#039; - The pointer of the player&lt;br /&gt;
* &#039;&#039;&#039;reason&#039;&#039;&#039; - Reason ID for the part.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
In this example the server will send a message when a player leaves the server.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onPlayerPart( player, reason )&lt;br /&gt;
{&lt;br /&gt;
    Message( player.Name + &amp;quot; left server.&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 [[Scripting/Squirrel/Functions/Message|Message]] and [[Scripting/Squirrel/Functions/Player.Name|Player.Name]] were used in this example. More info about them in corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player_Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerTeamKill&amp;diff=605</id>
		<title>OnPlayerTeamKill</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerTeamKill&amp;diff=605"/>
		<updated>2014-07-29T23:32:37Z</updated>

		<summary type="html">&lt;p&gt;Franklin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This event is called when a player kills another player from the same team.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerTeamKill( killer, player, reason, bodypart )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;killer&#039;&#039;&#039; - He is who is attacking&lt;br /&gt;
* &#039;&#039;&#039;player&#039;&#039;&#039; - He is who is being killed&lt;br /&gt;
* &#039;&#039;&#039;reason&#039;&#039;&#039; - Weapon ID&lt;br /&gt;
* &#039;&#039;&#039;bodypart&#039;&#039;&#039; - Bodypart ID&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onPlayerKill( killer, player, reason, bodypart )&lt;br /&gt;
{&lt;br /&gt;
    Message( &amp;quot;** &amp;quot; + killer.Name + &amp;quot; team-killed &amp;quot; + player.Name &amp;quot; (&amp;quot; + GetWeaponName( reason ) + &amp;quot;) (&amp;quot; + bodypart + &amp;quot;)&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 [[Scripting/Squirrel/Functions/Message|Message]], [[Scripting/Squirrel/Functions/Player.Name|Player.Name]], [[Scripting/Squirrel/Functions/GetWeaponName|GetWeaponName]] were used in this example. More info about them in corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player_Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerKill&amp;diff=604</id>
		<title>OnPlayerKill</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerKill&amp;diff=604"/>
		<updated>2014-07-29T23:32:30Z</updated>

		<summary type="html">&lt;p&gt;Franklin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This event is called every time a player kills another (and they&#039;re not in the same team). &lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerKill( killer, player, reason, bodypart )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;player&#039;&#039;&#039; - He is who is attacking&lt;br /&gt;
* &#039;&#039;&#039;killer&#039;&#039;&#039; - He is who is being killed&lt;br /&gt;
* &#039;&#039;&#039;reason&#039;&#039;&#039; - Weapon ID&lt;br /&gt;
* &#039;&#039;&#039;bodypart&#039;&#039;&#039; - Bodypart ID&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onPlayerKill( killer, player, reason, bodypart )&lt;br /&gt;
{&lt;br /&gt;
    Message( &amp;quot;** &amp;quot; + killer.Name + &amp;quot; killed &amp;quot; + player.Name + &amp;quot; (&amp;quot; + GetWeaponName( reason ) + &amp;quot;) (&amp;quot; + bodypart + &amp;quot;)&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 [[Scripting/Squirrel/Functions/Message|Message]], [[Scripting/Squirrel/Functions/Player.Name|Player.Name]], [[Scripting/Squirrel/Functions/GetWeaponName|GetWeaponName]] were used in this example. More info about them in corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player_Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerDeath&amp;diff=603</id>
		<title>OnPlayerDeath</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerDeath&amp;diff=603"/>
		<updated>2014-07-29T23:31:56Z</updated>

		<summary type="html">&lt;p&gt;Franklin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is called when a player dies. e.g.: drowned or self-kill.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerDeath( player, reason )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;player&#039;&#039;&#039; - player&#039;s pointer&lt;br /&gt;
* &#039;&#039;&#039;reason&#039;&#039;&#039; - how the player dies&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onPlayerDeath( player, reason )&lt;br /&gt;
{&lt;br /&gt;
    Message( &amp;quot;** &amp;quot; + player.Name + &amp;quot; died.&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 [[Scripting/Squirrel/Functions/Message|Message]], [[Scripting/Squirrel/Functions/Player.Name|Player.Name]] were used in this example. More info about them in corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player_Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerDeath&amp;diff=602</id>
		<title>OnPlayerDeath</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerDeath&amp;diff=602"/>
		<updated>2014-07-29T23:28:54Z</updated>

		<summary type="html">&lt;p&gt;Franklin: Created page with &amp;quot;This is called when a player dies. e.g.: drowned or self-kill.  == Syntax ==  &amp;lt;pre&amp;gt;function onPlayerDeath( player, reason )&amp;lt;/pre&amp;gt;  == Arguments ==  * &amp;#039;&amp;#039;&amp;#039;player&amp;#039;&amp;#039;&amp;#039; - player&amp;#039;s p...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is called when a player dies. e.g.: drowned or self-kill.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerDeath( player, reason )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;player&#039;&#039;&#039; - player&#039;s pointer&lt;br /&gt;
* &#039;&#039;&#039;reason&#039;&#039;&#039; - how the player dies&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onPlayerDeath( player, reason )&lt;br /&gt;
{&lt;br /&gt;
    Message( &amp;quot;** &amp;quot; + player.Name + &amp;quot; died.&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 [[Scripting/Squirrel/Functions/Message|Message]], [[Scripting/Squirrel/Functions/player.Name|player.Name]] were used in this example. More info about them in corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player_Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerPart&amp;diff=489</id>
		<title>OnPlayerPart</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerPart&amp;diff=489"/>
		<updated>2014-07-26T19:54:05Z</updated>

		<summary type="html">&lt;p&gt;Franklin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is called when a player disconnects from the server.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerPart( player, reason )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;player&#039;&#039;&#039; - The pointer of the player&lt;br /&gt;
* &#039;&#039;&#039;reason&#039;&#039;&#039; - Reason ID for the part.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
In this example the server will send a message when a player leaves the server.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onPlayerPart( player, reason )&lt;br /&gt;
{&lt;br /&gt;
    Message( player.Name + &amp;quot; left server.&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 [[Scripting/Squirrel/Functions/Message|Message]] and [[Scripting/Squirrel/Functions/player.Name|player.Name]] were used in this example. More info about them in corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player_Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerPart&amp;diff=488</id>
		<title>OnPlayerPart</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerPart&amp;diff=488"/>
		<updated>2014-07-26T19:52:08Z</updated>

		<summary type="html">&lt;p&gt;Franklin: Created page with &amp;quot;This is called when a player disconnects from the server.  == Syntax ==  &amp;lt;pre&amp;gt;function onPlayerPart( player, reason )&amp;lt;/pre&amp;gt;  == Arguments ==  * &amp;#039;&amp;#039;&amp;#039;player&amp;#039;&amp;#039;&amp;#039; - The pointer of t...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is called when a player disconnects from the server.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerPart( player, reason )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;player&#039;&#039;&#039; - The pointer of the player&lt;br /&gt;
* &#039;&#039;&#039;reason&#039;&#039;&#039; - Reason ID for the part.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onPlayerPart( player, reason )&lt;br /&gt;
{&lt;br /&gt;
    Message( player.Name + &amp;quot; left server.&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 [[Scripting/Squirrel/Functions/Message|Message]] and [[Scripting/Squirrel/Functions/player.Name|player.Name]] were used in this example. More info about them in corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player_Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerKill&amp;diff=486</id>
		<title>OnPlayerKill</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerKill&amp;diff=486"/>
		<updated>2014-07-26T19:41:31Z</updated>

		<summary type="html">&lt;p&gt;Franklin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This event is called every time a player kills another (and they&#039;re not in the same team). &lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerKill( killer, player, reason, bodypart )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;player&#039;&#039;&#039; - He is who is attacking&lt;br /&gt;
* &#039;&#039;&#039;killer&#039;&#039;&#039; - He is who is being killed&lt;br /&gt;
* &#039;&#039;&#039;reason&#039;&#039;&#039; - Weapon ID&lt;br /&gt;
* &#039;&#039;&#039;bodypart&#039;&#039;&#039; - Bodypart ID&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onPlayerKill( killer, player, reason, bodypart )&lt;br /&gt;
{&lt;br /&gt;
    Message( &amp;quot;** &amp;quot; + killer.Name + &amp;quot; killed &amp;quot; + player.Name + &amp;quot; (&amp;quot; + GetWeaponName( reason ) + &amp;quot;) (&amp;quot; + bodypart + &amp;quot;)&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 [[Scripting/Squirrel/Functions/Message|Message]], [[Scripting/Squirrel/Functions/player.Name|player.Name]], [[Scripting/Squirrel/Functions/GetWeaponName|GetWeaponName]] were used in this example. More info about them in corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player_Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerTeamKill&amp;diff=485</id>
		<title>OnPlayerTeamKill</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerTeamKill&amp;diff=485"/>
		<updated>2014-07-26T19:38:19Z</updated>

		<summary type="html">&lt;p&gt;Franklin: Created page with &amp;quot;This event is called when a player kills another player from the same team.  == Syntax ==  &amp;lt;pre&amp;gt;function onPlayerTeamKill( killer, player, reason, bodypart )&amp;lt;/pre&amp;gt;  == Argumen...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This event is called when a player kills another player from the same team.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerTeamKill( killer, player, reason, bodypart )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;killer&#039;&#039;&#039; - He is who is attacking&lt;br /&gt;
* &#039;&#039;&#039;player&#039;&#039;&#039; - He is who is being killed&lt;br /&gt;
* &#039;&#039;&#039;reason&#039;&#039;&#039; - Weapon ID&lt;br /&gt;
* &#039;&#039;&#039;bodypart&#039;&#039;&#039; - Bodypart ID&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onPlayerKill( killer, player, reason, bodypart )&lt;br /&gt;
{&lt;br /&gt;
    Message( &amp;quot;** &amp;quot; + killer.Name + &amp;quot; team-killed &amp;quot; + player.Name &amp;quot; (&amp;quot; + GetWeaponName( reason ) + &amp;quot;) (&amp;quot; + bodypart + &amp;quot;)&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 [[Scripting/Squirrel/Functions/Message|Message]], [[Scripting/Squirrel/Functions/player.Name|player.Name]], [[Scripting/Squirrel/Functions/GetWeaponName|GetWeaponName]] were used in this example. More info about them in corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player_Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/BanIP&amp;diff=400</id>
		<title>Scripting/Squirrel/Functions/BanIP</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/BanIP&amp;diff=400"/>
		<updated>2014-07-25T15:23:34Z</updated>

		<summary type="html">&lt;p&gt;Franklin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will ban an IP from the server.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;void BanIP( string ip )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;string&#039;&#039; &#039;&#039;&#039;ip&#039;&#039;&#039; - This is the IP address to be banned&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=squirrel&amp;gt;&lt;br /&gt;
function onPlayerCommand( player, cmd, text )&lt;br /&gt;
{&lt;br /&gt;
    if ( cmd == &amp;quot;banip&amp;quot; )&lt;br /&gt;
    {&lt;br /&gt;
        MessagePlayer( &amp;quot;You have banned IP: &amp;quot; + text, player );&lt;br /&gt;
        BanIP( text );&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
&lt;br /&gt;
Call [[Scripting/Squirrel/Events/Player/onPlayerCommand|onPlayerCommand]] and [[Scripting/Squirrel/Functions/MessagePlayer|MessagePlayer]] function were used in this example. More info about them in the corresponding pages.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Functions/Administrative_Functions}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/cRGB&amp;diff=399</id>
		<title>Scripting/Squirrel/Functions/cRGB</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/cRGB&amp;diff=399"/>
		<updated>2014-07-25T14:54:46Z</updated>

		<summary type="html">&lt;p&gt;Franklin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Scripting/Needs_Text}}&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;RGB( R, G, B )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;int&#039;&#039; &#039;&#039;&#039;R&#039;&#039;&#039; - Red&lt;br /&gt;
* &#039;&#039;int&#039;&#039; &#039;&#039;&#039;G&#039;&#039;&#039; - Green&lt;br /&gt;
* &#039;&#039;int&#039;&#039; &#039;&#039;&#039;B&#039;&#039;&#039; - Blue&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Needs_Example}}&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Functions/Data Structures}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Vector&amp;diff=398</id>
		<title>Scripting/Squirrel/Functions/Vector</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Vector&amp;diff=398"/>
		<updated>2014-07-25T14:52:14Z</updated>

		<summary type="html">&lt;p&gt;Franklin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will teleport to the player to any location.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;Vector( X, Y, Z )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;float&#039;&#039; &#039;&#039;&#039;X&#039;&#039;&#039; - X coordinate&lt;br /&gt;
* &#039;&#039;float&#039;&#039; &#039;&#039;&#039;Y&#039;&#039;&#039; - Y coordinate&lt;br /&gt;
* &#039;&#039;float&#039;&#039; &#039;&#039;&#039;Z&#039;&#039;&#039; - Z coordinate&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
In the following example the player will teleport to the coordinates represented in &#039;&#039;&#039;X&#039;&#039;&#039;, &#039;&#039;&#039;Y&#039;&#039;&#039;, &#039;&#039;&#039;Z&#039;&#039;&#039;.&lt;br /&gt;
&amp;lt;source lang=squirrel&amp;gt;&lt;br /&gt;
player.Pos = Vector( 190.12, -122.45, 455.32 );&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
&lt;br /&gt;
[[Scripting/Squirrel/Functions/Player.Pos|Player.Pos]] were used in this example. More info about them in the corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Functions/Data Structures}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnScriptLoad&amp;diff=328</id>
		<title>OnScriptLoad</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnScriptLoad&amp;diff=328"/>
		<updated>2014-07-24T19:24:15Z</updated>

		<summary type="html">&lt;p&gt;Franklin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onScriptLoad()&lt;br /&gt;
{&lt;br /&gt;
    print( &amp;quot;== Loaded Squirrel VC:MP Script ==&amp;quot; );&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnScriptUnload&amp;diff=327</id>
		<title>OnScriptUnload</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnScriptUnload&amp;diff=327"/>
		<updated>2014-07-24T19:23:39Z</updated>

		<summary type="html">&lt;p&gt;Franklin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onScriptUnload()&lt;br /&gt;
{&lt;br /&gt;
	print( &amp;quot;== Unloaded Squirrel VC:MP Script ==&amp;quot; );&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnScriptUnload&amp;diff=326</id>
		<title>OnScriptUnload</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnScriptUnload&amp;diff=326"/>
		<updated>2014-07-24T19:22:52Z</updated>

		<summary type="html">&lt;p&gt;Franklin: Created page with &amp;quot;== Example ==  &amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt; function onScriptUnload() { 	print( &amp;quot;Squirrel Script closed successfully&amp;quot; ); } &amp;lt;/source&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onScriptUnload()&lt;br /&gt;
{&lt;br /&gt;
	print( &amp;quot;Squirrel Script closed successfully&amp;quot; );&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerJoin&amp;diff=325</id>
		<title>OnPlayerJoin</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerJoin&amp;diff=325"/>
		<updated>2014-07-24T18:41:17Z</updated>

		<summary type="html">&lt;p&gt;Franklin: Created page with &amp;quot;This is called when a player joins the server. This is fired &amp;#039;&amp;#039;after&amp;#039;&amp;#039; data has been sent to the client.  == Syntax ==  &amp;lt;pre&amp;gt;function onPlayerJoin( player )&amp;lt;/pre&amp;gt;  == Argument...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is called when a player joins the server. This is fired &#039;&#039;after&#039;&#039; data has been sent to the client.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerJoin( player )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;player&#039;&#039;&#039; - The pointer of the new player&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onPlayerJoin( player )&lt;br /&gt;
{&lt;br /&gt;
    MessagePlayer( &amp;quot;Welcome &amp;quot; + player.Name + &amp;quot; to the server.&amp;quot;, player );    &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 [[Scripting/Squirrel/Functions/MessagePlayer|MessagePlayer]] and [[Scripting/Squirrel/Functions/player.Name|player.Name]] were used in this example. More info about them in corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player_Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerKill&amp;diff=324</id>
		<title>OnPlayerKill</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerKill&amp;diff=324"/>
		<updated>2014-07-24T16:08:06Z</updated>

		<summary type="html">&lt;p&gt;Franklin: Created page with &amp;quot;This event is called every time a player kills another (and they&amp;#039;re not in the same team).   == Syntax ==  &amp;lt;pre&amp;gt;function onPlayerKill( killer, player, reason, bodypart )&amp;lt;/pre&amp;gt;...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This event is called every time a player kills another (and they&#039;re not in the same team). &lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerKill( killer, player, reason, bodypart )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;player&#039;&#039;&#039; - The pointer of the player.&lt;br /&gt;
* &#039;&#039;&#039;killer&#039;&#039;&#039; - The pointer of the killer.&lt;br /&gt;
* &#039;&#039;&#039;reason&#039;&#039;&#039; - The weapon id.&lt;br /&gt;
* &#039;&#039;&#039;bodypart&#039;&#039;&#039; - The ID of the bodypart.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onPlayerKill( killer, player, reason, bodypart )&lt;br /&gt;
{&lt;br /&gt;
    Message( &amp;quot;** &amp;quot; + killer.Name + &amp;quot; killed &amp;quot; + player.Name + &amp;quot; (&amp;quot; + GetWeaponName( reason ) + &amp;quot;) (&amp;quot; + bodypart + &amp;quot;)&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 [[Scripting/Squirrel/Functions/Message|Message]], [[Scripting/Squirrel/Functions/player.Name|player.Name]], [[Scripting/Squirrel/Functions/GetWeaponName|GetWeaponName]] were used in this example. More info about them in corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player_Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Template:Scripting/Squirrel/Events/Player_Events&amp;diff=323</id>
		<title>Template:Scripting/Squirrel/Events/Player Events</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Template:Scripting/Squirrel/Events/Player_Events&amp;diff=323"/>
		<updated>2014-07-24T15:55:01Z</updated>

		<summary type="html">&lt;p&gt;Franklin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[onPlayerJoin]]( player )&lt;br /&gt;
* [[onPlayerPart]]( player, reason )&lt;br /&gt;
&lt;br /&gt;
* [[onPlayerRequestClass]]( player, classID )&lt;br /&gt;
* [[onPlayerRequestSpawn]]( player )&lt;br /&gt;
* [[onPlayerSpawn]]( player )&lt;br /&gt;
&lt;br /&gt;
* [[onPlayerDeath]]( player, reason )&lt;br /&gt;
* [[onPlayerKill]]( killer, player, reason, bodypart )&lt;br /&gt;
* [[onPlayerTeamKill]]( killer, player, reason, bodypart )&lt;br /&gt;
&lt;br /&gt;
* [[onPlayerChat]]( player, message )&lt;br /&gt;
* [[onPlayerCommand]]( player, command, arguments )&lt;br /&gt;
* [[onPlayerPM]]( player, playerTo, message )&lt;br /&gt;
&lt;br /&gt;
* [[onPlayerBeginTyping]]( player )&lt;br /&gt;
* [[onPlayerEndTyping]]( player )&lt;br /&gt;
&lt;br /&gt;
* [[onLoginAttempt]]( player )&lt;br /&gt;
* [[onNameChangeable]]( player )&lt;br /&gt;
&lt;br /&gt;
* [[onPlayerMove]]( player, lastX, lastY, lastZ, newX, newY, newZ )&lt;br /&gt;
* [[onPlayerHealthChange]]( player, lastHP, newHP )&lt;br /&gt;
* [[onPlayerArmourChange]]( player, lastArmour, newArmour )&lt;br /&gt;
* [[onPlayerWeaponChange]]( player, oldWep, newWep )&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Template:Scripting/Squirrel/Events/Vehicle_Events&amp;diff=322</id>
		<title>Template:Scripting/Squirrel/Events/Vehicle Events</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Template:Scripting/Squirrel/Events/Vehicle_Events&amp;diff=322"/>
		<updated>2014-07-24T15:20:45Z</updated>

		<summary type="html">&lt;p&gt;Franklin: Created page with &amp;quot;* onPlayerEnteringVehicle( player, vehicle, door ) * onPlayerEnterVehicle( player, vehicle, door ) * onPlayerExitVehicle( player, vehicle )  * onVehicleExplode...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[onPlayerEnteringVehicle]]( player, vehicle, door )&lt;br /&gt;
* [[onPlayerEnterVehicle]]( player, vehicle, door )&lt;br /&gt;
* [[onPlayerExitVehicle]]( player, vehicle )&lt;br /&gt;
&lt;br /&gt;
* [[onVehicleExplode]]( vehicle )&lt;br /&gt;
* [[onVehicleRespawn]]( vehicle )&lt;br /&gt;
&lt;br /&gt;
* [[onVehicleHealthChange]]( vehicle, oldHP, newHP )&lt;br /&gt;
* [[onVehicleMove]]( vehicle, lastX, lastY, lastZ, newX, newY, newZ )&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Template:Scripting/Squirrel/Events/Pickup_Events&amp;diff=321</id>
		<title>Template:Scripting/Squirrel/Events/Pickup Events</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Template:Scripting/Squirrel/Events/Pickup_Events&amp;diff=321"/>
		<updated>2014-07-24T15:16:54Z</updated>

		<summary type="html">&lt;p&gt;Franklin: Created page with &amp;quot;* onPickupClaimPicked( player, pickup ) * onPickupPickedUp( player, pickup )  * onPickupRespawn( pickup )&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[onPickupClaimPicked]]( player, pickup )&lt;br /&gt;
* [[onPickupPickedUp]]( player, pickup )&lt;br /&gt;
&lt;br /&gt;
* [[onPickupRespawn]]( pickup )&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events&amp;diff=320</id>
		<title>Scripting/Squirrel/Events</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events&amp;diff=320"/>
		<updated>2014-07-24T15:13:56Z</updated>

		<summary type="html">&lt;p&gt;Franklin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Server Events ==&lt;br /&gt;
{{Scripting/Squirrel/Events/Server Events}}&lt;br /&gt;
&lt;br /&gt;
== Player Events ==&lt;br /&gt;
{{Scripting/Squirrel/Events/Player Events}}&lt;br /&gt;
&lt;br /&gt;
== Vehicle Events ==&lt;br /&gt;
{{Scripting/Squirrel/Events/Vehicle Events}}&lt;br /&gt;
&lt;br /&gt;
== Pickup Events ==&lt;br /&gt;
{{Scripting/Squirrel/Events/Pickup Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events&amp;diff=319</id>
		<title>Scripting/Squirrel/Events</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events&amp;diff=319"/>
		<updated>2014-07-24T15:08:02Z</updated>

		<summary type="html">&lt;p&gt;Franklin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Server Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Server Events}}&lt;br /&gt;
&lt;br /&gt;
=== Player Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Player Events}}&lt;br /&gt;
&lt;br /&gt;
=== Vehicle Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Vehicle Events}}&lt;br /&gt;
&lt;br /&gt;
=== Pickup Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Pickup Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Template:Scripting/Squirrel/Events/Player_Events&amp;diff=318</id>
		<title>Template:Scripting/Squirrel/Events/Player Events</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Template:Scripting/Squirrel/Events/Player_Events&amp;diff=318"/>
		<updated>2014-07-24T15:06:03Z</updated>

		<summary type="html">&lt;p&gt;Franklin: Created page with &amp;quot;* onPlayerJoin( player ) * onPlayerPart( player, reason )  * onPlayerRequestClass( player, classID ) * onPlayerRequestSpawn( player ) * onPlayerSpawn( play...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[onPlayerJoin]]( player )&lt;br /&gt;
* [[onPlayerPart]]( player, reason )&lt;br /&gt;
&lt;br /&gt;
* [[onPlayerRequestClass]]( player, classID )&lt;br /&gt;
* [[onPlayerRequestSpawn]]( player )&lt;br /&gt;
* [[onPlayerSpawn]]( player )&lt;br /&gt;
&lt;br /&gt;
* [[onPlayerDeath]]( player, reason )&lt;br /&gt;
* [[onPlayerKill]]( player, killer, reason, bodypart )&lt;br /&gt;
* [[onPlayerTeamKill]]( player, killer, reason, bodypart )&lt;br /&gt;
&lt;br /&gt;
* [[onPlayerChat]]( player, message )&lt;br /&gt;
* [[onPlayerCommand]]( player, command, arguments )&lt;br /&gt;
* [[onPlayerPM]]( player, playerTo, message )&lt;br /&gt;
&lt;br /&gt;
* [[onPlayerBeginTyping]]( player )&lt;br /&gt;
* [[onPlayerEndTyping]]( player )&lt;br /&gt;
&lt;br /&gt;
* [[onLoginAttempt]]( player )&lt;br /&gt;
* [[onNameChangeable]]( player )&lt;br /&gt;
&lt;br /&gt;
* [[onPlayerMove]]( player, lastX, lastY, lastZ, newX, newY, newZ )&lt;br /&gt;
* [[onPlayerHealthChange]]( player, lastHP, newHP )&lt;br /&gt;
* [[onPlayerArmourChange]]( player, lastArmour, newArmour )&lt;br /&gt;
* [[onPlayerWeaponChange]]( player, oldWep, newWep )&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnScriptLoad()&amp;diff=317</id>
		<title>OnScriptLoad()</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnScriptLoad()&amp;diff=317"/>
		<updated>2014-07-24T14:56:45Z</updated>

		<summary type="html">&lt;p&gt;Franklin: Franklin moved page OnScriptLoad() to OnScriptLoad&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[OnScriptLoad]]&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnScriptLoad&amp;diff=316</id>
		<title>OnScriptLoad</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnScriptLoad&amp;diff=316"/>
		<updated>2014-07-24T14:56:45Z</updated>

		<summary type="html">&lt;p&gt;Franklin: Franklin moved page OnScriptLoad() to OnScriptLoad&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onScriptLoad()&lt;br /&gt;
{&lt;br /&gt;
	print( &amp;quot;Squirrel Script started successfully&amp;quot; );&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Template:Scripting/Squirrel/Events/Server_Events&amp;diff=315</id>
		<title>Template:Scripting/Squirrel/Events/Server Events</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Template:Scripting/Squirrel/Events/Server_Events&amp;diff=315"/>
		<updated>2014-07-24T14:54:03Z</updated>

		<summary type="html">&lt;p&gt;Franklin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[onServerStart]]()&lt;br /&gt;
* [[onServerStop]]()&lt;br /&gt;
* [[onScriptLoad]]()&lt;br /&gt;
* [[onScriptUnload]]()&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events&amp;diff=314</id>
		<title>Scripting/Squirrel/Events</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events&amp;diff=314"/>
		<updated>2014-07-24T14:51:38Z</updated>

		<summary type="html">&lt;p&gt;Franklin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Server Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Server Events}}&lt;br /&gt;
&lt;br /&gt;
=== Player Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Player Events}}&lt;br /&gt;
&lt;br /&gt;
=== Vehicle Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Player Events}}&lt;br /&gt;
&lt;br /&gt;
=== Pickup Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Pickup Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnScriptLoad&amp;diff=313</id>
		<title>OnScriptLoad</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnScriptLoad&amp;diff=313"/>
		<updated>2014-07-24T14:50:05Z</updated>

		<summary type="html">&lt;p&gt;Franklin: Created page with &amp;quot;== Example ==  &amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt; function onScriptLoad() { 	print( &amp;quot;Squirrel Script started successfully&amp;quot; ); } &amp;lt;/source&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onScriptLoad()&lt;br /&gt;
{&lt;br /&gt;
	print( &amp;quot;Squirrel Script started successfully&amp;quot; );&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Template:Scripting/Squirrel/Events/Server_Events&amp;diff=312</id>
		<title>Template:Scripting/Squirrel/Events/Server Events</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Template:Scripting/Squirrel/Events/Server_Events&amp;diff=312"/>
		<updated>2014-07-24T14:41:16Z</updated>

		<summary type="html">&lt;p&gt;Franklin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[onServerStart()]]&lt;br /&gt;
* [[onServerStop()]]&lt;br /&gt;
* [[onScriptLoad()]]&lt;br /&gt;
* [[onScriptUnload()]]&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Template:Scripting/Squirrel/Events/Server_Events&amp;diff=311</id>
		<title>Template:Scripting/Squirrel/Events/Server Events</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Template:Scripting/Squirrel/Events/Server_Events&amp;diff=311"/>
		<updated>2014-07-24T14:40:05Z</updated>

		<summary type="html">&lt;p&gt;Franklin: Created page with &amp;quot;* onServerStart() * onServerStop() * onScriptLoad() * onScriptUnload()&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[onServerStart]]()&lt;br /&gt;
* [[onServerStop]]()&lt;br /&gt;
* [[onScriptLoad]]()&lt;br /&gt;
* [[onScriptUnload]]()&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events&amp;diff=310</id>
		<title>Scripting/Squirrel/Events</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events&amp;diff=310"/>
		<updated>2014-07-24T14:37:47Z</updated>

		<summary type="html">&lt;p&gt;Franklin: /* Server Events */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Server Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Server Events}}&lt;br /&gt;
&lt;br /&gt;
=== Player Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Player Events}}&lt;br /&gt;
&lt;br /&gt;
=== Vehicle Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Player Events}}&lt;br /&gt;
&lt;br /&gt;
=== Player Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Player Events}}&lt;br /&gt;
&lt;br /&gt;
=== Pickup Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Pickup Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events&amp;diff=309</id>
		<title>Scripting/Squirrel/Events</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events&amp;diff=309"/>
		<updated>2014-07-24T14:35:20Z</updated>

		<summary type="html">&lt;p&gt;Franklin: /* Server Events */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Server Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Server Events}}&lt;br /&gt;
* [[onServerStart]]&lt;br /&gt;
* [[onServerStop]]&lt;br /&gt;
* [[onScriptLoad]]&lt;br /&gt;
* [[onScriptUnload]]&lt;br /&gt;
&lt;br /&gt;
=== Player Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Player Events}}&lt;br /&gt;
&lt;br /&gt;
=== Vehicle Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Player Events}}&lt;br /&gt;
&lt;br /&gt;
=== Player Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Player Events}}&lt;br /&gt;
&lt;br /&gt;
=== Pickup Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Pickup Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events&amp;diff=308</id>
		<title>Scripting/Squirrel/Events</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events&amp;diff=308"/>
		<updated>2014-07-24T14:29:01Z</updated>

		<summary type="html">&lt;p&gt;Franklin: Created page with &amp;quot;=== Server Events === {{Scripting/Squirrel/Events/Server Events}}  === Player Events === {{Scripting/Squirrel/Events/Player Events}}  === Vehicle Events === {{Scripting/Squirr...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Server Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Server Events}}&lt;br /&gt;
&lt;br /&gt;
=== Player Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Player Events}}&lt;br /&gt;
&lt;br /&gt;
=== Vehicle Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Player Events}}&lt;br /&gt;
&lt;br /&gt;
=== Player Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Player Events}}&lt;br /&gt;
&lt;br /&gt;
=== Pickup Events ===&lt;br /&gt;
{{Scripting/Squirrel/Events/Pickup Events}}&lt;/div&gt;</summary>
		<author><name>Franklin</name></author>
	</entry>
</feed>