<?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=KAKAN</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=KAKAN"/>
	<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/wiki/Special:Contributions/KAKAN"/>
	<updated>2026-04-28T02:19:05Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Object.Pos&amp;diff=18975</id>
		<title>Scripting/Squirrel/Functions/Object.Pos</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Object.Pos&amp;diff=18975"/>
		<updated>2016-03-09T16:11:45Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Returns or sets the postion of an object in Vector.  == Syntax == &amp;lt;pre&amp;gt;object.Pos&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;CObject&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;object&amp;#039;&amp;#039;&amp;#039;  === Optional Arguments === * &amp;#039;&amp;#039;Vector&amp;#039;&amp;#039; &amp;#039;&amp;#039;...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Returns or sets the postion of an object in Vector.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;object.Pos&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;CObject&#039;&#039; &#039;&#039;&#039;object&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Optional Arguments ===&lt;br /&gt;
* &#039;&#039;Vector&#039;&#039; &#039;&#039;&#039;pos&#039;&#039;&#039; - The new vector postion for the object.&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
If the argument is null, then, it&#039;ll return the Vector instance of that object.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;function onScriptLoad() {&lt;br /&gt;
CreateObject(1259, 0, Vector(-879.757, -576.008, 11.3371), 255).RotateTo( Quaternion(0, 0, 0.5, -0.866025), 0 );&lt;br /&gt;
local obj = FindObject(0);&lt;br /&gt;
print( obj.Pos );&lt;br /&gt;
obj.Pos = Vector(0,0,0);&lt;br /&gt;
print( obj.Pos );&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Object.RotateTo&amp;diff=18945</id>
		<title>Scripting/Squirrel/Functions/Object.RotateTo</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Object.RotateTo&amp;diff=18945"/>
		<updated>2016-03-09T15:23:33Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function rotates an object to a specified Quaternion rotation.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;object.RotateTo( rotation, time )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;CObject&#039;&#039; &#039;&#039;&#039;object&#039;&#039;&#039; - A valid object instance.&lt;br /&gt;
* &#039;&#039;Quaternion&#039;&#039; &#039;&#039;&#039;rotation&#039;&#039;&#039; - A rotation that is in Quaternion format.&lt;br /&gt;
* &#039;&#039;int&#039;&#039; &#039;&#039;&#039;time&#039;&#039;&#039; - Time period within which the object has to rotate, in ms.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;CreateObject(1259, 0, Vector(-879.757, -576.008, 11.3371), 255).RotateTo( Quaternion(0, 0, 0.5, -0.866025), 0 );&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_info&amp;diff=18937</id>
		<title>Scripting/Squirrel/Functions/mysql info</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_info&amp;diff=18937"/>
		<updated>2016-03-09T14:22:34Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Retrieves a string providing information about the most recently executed statement. For more information, visit: http://dev.mysql.com/doc/refman/5.0/en/mysql-info.html  == Sy...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Retrieves a string providing information about the most recently executed statement. For more information, visit: http://dev.mysql.com/doc/refman/5.0/en/mysql-info.html&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;mysql_info( handler )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;MySQLHandler&#039;&#039; &#039;&#039;&#039;handler&#039;&#039;&#039; - A working MySQL link/connection.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;function onScriptLoad( )&lt;br /&gt;
{&lt;br /&gt;
 local conn = mysql_connect(&amp;quot;localhost&amp;quot;, &amp;quot;test&amp;quot;, &amp;quot;test&amp;quot;, &amp;quot;test&amp;quot;);&lt;br /&gt;
 if ( conn ) {&lt;br /&gt;
  mysql_query(conn, &amp;quot;UPDATE benchmark SET testFloat = 123.45 WHERE testInt = 0&amp;quot;);&lt;br /&gt;
  print( mysql_info(conn) );&lt;br /&gt;
 }&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnVehicleRespawn&amp;diff=18935</id>
		<title>OnVehicleRespawn</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnVehicleRespawn&amp;diff=18935"/>
		<updated>2016-03-09T13:57:50Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;This event is called when a vehicle is respawned.  == Syntax == &amp;lt;pre&amp;gt;onVehicleRespawn( vehicle )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;CVehicle&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;vehicle&amp;#039;&amp;#039;&amp;#039; - The vehicle instance, or...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This event is called when a vehicle is respawned.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;onVehicleRespawn( vehicle )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;CVehicle&#039;&#039; &#039;&#039;&#039;vehicle&#039;&#039;&#039; - The vehicle instance, or the vehicle which is being respawned.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;function onVehicleRespawn( vehicle ) {&lt;br /&gt;
Message( vehicle.ID + &amp;quot; respawned!&amp;quot;);&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnVehicleExplode&amp;diff=18932</id>
		<title>OnVehicleExplode</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnVehicleExplode&amp;diff=18932"/>
		<updated>2016-03-09T13:52:51Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;This event is called when a vehicle gets exploded.  == Syntax == &amp;lt;pre&amp;gt;onVehicleExplode( vehicle )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;CVehicle&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;vehicle&amp;#039;&amp;#039;&amp;#039; - The vehicle instance, o...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This event is called when a vehicle gets exploded.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;onVehicleExplode( vehicle )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;CVehicle&#039;&#039; &#039;&#039;&#039;vehicle&#039;&#039;&#039; - The vehicle instance, or, the vehicle which got exploded.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;function onVehicleExplode( vehicle ) {&lt;br /&gt;
Message( vehicle.ID + &amp;quot;, &amp;quot; + GetVehicleNameFromModel( vehicle.Model ) + &amp;quot; got exploded.&amp;quot;);&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerExitVehicle&amp;diff=18931</id>
		<title>OnPlayerExitVehicle</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerExitVehicle&amp;diff=18931"/>
		<updated>2016-03-09T13:48:12Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This event is called when a player exits a Vehicle.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;onPlayerExitVehicle( player, vehicle )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;CPlayer&#039;&#039; &#039;&#039;&#039;player&#039;&#039;&#039; - The player instance, or, the one who is exiting the vehicle.&lt;br /&gt;
* &#039;&#039;CVehicle&#039;&#039; &#039;&#039;&#039;player&#039;&#039;&#039; - The vehicle instance, or, the vehicle which is being exited by the player.&lt;br /&gt;
&lt;br /&gt;
== Example == &lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onPlayerExitVehicle( player, vehicle )&lt;br /&gt;
{&lt;br /&gt;
Message( player.Name + &amp;quot; has exited &amp;quot; + GetVehicleNameFromModel( vehicle.Model ) + &amp;quot;.&amp;quot; );&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerEnterVehicle&amp;diff=18929</id>
		<title>OnPlayerEnterVehicle</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerEnterVehicle&amp;diff=18929"/>
		<updated>2016-03-09T13:45:19Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This event is called when a player enters a Vehicle.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;onPlayerEnterVehicle( player, vehicle, door )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;CPlayer&#039;&#039; &#039;&#039;&#039;player&#039;&#039;&#039; - The player instance, or the one who is trying to enter.&lt;br /&gt;
* &#039;&#039;CVehicle&#039;&#039; &#039;&#039;&#039;vehicle&#039;&#039;&#039; - The vehicle instance, or the vehicle which is being entered by the player.&lt;br /&gt;
* &#039;&#039;int&#039;&#039; &#039;&#039;&#039;door&#039;&#039;&#039; - The door in which the player is entering, i.e, 0 for driver, 1 for passenger.&lt;br /&gt;
&lt;br /&gt;
== Example == &lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onPlayerEnterVehicle( player, vehicle, door )&lt;br /&gt;
{&lt;br /&gt;
Message( player.Name + &amp;quot; has Entered &amp;quot;+GetVehicleNameFromModel( vehicle.Model ) + &amp;quot;.&amp;quot; );&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/KickPlayer&amp;diff=18928</id>
		<title>Scripting/Squirrel/Functions/KickPlayer</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/KickPlayer&amp;diff=18928"/>
		<updated>2016-03-09T13:28:11Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function kicks the player out of the server, i.e, disconnects the client from the server.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;KickPlayer( player )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;CPlayer&#039;&#039; &#039;&#039;&#039;player&#039;&#039;&#039; - the player instance, or, the one you want to kick.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;source lang=squirrel&amp;gt;&lt;br /&gt;
function onPlayerCommand( player, cmd, text );&lt;br /&gt;
if ( cmd == &amp;quot;kick&amp;quot; )&lt;br /&gt;
       {&lt;br /&gt;
		if ( player.Name == &amp;quot;Your Name&amp;quot; )&lt;br /&gt;
		{&lt;br /&gt;
			local plr = FindPlayer( text );&lt;br /&gt;
			if ( plr )&lt;br /&gt;
			{&lt;br /&gt;
&lt;br /&gt;
		    ClientMessageToAll( &amp;quot;Admin:[ &amp;quot; + player.Name + &amp;quot; ] Kick:[ &amp;quot; + plr.Name + &amp;quot; ] [ Kick From the server ]&amp;quot; , 500, 102, 103 );                                          &lt;br /&gt;
          KickPlayer( plr )&lt;br /&gt;
		    }&lt;br /&gt;
        }			&lt;br /&gt;
		    else MessagePlayer( &amp;quot;---&amp;gt; Type /kick &amp;lt; player name &amp;gt;.&amp;quot; , player);&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
Call [[Scripting/Squirrel/Events/Player/onPlayerCommand|onPlayerCommand]] were used in this example. More info about them in the corresponding pages.&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerEnteringVehicle&amp;diff=18927</id>
		<title>OnPlayerEnteringVehicle</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerEnteringVehicle&amp;diff=18927"/>
		<updated>2016-03-09T13:26:54Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This event is called when a player tries to enter a vehicle&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;onPlayerEnteringVehicle( player, vehicle, door )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;CPlayer&#039;&#039; &#039;&#039;&#039;player&#039;&#039;&#039; - The player instance, or the one who is trying to enter.&lt;br /&gt;
* &#039;&#039;CVehicle&#039;&#039; &#039;&#039;&#039;vehicle&#039;&#039;&#039; - The vehicle instance, or the vehicle which is being entered by the player.&lt;br /&gt;
* &#039;&#039;int&#039;&#039; &#039;&#039;&#039;door&#039;&#039;&#039; - The door in which the player is entering, i.e, 0 for driver, 1 for passenger.&lt;br /&gt;
&lt;br /&gt;
== Example == &lt;br /&gt;
&amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt;&lt;br /&gt;
function onPlayerEnteringVehicle( player, vehicle, door )&lt;br /&gt;
{&lt;br /&gt;
Message( player.Name + &amp;quot; is entering &amp;quot; + GetVehicleNameFromModel( vehicle.Model ) + &amp;quot;.&amp;quot; );&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnSphereExited&amp;diff=18891</id>
		<title>OnSphereExited</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnSphereExited&amp;diff=18891"/>
		<updated>2016-03-09T10:51:34Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;This event is called when a players exits a sphere.  == Syntax == &amp;lt;pre&amp;gt;onSphereExited( player, sphere )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;CPlayer&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;player&amp;#039;&amp;#039;&amp;#039; - The player instance...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This event is called when a players exits a sphere.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;onSphereExited( player, sphere )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;CPlayer&#039;&#039; &#039;&#039;&#039;player&#039;&#039;&#039; - The player instance, or the one who exited the sphere.&lt;br /&gt;
* &#039;&#039;CSphere&#039;&#039; &#039;&#039;&#039;sphere&#039;&#039;&#039; - The sphere instance, or the sphere which got exited by the player&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;function onSphereExited( player, sphere ){&lt;br /&gt;
PrivMessage(player,&amp;quot;You exited sphere number &amp;quot; + sphere.ID );&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPickupRespawn&amp;diff=18888</id>
		<title>OnPickupRespawn</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPickupRespawn&amp;diff=18888"/>
		<updated>2016-03-09T10:48:00Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;This event is called when a pickup is respawned.  == Syntax == &amp;lt;pre&amp;gt;onPickupRespawn( pickup )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;CPickup&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;pickup&amp;#039;&amp;#039;&amp;#039; - The pickup instance, for the...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This event is called when a pickup is respawned.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;onPickupRespawn( pickup )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;CPickup&#039;&#039; &#039;&#039;&#039;pickup&#039;&#039;&#039; - The pickup instance, for the functions list, see [[Scripting/Squirrel/Functions#Pickup_Functions|Pickup functions]]&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPickupRespawn( pickup ){&lt;br /&gt;
print(&amp;quot;Pickup (&amp;quot; + pickup.ID + &amp;quot;) respawned!&amp;quot;);&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/GetSQLColumnData&amp;diff=18825</id>
		<title>Scripting/Squirrel/Functions/GetSQLColumnData</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/GetSQLColumnData&amp;diff=18825"/>
		<updated>2016-03-05T08:35:38Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Get a result row as a string.  == Syntax ==  &amp;lt;pre&amp;gt;GetSQLColumnData( query, columnNumber )&amp;lt;/pre&amp;gt;  == Arguments ==  *  &amp;#039;&amp;#039;&amp;#039;query&amp;#039;&amp;#039;&amp;#039; - Name of the previously executed query. *  &amp;#039;&amp;#039;...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Get a result row as a string.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;GetSQLColumnData( query, columnNumber )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
*  &#039;&#039;&#039;query&#039;&#039;&#039; - Name of the previously executed query.&lt;br /&gt;
*  &#039;&#039;&#039;columnNumber&#039;&#039;&#039; - Number of the column you want to get data of.&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
* The data in the column and/or &#039;&#039;null&#039;&#039; on failure&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;local c = ConnectSQL(&amp;quot;db.db&amp;quot;);&lt;br /&gt;
local d = QuerySQL(c,&amp;quot;SELECT Cash FROM Accounts WHERE Name=&#039;KAKAN&#039;&amp;quot;), e = GetSQLColumnData( d, 0 );&lt;br /&gt;
if( e ) print( &amp;quot;KAKAN has &amp;quot; + e + &amp;quot;$&amp;quot; );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/escapeSQLString&amp;diff=18824</id>
		<title>Scripting/Squirrel/Functions/escapeSQLString</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/escapeSQLString&amp;diff=18824"/>
		<updated>2016-03-05T08:28:30Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Escapes a query string to avoid sql injection attacks. This function should be used for every executed query that uses any data given by the players.  == Syntax == &amp;lt;pre&amp;gt;escape...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Escapes a query string to avoid sql injection attacks. This function should be used for every executed query that uses any data given by the players.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;escapeSQLString( string query )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;String&#039;&#039; &#039;&#039;&#039;query&#039;&#039;&#039; - The string to escape&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
The escaped string.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerJoin( player )&lt;br /&gt;
{&lt;br /&gt;
   local pName = escapeSQLString( player.Name );&lt;br /&gt;
   local q = QuerySQL( handler, &amp;quot;SELECT * FROM Accounts WHERE Name=&#039;&amp;quot; + pName + &amp;quot;&#039;&amp;quot; );&lt;br /&gt;
   //Do stuff here&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/FreeSQLQuery&amp;diff=18823</id>
		<title>Scripting/Squirrel/Functions/FreeSQLQuery</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/FreeSQLQuery&amp;diff=18823"/>
		<updated>2016-03-05T08:26:40Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Frees the last query result. This function should be called after every query, specially when these queries return any data.  == Syntax == &amp;lt;pre&amp;gt;FreeSQLQuery( SQLiteQuery query...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Frees the last query result. This function should be called after every query, specially when these queries return any data.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;FreeSQLQuery( SQLiteQuery query )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;SQLiteQuery&#039;&#039; &#039;&#039;&#039;query&#039;&#039;&#039; - A valid MySQL result&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
This function doesn&#039;t return any value.( null )&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;local c = QuerySQL(handler,&amp;quot;SELECT * FROM Accounts&amp;quot;);&lt;br /&gt;
//Do stuff here&lt;br /&gt;
FreeSQLQuery( c );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_fetch_assoc&amp;diff=18822</id>
		<title>Scripting/Squirrel/Functions/mysql fetch assoc</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_fetch_assoc&amp;diff=18822"/>
		<updated>2016-03-04T19:53:11Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Get a result row as a table  == Syntax == &amp;lt;pre&amp;gt;mysql_fetch_assoc( MySQLQuery query )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;MySQLQuery&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;query&amp;#039;&amp;#039;&amp;#039; - A valid MySQL result  == Return valu...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Get a result row as a table&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;mysql_fetch_assoc( MySQLQuery query )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;MySQLQuery&#039;&#039; &#039;&#039;&#039;query&#039;&#039;&#039; - A valid MySQL result&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
The row&#039;s column as a table&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;local c = mysql_query( handler, &amp;quot;SELECT Cash, Kills FROM Accounts WHERE Name=&#039;KAKAN&#039;&amp;quot; );&lt;br /&gt;
local d = mysql_fetch_assoc( c );&lt;br /&gt;
print(&amp;quot;Cash: &amp;quot; + d[&amp;quot;Cash&amp;quot;] + &amp;quot;, Kills: &amp;quot; + d[&amp;quot;Kills&amp;quot;] );&lt;br /&gt;
mysql_free_result( c );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_free_result&amp;diff=18821</id>
		<title>Scripting/Squirrel/Functions/mysql free result</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_free_result&amp;diff=18821"/>
		<updated>2016-03-04T19:48:58Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Frees the last query result. This function should be called after every query, specially when these queries return any data.  == Syntax == &amp;lt;pre&amp;gt;mysql_free_result( MySQLQuery q...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Frees the last query result. This function should be called after every query, specially when these queries return any data.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;mysql_free_result( MySQLQuery query )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;MySQLQuery&#039;&#039; &#039;&#039;&#039;query&#039;&#039;&#039; - A valid MySQL result&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
This function doesn&#039;t return any value.( null )&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;local c = mysql_query(handler,&amp;quot;SELECT * FROM Accounts&amp;quot;);&lt;br /&gt;
//Do stuff here&lt;br /&gt;
mysql_free_result( c );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_warning_count&amp;diff=18820</id>
		<title>Scripting/Squirrel/Functions/mysql warning count</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_warning_count&amp;diff=18820"/>
		<updated>2016-03-04T19:42:37Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Returns the last query number of warnings  == Syntax == &amp;lt;pre&amp;gt;mysql_warning_count( MySQLConnection handler )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;MySQLConnection&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;handler&amp;#039;&amp;#039;&amp;#039; - A vali...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Returns the last query number of warnings&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;mysql_warning_count( MySQLConnection handler )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;MySQLConnection&#039;&#039; &#039;&#039;&#039;handler&#039;&#039;&#039; - A valid MySQL link/connection&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
An integer showing the number of warning of the last query&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;mysql_query(handler,&amp;quot;SELECT FROM shit&amp;quot;);&lt;br /&gt;
print( mysql_warning_count( handler ) );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_errno&amp;diff=18819</id>
		<title>Scripting/Squirrel/Functions/mysql errno</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_errno&amp;diff=18819"/>
		<updated>2016-03-04T19:32:15Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Returns the last error number of a MySQL connection.  == Syntax == &amp;lt;pre&amp;gt;mysql_errno( MySQLConnection handler )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;MySQLConnection&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;handler&amp;#039;&amp;#039;&amp;#039; - A v...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Returns the last error number of a MySQL connection.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;mysql_errno( MySQLConnection handler )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;MySQLConnection&#039;&#039; &#039;&#039;&#039;handler&#039;&#039;&#039; - A valid MySQL link/handler&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
The last error number, zero if nothing failed.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;print( mysql_errno( handler ) )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/SHA384&amp;diff=18818</id>
		<title>Scripting/Squirrel/Functions/SHA384</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/SHA384&amp;diff=18818"/>
		<updated>2016-03-04T19:20:01Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Calculate the &amp;#039;&amp;#039;&amp;#039;SHA384&amp;#039;&amp;#039;&amp;#039; hash of a string  == Syntax == &amp;lt;pre&amp;gt;SHA384( string str )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;String&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;str&amp;#039;&amp;#039;&amp;#039; - string of which you want to calculate the h...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Calculate the &#039;&#039;&#039;SHA384&#039;&#039;&#039; hash of a string&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;SHA384( string str )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;String&#039;&#039; &#039;&#039;&#039;str&#039;&#039;&#039; - string of which you want to calculate the hash&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
String containing calculated &#039;&#039;&#039;SHA384&#039;&#039;&#039; hash of str&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;print( SHA384(&amp;quot;test&amp;quot;) );&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/SHA224&amp;diff=18817</id>
		<title>Scripting/Squirrel/Functions/SHA224</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/SHA224&amp;diff=18817"/>
		<updated>2016-03-04T19:19:13Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Calculate the &amp;#039;&amp;#039;&amp;#039;SHA224&amp;#039;&amp;#039;&amp;#039; hash of a string  == Syntax == &amp;lt;pre&amp;gt;SHA224( string str )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;String&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;str&amp;#039;&amp;#039;&amp;#039; - string of which you want to calculate the h...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Calculate the &#039;&#039;&#039;SHA224&#039;&#039;&#039; hash of a string&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;SHA224( string str )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;String&#039;&#039; &#039;&#039;&#039;str&#039;&#039;&#039; - string of which you want to calculate the hash&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
String containing calculated &#039;&#039;&#039;SHA224&#039;&#039;&#039; hash of str&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;print( SHA224(&amp;quot;test&amp;quot;) );&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/SHA1&amp;diff=18816</id>
		<title>Scripting/Squirrel/Functions/SHA1</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/SHA1&amp;diff=18816"/>
		<updated>2016-03-04T19:18:51Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Calculate the &amp;#039;&amp;#039;&amp;#039;SHA1&amp;#039;&amp;#039;&amp;#039; hash of a string  == Syntax == &amp;lt;pre&amp;gt;SHA1( string str )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;String&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;str&amp;#039;&amp;#039;&amp;#039; - string of which you want to calculate the hash...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Calculate the &#039;&#039;&#039;SHA1&#039;&#039;&#039; hash of a string&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;SHA1( string str )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;String&#039;&#039; &#039;&#039;&#039;str&#039;&#039;&#039; - string of which you want to calculate the hash&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
String containing calculated &#039;&#039;&#039;SHA1&#039;&#039;&#039; hash of str&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;print( SHA1(&amp;quot;test&amp;quot;) );&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/RIPEMD320&amp;diff=18815</id>
		<title>Scripting/Squirrel/Functions/RIPEMD320</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/RIPEMD320&amp;diff=18815"/>
		<updated>2016-03-04T19:16:18Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Calculate the &amp;#039;&amp;#039;&amp;#039;RIPEMD320&amp;#039;&amp;#039;&amp;#039; hash of a string  == Syntax == &amp;lt;pre&amp;gt;RIPEMD320( string str )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;String&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;str&amp;#039;&amp;#039;&amp;#039; - string of which you want to calculate...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Calculate the &#039;&#039;&#039;RIPEMD320&#039;&#039;&#039; hash of a string&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;RIPEMD320( string str )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;String&#039;&#039; &#039;&#039;&#039;str&#039;&#039;&#039; - string of which you want to calculate the hash&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
String containing calculated &#039;&#039;&#039;RIPEMD320&#039;&#039;&#039; hash of str&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;print( RIPEMD320(&amp;quot;test&amp;quot;) );&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/RIPEMD160&amp;diff=18814</id>
		<title>Scripting/Squirrel/Functions/RIPEMD160</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/RIPEMD160&amp;diff=18814"/>
		<updated>2016-03-04T19:15:10Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Calculate the &amp;#039;&amp;#039;&amp;#039;RIPEMD160&amp;#039;&amp;#039;&amp;#039; hash of a string  == Syntax == &amp;lt;pre&amp;gt;RIPEMD160( string str )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;String&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;str&amp;#039;&amp;#039;&amp;#039; - string of which you want to calculate...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Calculate the &#039;&#039;&#039;RIPEMD160&#039;&#039;&#039; hash of a string&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;RIPEMD160( string str )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;String&#039;&#039; &#039;&#039;&#039;str&#039;&#039;&#039; - string of which you want to calculate the hash&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
String containing calculated &#039;&#039;&#039;RIPEMD160&#039;&#039;&#039; hash of str&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;print( RIPEMD160(&amp;quot;test&amp;quot;) );&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/RIPEMD128&amp;diff=18813</id>
		<title>Scripting/Squirrel/Functions/RIPEMD128</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/RIPEMD128&amp;diff=18813"/>
		<updated>2016-03-04T19:12:45Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Calculate the &amp;#039;&amp;#039;&amp;#039;RIPEMD128&amp;#039;&amp;#039;&amp;#039; hash of a string  == Syntax == &amp;lt;pre&amp;gt;RIPEMD128( string str )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;String&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;str&amp;#039;&amp;#039;&amp;#039; - string of which you want to calculate...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Calculate the &#039;&#039;&#039;RIPEMD128&#039;&#039;&#039; hash of a string&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;RIPEMD128( string str )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;String&#039;&#039; &#039;&#039;&#039;str&#039;&#039;&#039; - string of which you want to calculate the hash&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
String containing calculated &#039;&#039;&#039;RIPEMD128&#039;&#039;&#039; hash of str&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;print( RIPEMD128(&amp;quot;test&amp;quot;) );&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/RIPEMD256&amp;diff=18812</id>
		<title>Scripting/Squirrel/Functions/RIPEMD256</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/RIPEMD256&amp;diff=18812"/>
		<updated>2016-03-04T19:11:53Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Calculate the &amp;#039;&amp;#039;&amp;#039;RIPEMD256&amp;#039;&amp;#039;&amp;#039; hash of a string  == Syntax == &amp;lt;pre&amp;gt;RIPEMD256( string str )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;String&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;str&amp;#039;&amp;#039;&amp;#039; - string of which you want to calculate...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Calculate the &#039;&#039;&#039;RIPEMD256&#039;&#039;&#039; hash of a string&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;RIPEMD256( string str )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;String&#039;&#039; &#039;&#039;&#039;str&#039;&#039;&#039; - string of which you want to calculate the hash&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
String containing calculated &#039;&#039;&#039;RIPEMD256&#039;&#039;&#039; hash of str&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;print( RIPEMD256(&amp;quot;test&amp;quot;) );&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/base64_encode&amp;diff=18811</id>
		<title>Scripting/Squirrel/Functions/base64 encode</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/base64_encode&amp;diff=18811"/>
		<updated>2016-03-04T19:10:16Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Find the decode of a base64 hashed string  == Syntax == &amp;lt;pre&amp;gt;base64_decode( string str )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;String&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;str&amp;#039;&amp;#039;&amp;#039; - string of which you want to decode the...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Find the decode of a base64 hashed string&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;base64_decode( string str )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;String&#039;&#039; &#039;&#039;&#039;str&#039;&#039;&#039; - string of which you want to decode the hash&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
String containing decoded &#039;&#039;&#039;base64&#039;&#039;&#039; hash&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;print( base64_decode(&amp;quot;test&amp;quot;) );&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/base64_decode&amp;diff=18810</id>
		<title>Scripting/Squirrel/Functions/base64 decode</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/base64_decode&amp;diff=18810"/>
		<updated>2016-03-04T19:07:54Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Calculate the &amp;#039;&amp;#039;&amp;#039;base64&amp;#039;&amp;#039;&amp;#039; hash of a string  == Syntax == &amp;lt;pre&amp;gt;base64_encode( string str )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;String&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;str&amp;#039;&amp;#039;&amp;#039; - string of which you want to calculat...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Calculate the &#039;&#039;&#039;base64&#039;&#039;&#039; hash of a string&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;base64_encode( string str )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;String&#039;&#039; &#039;&#039;&#039;str&#039;&#039;&#039; - string of which you want to calculate the hash&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
String containing calculated &#039;&#039;&#039;base64&#039;&#039;&#039; hash of str&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;print( base64_encode(&amp;quot;test&amp;quot;) );&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/MD5&amp;diff=18809</id>
		<title>Scripting/Squirrel/Functions/MD5</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/MD5&amp;diff=18809"/>
		<updated>2016-03-04T19:06:35Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Calculate the &amp;#039;&amp;#039;&amp;#039;MD5&amp;#039;&amp;#039;&amp;#039; hash of a string  == Syntax == &amp;lt;pre&amp;gt;MD5( string str )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;String&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;str&amp;#039;&amp;#039;&amp;#039; - string of which you want to calculate the hash  =...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Calculate the &#039;&#039;&#039;MD5&#039;&#039;&#039; hash of a string&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;MD5( string str )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;String&#039;&#039; &#039;&#039;&#039;str&#039;&#039;&#039; - string of which you want to calculate the hash&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
String containing calculated &#039;&#039;&#039;MD5&#039;&#039;&#039; hash of str&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;print( MD5(&amp;quot;test&amp;quot;) );&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/SHA512&amp;diff=18808</id>
		<title>Scripting/Squirrel/Functions/SHA512</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/SHA512&amp;diff=18808"/>
		<updated>2016-03-04T19:06:14Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Calculate the &amp;#039;&amp;#039;&amp;#039;SHA512&amp;#039;&amp;#039;&amp;#039; hash of a string  == Syntax == &amp;lt;pre&amp;gt;SHA512( string str )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;String&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;str&amp;#039;&amp;#039;&amp;#039; - string of which you want to calculate the h...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Calculate the &#039;&#039;&#039;SHA512&#039;&#039;&#039; hash of a string&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;SHA512( string str )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;String&#039;&#039; &#039;&#039;&#039;str&#039;&#039;&#039; - string of which you want to calculate the hash&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
String containing calculated &#039;&#039;&#039;SHA512&#039;&#039;&#039; hash of str&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;print( SHA512(&amp;quot;test&amp;quot;) );&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/WHIRLPOOL&amp;diff=18807</id>
		<title>Scripting/Squirrel/Functions/WHIRLPOOL</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/WHIRLPOOL&amp;diff=18807"/>
		<updated>2016-03-04T19:05:30Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Calculate the &amp;#039;&amp;#039;&amp;#039;WHIRLPOOL&amp;#039;&amp;#039;&amp;#039; hash of a string  == Syntax == &amp;lt;pre&amp;gt;WHIRLPOOL( string str )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;String&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;str&amp;#039;&amp;#039;&amp;#039; - string of which you want to calculate...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Calculate the &#039;&#039;&#039;WHIRLPOOL&#039;&#039;&#039; hash of a string&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;WHIRLPOOL( string str )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;String&#039;&#039; &#039;&#039;&#039;str&#039;&#039;&#039; - string of which you want to calculate the hash&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
String containing calculated &#039;&#039;&#039;WHIRLPOOL&#039;&#039;&#039; hash of str&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;print( WHIRLPOOL(&amp;quot;test&amp;quot;) );&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/SHA256&amp;diff=18806</id>
		<title>Scripting/Squirrel/Functions/SHA256</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/SHA256&amp;diff=18806"/>
		<updated>2016-03-04T19:03:14Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Calculate the &amp;#039;&amp;#039;&amp;#039;SHA256&amp;#039;&amp;#039;&amp;#039; hash of a string  == Syntax == &amp;lt;pre&amp;gt;SHA256( string str )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;String&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;str&amp;#039;&amp;#039;&amp;#039; - string of which you want to calculate the h...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Calculate the &#039;&#039;&#039;SHA256&#039;&#039;&#039; hash of a string&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;SHA256( string str )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;String&#039;&#039; &#039;&#039;&#039;str&#039;&#039;&#039; - string of which you want to calculate the hash&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
String containing calculated &#039;&#039;&#039;SHA256&#039;&#039;&#039; hash of str&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;print( SHA256(&amp;quot;test&amp;quot;) );&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_change_user&amp;diff=18805</id>
		<title>Scripting/Squirrel/Functions/mysql change user</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_change_user&amp;diff=18805"/>
		<updated>2016-03-04T18:57:49Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Changes the current MySQL session authentication.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;mysql_change_user ( MySQLConnection handler, string new_username, string new_password )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;MySQLConnection&#039;&#039; &#039;&#039;&#039;handler&#039;&#039;&#039; - A valid MySQL link/handler&lt;br /&gt;
* &#039;&#039;String&#039;&#039; &#039;&#039;&#039;new_username&#039;&#039;&#039; - The new username&lt;br /&gt;
* &#039;&#039;String&#039;&#039; &#039;&#039;&#039;new_password&#039;&#039;&#039; - The password for the new username&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
&#039;&#039;true&#039;&#039; on success and/or &#039;&#039;false&#039;&#039; on failure&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;handler &amp;lt;- mysql_connect(&amp;quot;localhost&amp;quot;,&amp;quot;writer&amp;quot;,&amp;quot;password&amp;quot;,&amp;quot;database&amp;quot;);&lt;br /&gt;
if( handler ) print(&amp;quot;Successfully connected.&amp;quot;);&lt;br /&gt;
else&lt;br /&gt;
    mysql_change_user(handler,&amp;quot;reader&amp;quot;,&amp;quot;password&amp;quot;),&lt;br /&gt;
    print(&amp;quot;Successfully connected to read-only mode&amp;quot;);&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_select_db&amp;diff=18804</id>
		<title>Scripting/Squirrel/Functions/mysql select db</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_select_db&amp;diff=18804"/>
		<updated>2016-03-04T18:55:26Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Changes the current default database.  == Syntax == &amp;lt;pre&amp;gt;mysql_select_db( MySQLConnection handler, string database )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;MySQLConnection&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;handler&amp;#039;&amp;#039;&amp;#039;...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Changes the current default database.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;mysql_select_db( MySQLConnection handler, string database )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;MySQLConnection&#039;&#039; &#039;&#039;&#039;handler&#039;&#039;&#039; - A valid MySQL link/handler&lt;br /&gt;
* &#039;&#039;String&#039;&#039; &#039;&#039;&#039;database&#039;&#039;&#039; - The new database&#039;s name&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
&#039;&#039;true&#039;&#039; on success and/or &#039;&#039;false&#039;&#039; on failure.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;local c = mysql_connect(&amp;quot;localhost&amp;quot;,&amp;quot;root&amp;quot;,&amp;quot;password&amp;quot;,&amp;quot;db2&amp;quot;);&lt;br /&gt;
if( c ) return 1;&lt;br /&gt;
else mysql_select_db(c,&amp;quot;database&amp;quot;);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_escape_string&amp;diff=18803</id>
		<title>Scripting/Squirrel/Functions/mysql escape string</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_escape_string&amp;diff=18803"/>
		<updated>2016-03-04T18:51:43Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Escapes a query string to avoid sql injection attacks. This function should be used for every executed query that uses any data given by the players.  == Syntax == &amp;lt;pre&amp;gt;mysql_...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Escapes a query string to avoid sql injection attacks. This function should be used for every executed query that uses any data given by the players.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;mysql_escape_string( MySQLConnection handler, string query )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;MySQLConnection&#039;&#039; &#039;&#039;&#039;handler&#039;&#039;&#039; - A valid MySQL link/handler&lt;br /&gt;
* &#039;&#039;String&#039;&#039; &#039;&#039;&#039;query&#039;&#039;&#039; - The string to escape&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
The escaped string.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerJoin( player )&lt;br /&gt;
{&lt;br /&gt;
   local pName = mysql_escape_string( handler, player.Name );&lt;br /&gt;
   local q = mysql_query( handler, &amp;quot;SELECT * FROM Accounts WHERE Name=&#039;&amp;quot; + pName + &amp;quot;&#039;&amp;quot; );&lt;br /&gt;
   //Do stuff here&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_change_user&amp;diff=18802</id>
		<title>Scripting/Squirrel/Functions/mysql change user</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_change_user&amp;diff=18802"/>
		<updated>2016-03-04T18:47:04Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Changes the current MySQL session authentication.  == Syntax == mysql_change_user ( MySQLConnection handler, string new_username, string new_password )  == Arguments == * &amp;#039;&amp;#039;My...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Changes the current MySQL session authentication.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
mysql_change_user ( MySQLConnection handler, string new_username, string new_password )&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;MySQLConnection&#039;&#039; &#039;&#039;&#039;handler&#039;&#039;&#039; - A valid MySQL link/handler&lt;br /&gt;
* &#039;&#039;String&#039;&#039; &#039;&#039;&#039;new_username&#039;&#039;&#039; - The new username&lt;br /&gt;
* &#039;&#039;String&#039;&#039; &#039;&#039;&#039;new_password&#039;&#039;&#039; - The password for the new username&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
&#039;&#039;true&#039;&#039; on success and/or &#039;&#039;false&#039;&#039; on failure&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;handler &amp;lt;- mysql_connect(&amp;quot;localhost&amp;quot;,&amp;quot;writer&amp;quot;,&amp;quot;password&amp;quot;,&amp;quot;database&amp;quot;);&lt;br /&gt;
if( handler ) print(&amp;quot;Successfully connected.&amp;quot;);&lt;br /&gt;
else&lt;br /&gt;
    mysql_change_user(handler,&amp;quot;reader&amp;quot;,&amp;quot;password&amp;quot;),&lt;br /&gt;
    print(&amp;quot;Successfully connected to read-only mode&amp;quot;);&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_affected_rows&amp;diff=18801</id>
		<title>Scripting/Squirrel/Functions/mysql affected rows</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_affected_rows&amp;diff=18801"/>
		<updated>2016-03-04T18:36:37Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Returns the number of changed rows (for UPDATE), inserted rows (for INSERT) or deleted rows (for DELETE) in the last query. For SELECT statements it works like mysql_num_rows....&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Returns the number of changed rows (for UPDATE), inserted rows (for INSERT) or deleted rows (for DELETE) in the last query. For SELECT statements it works like mysql_num_rows.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;mysql_affected_rows ( MySQLConnection handler )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;MySQLConnection&#039;&#039; &#039;&#039;&#039;handler&#039;&#039;&#039; - A valid MySQL link/handler&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
The number of affected rows in the last query.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;mysql_query(handler, &amp;quot;DELETE FROM account WHERE name LIKE &#039;A%&#039;&amp;quot;)&lt;br /&gt;
print(&amp;quot;We deleted a total of &amp;quot; + mysql_affected_rows(handler) + &amp;quot; accounts starting with &#039;A&#039;&amp;quot;)&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_error&amp;diff=18800</id>
		<title>Scripting/Squirrel/Functions/mysql error</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_error&amp;diff=18800"/>
		<updated>2016-03-04T18:19:08Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Returns the last error string of a MySQL connection.  == Syntax == &amp;lt;pre&amp;gt;mysql_error( MySQLConnection handler )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;MySQLConnection&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;handler&amp;#039;&amp;#039;&amp;#039; - A v...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Returns the last error string of a MySQL connection.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;mysql_error( MySQLConnection handler )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;MySQLConnection&#039;&#039; &#039;&#039;&#039;handler&#039;&#039;&#039; - A valid MySQL link/handler&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
The last error string. If no errors are there, then it will return an empty string.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;function onScriptLoad(){&lt;br /&gt;
   local handler = mysql_connect(&amp;quot;localhost&amp;quot;,&amp;quot;root&amp;quot;,&amp;quot;password&amp;quot;,&amp;quot;database&amp;quot;);&lt;br /&gt;
   local q mysql_query(handler,&amp;quot;SELECT FROM table&amp;quot;);&lt;br /&gt;
   if( mysql_error( handler ) != &amp;quot;&amp;quot; ) //We have a error.&lt;br /&gt;
     print( mysql_error( handler ) ); //So printing the error&lt;br /&gt;
   else //No errors, let&#039;s free the query.&lt;br /&gt;
     mysql_free_result( q );&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_ping&amp;diff=18799</id>
		<title>Scripting/Squirrel/Functions/mysql ping</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_ping&amp;diff=18799"/>
		<updated>2016-03-04T15:08:03Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function checks if the given MySQL connection is still alive.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;mysql_ping( MySQLConnection handler )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;MySQLConnetion&#039;&#039; &#039;&#039;&#039;handler&#039;&#039;&#039; - A valid MySQL link/handler&lt;br /&gt;
&lt;br /&gt;
== Return value(s) ==&lt;br /&gt;
&#039;&#039;boolean&#039;&#039; - &#039;&#039;true&#039;&#039; on success and/or &#039;&#039;false&#039;&#039; on failure.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;function onScriptLoad(){&lt;br /&gt;
   local handler = mysql_connect(&amp;quot;localhost&amp;quot;,&amp;quot;root&amp;quot;,&amp;quot;password&amp;quot;,&amp;quot;database&amp;quot;);&lt;br /&gt;
   if( mysql_ping( handler ) == 1 ) //Connection is alive.&lt;br /&gt;
     print(&amp;quot;The MySQL connection is working.&amp;quot;);&lt;br /&gt;
   else //Connection is dead/not working&lt;br /&gt;
     print(&amp;quot;The MySQL connection is not working&amp;quot;);&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By KAKAN&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_close&amp;diff=18798</id>
		<title>Scripting/Squirrel/Functions/mysql close</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_close&amp;diff=18798"/>
		<updated>2016-03-04T15:05:20Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;Closes an established connection to a MySQL server.  == Syntax == mysql_close ( MySQLConnection handler )  == Arguments == * &amp;#039;&amp;#039;MySQLConnection&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;handler&amp;#039;&amp;#039;&amp;#039; - A valid MySQL...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Closes an established connection to a MySQL server.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
mysql_close ( MySQLConnection handler )&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;MySQLConnection&#039;&#039; &#039;&#039;&#039;handler&#039;&#039;&#039; - A valid MySQL link/handler&lt;br /&gt;
&lt;br /&gt;
== Return value(s) ==&lt;br /&gt;
* &#039;&#039;boolean&#039;&#039; - &#039;&#039;true&#039;&#039; on success and/or &#039;&#039;false&#039;&#039; on failure&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;function onScriptLoad(){&lt;br /&gt;
   local handler = mysql_connect(&amp;quot;localhost&amp;quot;,&amp;quot;root&amp;quot;,&amp;quot;password&amp;quot;,&amp;quot;database&amp;quot;);&lt;br /&gt;
   if( mysql_ping( handler ) == 1 ) //Connection is alive.&lt;br /&gt;
     mysql_close( handler );&lt;br /&gt;
   else //Connection is dead/not working&lt;br /&gt;
     print(&amp;quot;The MySQL connection is not working&amp;quot;);&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_ping&amp;diff=18797</id>
		<title>Scripting/Squirrel/Functions/mysql ping</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_ping&amp;diff=18797"/>
		<updated>2016-03-04T14:58:23Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function checks if the given MySQL connection is still alive.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;mysql_ping( MySQLConnection handler )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;MySQLConnetion&#039;&#039; &#039;&#039;&#039;handler&#039;&#039;&#039; - A valid MySQL link/handler&lt;br /&gt;
&lt;br /&gt;
== Return value(s) ==&lt;br /&gt;
&#039;&#039;int&#039;&#039; - &#039;&#039;1&#039;&#039; on success and/or &#039;&#039;0&#039;&#039; on failure.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;function onScriptLoad(){&lt;br /&gt;
   local handler = mysql_connect(&amp;quot;localhost&amp;quot;,&amp;quot;root&amp;quot;,&amp;quot;password&amp;quot;,&amp;quot;database&amp;quot;);&lt;br /&gt;
   if( mysql_ping( handler ) == 1 ) //Connection is alive.&lt;br /&gt;
     print(&amp;quot;The MySQL connection is working.&amp;quot;);&lt;br /&gt;
   else //Connection is dead/not working&lt;br /&gt;
     print(&amp;quot;The MySQL connection is not working&amp;quot;);&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_ping&amp;diff=18796</id>
		<title>Scripting/Squirrel/Functions/mysql ping</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/mysql_ping&amp;diff=18796"/>
		<updated>2016-03-04T14:57:32Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: Created page with &amp;quot;This function checks if the given MySQL connection is still alive.  == Syntax == &amp;lt;pre&amp;gt;mysql_ping( MySQLConnection handler )&amp;lt;/pre&amp;gt;  == Arguments == * &amp;#039;&amp;#039;MySQLConnetion&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;hand...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function checks if the given MySQL connection is still alive.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;mysql_ping( MySQLConnection handler )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
* &#039;&#039;MySQLConnetion&#039;&#039; &#039;&#039;&#039;handler&#039;&#039;&#039; - A valid MySQL link/handler&lt;br /&gt;
&lt;br /&gt;
== Return value(s) ==&lt;br /&gt;
&#039;&#039;int&#039;&#039; - &#039;&#039;1&#039;&#039; on success and/or &#039;&#039;0&#039;&#039; on failure.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;function onScriptLoad(){&lt;br /&gt;
   local handler = mysql_connect(&amp;quot;localhost&amp;quot;,&amp;quot;root&amp;quot;,&amp;quot;password&amp;quot;,&amp;quot;database&amp;quot;);&lt;br /&gt;
   if( mysql_ping( handler ) == 1 ) //Connection is alive.&lt;br /&gt;
     print(&amp;quot;The MySQL connection is working.&amp;quot;);&lt;br /&gt;
   else //Connection is dead/not working&lt;br /&gt;
     print(&amp;quot;The MySQL connection is not working&amp;quot;);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Checkpoint.Radius&amp;diff=18790</id>
		<title>Scripting/Squirrel/Functions/Checkpoint.Radius</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Checkpoint.Radius&amp;diff=18790"/>
		<updated>2016-02-24T08:31:08Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Checkpoint.Radius : By using this function, You can set the radius of the checkpoint, that means how big the checkpoint will be.&lt;br /&gt;
To do it, 1st of all, you need to create a checkpoint.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;Checkpoint.Radius = (int)Radius&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
int &amp;lt;b&amp;gt;Radius&amp;lt;/b&amp;gt; - The size/Radius of the checkpoint&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;function onScriptLoad()&lt;br /&gt;
 { &lt;br /&gt;
cp &amp;lt;- CreateCheckpoint(null, 0, Vector( 132.42, 674.34, 12.6543 ), RGB( 255, 0,255 ), 2);&lt;br /&gt;
 }&lt;br /&gt;
function onPlayerJoin( player ) &lt;br /&gt;
{&lt;br /&gt;
if ( GetPlayers() &amp;gt;=3 )&lt;br /&gt;
{&lt;br /&gt;
cp.Radius = 2; &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
By someone&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Checkpoint.Pos&amp;diff=18789</id>
		<title>Scripting/Squirrel/Functions/Checkpoint.Pos</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Checkpoint.Pos&amp;diff=18789"/>
		<updated>2016-02-24T08:29:06Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;Checkpoint.Pos = Vector( pos )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
Vector position&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;function onScriptLoad()&lt;br /&gt;
{&lt;br /&gt;
 array &amp;lt;- CreateCheckpoint(null, 0, Vector( 132.42, 674.34, 12.6543 ), RGB( 255, 0,255 ), 2); &lt;br /&gt;
}&lt;br /&gt;
function onPlayerJoin( player )&lt;br /&gt;
{&lt;br /&gt;
array.Pos = Vector( 564.75, 454.98, 15.65 );&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
By someone&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Checkpoint.ID&amp;diff=18788</id>
		<title>Scripting/Squirrel/Functions/Checkpoint.ID</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Checkpoint.ID&amp;diff=18788"/>
		<updated>2016-02-24T08:27:09Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Syntax ==&lt;br /&gt;
Checkpoint.ID&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
The checkpoint&#039;s ID&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onScriptLoad()&lt;br /&gt;
{&lt;br /&gt;
CreateCheckpoint(null, 0, Vector( 876.45, 432.54, 12.34 ), RGB( 255, 0, 255 ), 2);&lt;br /&gt;
CreateCheckpoint(null, 0, Vector( 765.43, 324.65, 14.54 ), RGB( 243, 67, 189 ), 2);&lt;br /&gt;
print( FindCheckpoint(0).ID ); //1st one.&lt;br /&gt;
print( FindCheckpoint(1).ID ); //2nd one&lt;br /&gt;
//and so on&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
By VCMP Team&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Checkpoint.Color&amp;diff=18787</id>
		<title>Scripting/Squirrel/Functions/Checkpoint.Color</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Checkpoint.Color&amp;diff=18787"/>
		<updated>2016-02-24T08:26:03Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Syntax ==&lt;br /&gt;
&amp;lt;pre&amp;gt;Checkpoint.Color&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
RGB value&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerSpawn( player )&lt;br /&gt;
{&lt;br /&gt;
FindCheckpoint(0).Color = RGB(255,255,255);&lt;br /&gt;
player.Pos = Vector( 132.42, 674.34, 12.6543 );&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
By VCMP Team&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Checkpoint.Pos&amp;diff=18786</id>
		<title>Scripting/Squirrel/Functions/Checkpoint.Pos</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Checkpoint.Pos&amp;diff=18786"/>
		<updated>2016-02-24T08:21:26Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As the other checkpoint functions, You need to create a checkpoint&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onScriptLoad()&lt;br /&gt;
{&lt;br /&gt;
 array &amp;lt;- CreateCheckpoint(null, 0, Vector( 132.42, 674.34, 12.6543 ), RGB( 255, 0,255 ), 2); &lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now You can set its position to other places in different events.&lt;br /&gt;
== For example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerJoin( player )&lt;br /&gt;
{&lt;br /&gt;
array.Pos = Vector( 564.75, 454.98, 15.65 );&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
By someone&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Checkpoint.ID&amp;diff=18785</id>
		<title>Scripting/Squirrel/Functions/Checkpoint.ID</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Checkpoint.ID&amp;diff=18785"/>
		<updated>2016-02-24T08:20:49Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As the other functions of checkpoint Checkpoint.ID is also easy, but to do this u need something like:- &lt;br /&gt;
&amp;lt;pre&amp;gt;function onScriptLoad()&lt;br /&gt;
{&lt;br /&gt;
CreateCheckpoint(null, 0, Vector( 876.45, 432.54, 12.34 ), RGB( 255, 0, 255 ), 2);&lt;br /&gt;
CreateCheckpoint(null, 0, Vector( 765.43, 324.65, 14.54 ), RGB( 243, 67, 189 ), 2);&lt;br /&gt;
print( FindCheckpoint(0).ID ); //1st one.&lt;br /&gt;
print( FindCheckpoint(1).ID ); //2nd one&lt;br /&gt;
//and so on&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
By VCMP Team&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Checkpoint.Radius&amp;diff=18784</id>
		<title>Scripting/Squirrel/Functions/Checkpoint.Radius</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Checkpoint.Radius&amp;diff=18784"/>
		<updated>2016-02-24T08:18:41Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Checkpoint.Radius : By using this function, You can set the radius of the checkpoint, that means how big the checkpoint will be.&lt;br /&gt;
To do it, 1st of all, you need to create a checkpoint.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onScriptLoad()&lt;br /&gt;
 { &lt;br /&gt;
cp &amp;lt;- CreateCheckpoint(null, 0, Vector( 132.42, 674.34, 12.6543 ), RGB( 255, 0,255 ), 2);&lt;br /&gt;
 }&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then you may set it radius to differnt types&lt;br /&gt;
Now let&#039;s see&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerJoin( player ) &lt;br /&gt;
{ &lt;br /&gt;
if ( GetPlayers() &amp;gt;=3 )&lt;br /&gt;
{&lt;br /&gt;
cp.Radius = 2; &lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
By someone&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Checkpoint.Remove&amp;diff=18783</id>
		<title>Scripting/Squirrel/Functions/Checkpoint.Remove</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Checkpoint.Remove&amp;diff=18783"/>
		<updated>2016-02-24T08:16:42Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Checkpoint.remove : To use it, like others, you need to find the checkpoint, either using a name or by using FindCheckpoint() function&lt;br /&gt;
For example&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onScriptLoad()&lt;br /&gt;
 { &lt;br /&gt;
checkp_status = false&lt;br /&gt;
 }&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now lets create the checkpoint&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerJoin(player)&lt;br /&gt;
{&lt;br /&gt;
if(checkp_status == false)&lt;br /&gt;
{&lt;br /&gt;
cp &amp;lt;- CreateCheckpoint(null, 0, Vector( 132.42, 674.34, 12.6543 ), RGB( 255, 0,255 ), 2);&lt;br /&gt;
checkp_status = true;&lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now we may like to delete it when we get 0 players.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
function onPlayerPart( player ) &lt;br /&gt;
{ &lt;br /&gt;
if(GetPlayers() == 0)&lt;br /&gt;
{&lt;br /&gt;
cp.Remove();&lt;br /&gt;
checkp_status = false;&lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By someone&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Checkpoint.Remove&amp;diff=18782</id>
		<title>Scripting/Squirrel/Functions/Checkpoint.Remove</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Checkpoint.Remove&amp;diff=18782"/>
		<updated>2016-02-24T08:16:11Z</updated>

		<summary type="html">&lt;p&gt;KAKAN: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Checkpoint.remove : To use it, like others, you need to find the checkpoint, either using a name or by using FindCheckpoint() function&lt;br /&gt;
For example&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onScriptLoad()&lt;br /&gt;
 { &lt;br /&gt;
checkp_status = false&lt;br /&gt;
 }&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now lets create the checkpoint&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerJoin(player)&lt;br /&gt;
{&lt;br /&gt;
if(checkp_status == false)&lt;br /&gt;
{&lt;br /&gt;
cp &amp;lt;- CreateCheckpoint(null, 0, Vector( 132.42, 674.34, 12.6543 ), RGB( 255, 0,255 ), 2);&lt;br /&gt;
checkp_status = true;&lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now we may like to delete it when we get 0 players.&lt;br /&gt;
&lt;br /&gt;
function onPlayerPart( player ) &lt;br /&gt;
{ &lt;br /&gt;
if(GetPlayers() == 0)&lt;br /&gt;
{&lt;br /&gt;
cp.Remove();&lt;br /&gt;
checkp_status = false;&lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By someone&lt;/div&gt;</summary>
		<author><name>KAKAN</name></author>
	</entry>
</feed>