<?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=Power</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=Power"/>
	<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/wiki/Special:Contributions/Power"/>
	<updated>2026-04-29T03:05:02Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/PrivMessage&amp;diff=17886</id>
		<title>Scripting/Squirrel/Functions/PrivMessage</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/PrivMessage&amp;diff=17886"/>
		<updated>2014-11-01T19:54:00Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Syntax */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a private message to the player specified.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;PrivMessage( player, message )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;[[Scripting/Squirrel/Functions#Player Functions|Player]]&#039;&#039; &#039;&#039;&#039;player&#039;&#039;&#039; - The player to send the message to&lt;br /&gt;
* &#039;&#039;string&#039;&#039; &#039;&#039;&#039;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
The following example send a personal message saying &#039;&#039;&#039;Hey you, have fun here!&#039;&#039;&#039;:&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;SendPrivMessage&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  PrivMessage( player, &amp;quot;Hey you, have fun here!&amp;quot;);&lt;br /&gt;
 }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
=== Notes ===&lt;br /&gt;
Call [[onPlayerCommand]] 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/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerCommand&amp;diff=503</id>
		<title>OnPlayerCommand</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerCommand&amp;diff=503"/>
		<updated>2014-07-26T21:04:33Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Related Events */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is called when a player uses a command.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerCommand( player, cmd, parameters )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
&lt;br /&gt;
* string &#039;&#039;&#039;player&#039;&#039;&#039; - The player that use command.&lt;br /&gt;
* string &#039;&#039;&#039;cmd&#039;&#039;&#039; - This is the command that player used.&lt;br /&gt;
* string &#039;&#039;&#039;parameters&#039;&#039;&#039; - This is the list of the parameters as a string.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
This example command heal the player if they type &#039;&#039;&#039;/heal&#039;&#039;&#039;.&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;heal&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  if ( player.Health == 100 ) PrivMessage( player, &amp;quot;You have the health to maximum.&amp;quot;);&lt;br /&gt;
  else &lt;br /&gt;
  {&lt;br /&gt;
   PrivMessage( player, &amp;quot;You healed successfully.&amp;quot;);&lt;br /&gt;
   player.Health = 100;&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;
The function [[PrivMessage]] and call [[onPlayerCommand]] were used in this example. More info about them in the 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>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/PrivMessage&amp;diff=502</id>
		<title>Scripting/Squirrel/Functions/PrivMessage</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/PrivMessage&amp;diff=502"/>
		<updated>2014-07-26T21:02:20Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a private message to the player specified.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;PrivMessage( player, message)&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;[[Scripting/Squirrel/Functions#Player Functions|Player]]&#039;&#039; &#039;&#039;&#039;player&#039;&#039;&#039; - The player to send the message to&lt;br /&gt;
* &#039;&#039;string&#039;&#039; &#039;&#039;&#039;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
The following example send a personal message saying &#039;&#039;&#039;Hey you, have fun here!&#039;&#039;&#039;:&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;SendPrivMessage&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  PrivMessage( player, &amp;quot;Hey you, have fun here!&amp;quot;);&lt;br /&gt;
 }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
=== Notes ===&lt;br /&gt;
Call [[onPlayerCommand]] 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/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/MessageAllExcept&amp;diff=501</id>
		<title>Scripting/Squirrel/Functions/MessageAllExcept</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/MessageAllExcept&amp;diff=501"/>
		<updated>2014-07-26T21:02:10Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a simple message to everyone but the player specified.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;MessageAllExcept( message, player )&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;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
* &#039;&#039;[[Scripting/Squirrel/Functions#Player Functions|Player]]&#039;&#039; &#039;&#039;&#039;player&#039;&#039;&#039; - The player not to send the message to&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
The following example message to all except yourself saying &#039;&#039;&#039;Hello all except myself, have fun here&#039;&#039;&#039;!:&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;SendMessage&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  MessageAllExcept(&amp;quot;Hello all except myself, have fun here!&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 [[onPlayerCommand]] 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/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/MessagePlayer&amp;diff=500</id>
		<title>Scripting/Squirrel/Functions/MessagePlayer</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/MessagePlayer&amp;diff=500"/>
		<updated>2014-07-26T21:01:55Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a simple message to the player specified.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;MessagePlayer( message, player )&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;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
* &#039;&#039;[[Scripting/Squirrel/Functions#Player Functions|Player]]&#039;&#039; &#039;&#039;&#039;player&#039;&#039;&#039; - The player to send the message to&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
The following example send a personal message saying &#039;&#039;&#039;Hey you, have fun here&#039;&#039;&#039;!:&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;SendMessagePlayer&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  MessagePlayer(&amp;quot;Hey you, have fun here!&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 [[onPlayerCommand]] 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/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/PrivMessageAll&amp;diff=499</id>
		<title>Scripting/Squirrel/Functions/PrivMessageAll</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/PrivMessageAll&amp;diff=499"/>
		<updated>2014-07-26T21:01:33Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a private message to everyone in the server.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;PrivMessageAll( message )&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;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
The following example send a personal message to all saying &#039;&#039;&#039;Hey you, have fun here!&#039;&#039;&#039;:&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;SendPrivMessageAll&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  PrivMessageAll(&amp;quot;Hey all, have fun here!&amp;quot;);&lt;br /&gt;
 }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
=== Notes ===&lt;br /&gt;
Call [[onPlayerCommand]] 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/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerCommand&amp;diff=498</id>
		<title>OnPlayerCommand</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerCommand&amp;diff=498"/>
		<updated>2014-07-26T21:00:59Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is called when a player uses a command.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerCommand( player, cmd, parameters )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
&lt;br /&gt;
* string &#039;&#039;&#039;player&#039;&#039;&#039; - The player that use command.&lt;br /&gt;
* string &#039;&#039;&#039;cmd&#039;&#039;&#039; - This is the command that player used.&lt;br /&gt;
* string &#039;&#039;&#039;parameters&#039;&#039;&#039; - This is the list of the parameters as a string.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
This example command heal the player if they type &#039;&#039;&#039;/heal&#039;&#039;&#039;.&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;heal&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  if ( player.Health == 100 ) PrivMessage( player, &amp;quot;You have the health to maximum.&amp;quot;);&lt;br /&gt;
  else &lt;br /&gt;
  {&lt;br /&gt;
   PrivMessage( player, &amp;quot;You healed successfully.&amp;quot;);&lt;br /&gt;
   player.Health = 100;&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;
The function [[PrivMessage]] and call [[onPlayerCommand]] were used in this example. More info about them in the corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Events ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player/onPlayerCommand}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerCommand&amp;diff=497</id>
		<title>OnPlayerCommand</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerCommand&amp;diff=497"/>
		<updated>2014-07-26T20:59:20Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is called when a player uses a command.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerCommand( player, cmd, parameters )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
&lt;br /&gt;
* string &#039;&#039;&#039;player&#039;&#039;&#039; - The player that use command.&lt;br /&gt;
* string &#039;&#039;&#039;cmd&#039;&#039;&#039; - This is the command that player used.&lt;br /&gt;
* string &#039;&#039;&#039;parameters&#039;&#039;&#039; - This is the list of the parameters as a string.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
This example command heal the player if they type &#039;&#039;&#039;/heal&#039;&#039;&#039;.&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;heal&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  if ( player.Health == 100 ) PrivMessage( player, &amp;quot;You have the health to maximum.&amp;quot;);&lt;br /&gt;
  else &lt;br /&gt;
  {&lt;br /&gt;
   PrivMessage( player, &amp;quot;You healed successfully.&amp;quot;);&lt;br /&gt;
   player.Health = 100;&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 [[onPlayerCommand]] were used in this example. More info about them in the corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Events ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player/onPlayerCommand}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerCommand&amp;diff=496</id>
		<title>OnPlayerCommand</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerCommand&amp;diff=496"/>
		<updated>2014-07-26T20:58:58Z</updated>

		<summary type="html">&lt;p&gt;Power: Created page with &amp;quot;__NOTOC__ This is called when a player uses a command.  == Syntax ==  &amp;lt;pre&amp;gt;function onPlayerCommand( player, cmd, parameters )&amp;lt;/pre&amp;gt;  == Parameters ==  * string &amp;#039;&amp;#039;&amp;#039;player&amp;#039;&amp;#039;&amp;#039; -...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is called when a player uses a command.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerCommand( player, cmd, parameters )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
&lt;br /&gt;
* string &#039;&#039;&#039;player&#039;&#039;&#039; - The player that use command.&lt;br /&gt;
* string &#039;&#039;&#039;cmd&#039;&#039;&#039; - This is the command that player used.&lt;br /&gt;
* string &#039;&#039;&#039;parameters&#039;&#039;&#039; - This is the list of the parameters as a string.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
This example command heal the player if they type &#039;&#039;&#039;/heal&#039;&#039;&#039;.&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;heal&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  if ( player.Health == 100 ) PrivMessage( player, &amp;quot;You have the health to maximum.&amp;quot;);&lt;br /&gt;
  else &lt;br /&gt;
  {&lt;br /&gt;
   PrivMessage( player, &amp;quot;You healed successfully.&amp;quot;);&lt;br /&gt;
   player.Health = 100;&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]] were used in this example. More info about them in the corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Events ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player/onPlayerCommand}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Message&amp;diff=495</id>
		<title>Scripting/Squirrel/Functions/Message</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Message&amp;diff=495"/>
		<updated>2014-07-26T20:58:19Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a simple message to everyone in the server.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;Message( message )&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;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
The following example send a message to all saying &#039;&#039;&#039;Hello, have fun here!&#039;&#039;&#039;: &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;SendMessage&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  Message(&amp;quot;Hello, have fun here!&amp;quot;);&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 [[onPlayerCommand]] 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/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/SendPlayerMessage&amp;diff=494</id>
		<title>Scripting/Squirrel/Functions/SendPlayerMessage</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/SendPlayerMessage&amp;diff=494"/>
		<updated>2014-07-26T20:56:41Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a fake private message from one player to another.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;SendPlayerMessage( playerToFake, playerTo, message )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;[[Scripting/Squirrel/Functions#Player Functions|Player]]&#039;&#039; &#039;&#039;&#039;playerToFake&#039;&#039;&#039; - The player to send the message as&lt;br /&gt;
* &#039;&#039;[[Scripting/Squirrel/Functions#Player Functions|Player]]&#039;&#039; &#039;&#039;&#039;playerTo&#039;&#039;&#039; - The player to send the message to&lt;br /&gt;
* &#039;&#039;string&#039;&#039; &#039;&#039;&#039;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
The following example send a fake message from killer to player.&lt;br /&gt;
&amp;lt;source lang=squirrel&amp;gt;&lt;br /&gt;
function onPlayerKill( killer, player, reason, bodypart );&lt;br /&gt;
{&lt;br /&gt;
  SendPlayerMessage( killer, player, &amp;quot;hahaha, begginer I killed you.&amp;quot;);&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
Call [[onPlayerKill]] 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/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/SendPlayerMessage&amp;diff=493</id>
		<title>Scripting/Squirrel/Functions/SendPlayerMessage</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/SendPlayerMessage&amp;diff=493"/>
		<updated>2014-07-26T20:55:22Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a fake private message from one player to another.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;SendPlayerMessage( playerToFake, playerTo, message )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;[[Scripting/Squirrel/Functions#Player Functions|Player]]&#039;&#039; &#039;&#039;&#039;playerToFake&#039;&#039;&#039; - The player to send the message as&lt;br /&gt;
* &#039;&#039;[[Scripting/Squirrel/Functions#Player Functions|Player]]&#039;&#039; &#039;&#039;&#039;playerTo&#039;&#039;&#039; - The player to send the message to&lt;br /&gt;
* &#039;&#039;string&#039;&#039; &#039;&#039;&#039;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
The following example send a fake message from killer to player.&lt;br /&gt;
&amp;lt;source lang=squirrel&amp;gt;&lt;br /&gt;
function onPlayerKill( killer, player, reason, bodypart );&lt;br /&gt;
{&lt;br /&gt;
  SendPlayerMessage( killer, player, &amp;quot;hahaha, begginer I killed you.&amp;quot;);&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 Events/onPlayerKill|onPlayerKill]] 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/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/SendPlayerMessage&amp;diff=492</id>
		<title>Scripting/Squirrel/Functions/SendPlayerMessage</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/SendPlayerMessage&amp;diff=492"/>
		<updated>2014-07-26T20:53:59Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a fake private message from one player to another.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;SendPlayerMessage( playerToFake, playerTo, message )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;[[Scripting/Squirrel/Functions#Player Functions|Player]]&#039;&#039; &#039;&#039;&#039;playerToFake&#039;&#039;&#039; - The player to send the message as&lt;br /&gt;
* &#039;&#039;[[Scripting/Squirrel/Functions#Player Functions|Player]]&#039;&#039; &#039;&#039;&#039;playerTo&#039;&#039;&#039; - The player to send the message to&lt;br /&gt;
* &#039;&#039;string&#039;&#039; &#039;&#039;&#039;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
The following example send a fake message from killer to player.&lt;br /&gt;
&amp;lt;source lang=squirrel&amp;gt;&lt;br /&gt;
function onPlayerKill( killer, player, reason, bodypart );&lt;br /&gt;
{&lt;br /&gt;
  SendPlayerMessage( killer, player, &amp;quot;hahaha, begginer I killed you.&amp;quot;);&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/onPlayerKill|onPlayerKill]] 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/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events/Player/onPlayerCommand&amp;diff=307</id>
		<title>Scripting/Squirrel/Events/Player/onPlayerCommand</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events/Player/onPlayerCommand&amp;diff=307"/>
		<updated>2014-07-24T09:17:17Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is called when a player uses a command.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerCommand( player, cmd, parameters )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
&lt;br /&gt;
* string &#039;&#039;&#039;player&#039;&#039;&#039; - The player that use command.&lt;br /&gt;
* string &#039;&#039;&#039;cmd&#039;&#039;&#039; - This is the command that player used.&lt;br /&gt;
* string &#039;&#039;&#039;parameters&#039;&#039;&#039; - This is the list of the parameters as a string.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
This example command heal the player if they type &#039;&#039;&#039;/heal&#039;&#039;&#039;.&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;heal&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  if ( player.Health == 100 ) PrivMessage( player, &amp;quot;You have the health to maximum.&amp;quot;);&lt;br /&gt;
  else &lt;br /&gt;
  {&lt;br /&gt;
   PrivMessage( player, &amp;quot;You healed successfully.&amp;quot;);&lt;br /&gt;
   player.Health = 100;&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]] were used in this example. More info about them in the corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Events ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player/onPlayerCommand}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events/Player/onPlayerCommand&amp;diff=306</id>
		<title>Scripting/Squirrel/Events/Player/onPlayerCommand</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events/Player/onPlayerCommand&amp;diff=306"/>
		<updated>2014-07-24T09:17:00Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is called when a player uses a command.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerCommand( player, cmd, parameters )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
&lt;br /&gt;
* string &#039;&#039;&#039;player&#039;&#039;&#039; - The player that use command.&lt;br /&gt;
* string &#039;&#039;&#039;cmd&#039;&#039;&#039; - This is the command that player used.&lt;br /&gt;
* string &#039;&#039;&#039;parameters&#039;&#039;&#039; - This is the list of the parameters as a string.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
This example command heal the player if they type &#039;&#039;&#039;/heal&#039;&#039;&#039;.&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;heal&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  if ( player.Health == 100 ) PrivMessage( player, &amp;quot;You have the health to maximum.&amp;quot;);&lt;br /&gt;
  else &lt;br /&gt;
  {&lt;br /&gt;
   PrivMessage( player, &amp;quot;You healed successfully.&amp;quot;);&lt;br /&gt;
   player.Health = 100;&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]]] were used in this example. More info about them in the corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Events ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player/onPlayerCommand}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events/Player/onPlayerCommand&amp;diff=305</id>
		<title>Scripting/Squirrel/Events/Player/onPlayerCommand</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events/Player/onPlayerCommand&amp;diff=305"/>
		<updated>2014-07-24T09:12:28Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Related Events */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is called when a player uses a command.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerCommand( player, cmd, parameters )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
&lt;br /&gt;
* string &#039;&#039;&#039;player&#039;&#039;&#039; - The player that use command.&lt;br /&gt;
* string &#039;&#039;&#039;cmd&#039;&#039;&#039; - This is the command that player used.&lt;br /&gt;
* string &#039;&#039;&#039;parameters&#039;&#039;&#039; - This is the list of the parameters as a string.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
This example command heal the player if they type &#039;&#039;&#039;/heal&#039;&#039;&#039;.&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;heal&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  if ( player.Health == 100 ) PrivMessage( player, &amp;quot;You have the health to maximum.&amp;quot;);&lt;br /&gt;
  else &lt;br /&gt;
  {&lt;br /&gt;
   PrivMessage( player, &amp;quot;You healed successfully.&amp;quot;);&lt;br /&gt;
   player.Health = 100;&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]] were used in this example. More info about them in the corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Events ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/Player/onPlayerCommand}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events/Player/onPlayerCommand&amp;diff=304</id>
		<title>Scripting/Squirrel/Events/Player/onPlayerCommand</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events/Player/onPlayerCommand&amp;diff=304"/>
		<updated>2014-07-24T09:11:54Z</updated>

		<summary type="html">&lt;p&gt;Power: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is called when a player uses a command.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerCommand( player, cmd, parameters )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
&lt;br /&gt;
* string &#039;&#039;&#039;player&#039;&#039;&#039; - The player that use command.&lt;br /&gt;
* string &#039;&#039;&#039;cmd&#039;&#039;&#039; - This is the command that player used.&lt;br /&gt;
* string &#039;&#039;&#039;parameters&#039;&#039;&#039; - This is the list of the parameters as a string.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
This example command heal the player if they type &#039;&#039;&#039;/heal&#039;&#039;&#039;.&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;heal&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  if ( player.Health == 100 ) PrivMessage( player, &amp;quot;You have the health to maximum.&amp;quot;);&lt;br /&gt;
  else &lt;br /&gt;
  {&lt;br /&gt;
   PrivMessage( player, &amp;quot;You healed successfully.&amp;quot;);&lt;br /&gt;
   player.Health = 100;&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]] were used in this example. More info about them in the corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Events ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Events/onPlayerCommand}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events/Player/onPlayerCommand&amp;diff=303</id>
		<title>Scripting/Squirrel/Events/Player/onPlayerCommand</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Events/Player/onPlayerCommand&amp;diff=303"/>
		<updated>2014-07-24T09:09:14Z</updated>

		<summary type="html">&lt;p&gt;Power: Created page with &amp;quot;__NOTOC__ This is called when a player uses a command.  == Syntax ==  &amp;lt;pre&amp;gt;function onPlayerCommand( player, cmd, parameters )&amp;lt;/pre&amp;gt;  == Parameters ==  * string &amp;#039;&amp;#039;&amp;#039;player&amp;#039;&amp;#039;&amp;#039; -...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is called when a player uses a command.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;function onPlayerCommand( player, cmd, parameters )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
&lt;br /&gt;
* string &#039;&#039;&#039;player&#039;&#039;&#039; - The pointer of the player.&lt;br /&gt;
* string &#039;&#039;&#039;cmd&#039;&#039;&#039; - This is the command player used.&lt;br /&gt;
* string &#039;&#039;&#039;parameters&#039;&#039;&#039; - This is the list of the parameters as a string.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
This example command heal the player if they type &#039;&#039;&#039;/heal&#039;&#039;&#039;.&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;heal&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  if ( player.Health == 100 ) PrivMessage( player, &amp;quot;You have the health to maximum.&amp;quot;);&lt;br /&gt;
  else &lt;br /&gt;
  {&lt;br /&gt;
   PrivMessage( player, &amp;quot;You healed successfully.&amp;quot;);&lt;br /&gt;
   player.Health = 100;&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]] were used in this example. More info about them in the corresponding pages.&lt;br /&gt;
&lt;br /&gt;
== Related Events ==&lt;br /&gt;
&lt;br /&gt;
{{Squirrel/Events/Player}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/ReloadScripts&amp;diff=302</id>
		<title>Scripting/Squirrel/Functions/ReloadScripts</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/ReloadScripts&amp;diff=302"/>
		<updated>2014-07-24T08:53:49Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will reload the scripts.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ReloadScripts()&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;N/A&#039;&#039;&#039;&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;
{&lt;br /&gt;
 if ( cmd == &amp;quot;reload&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  ReloadScripts();&lt;br /&gt;
 }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;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;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Functions/Server_Settings}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/ReloadScripts&amp;diff=301</id>
		<title>Scripting/Squirrel/Functions/ReloadScripts</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/ReloadScripts&amp;diff=301"/>
		<updated>2014-07-24T08:53:36Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will reload the scripts.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ReloadScripts()&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;N/A&#039;&#039;&#039;&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;
{&lt;br /&gt;
 if ( cmd == &amp;quot;reload&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  ReloadScripts();&lt;br /&gt;
 }&lt;br /&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;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Functions/Server_Settings}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/MessageAllExcept&amp;diff=300</id>
		<title>Scripting/Squirrel/Functions/MessageAllExcept</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/MessageAllExcept&amp;diff=300"/>
		<updated>2014-07-24T07:54:32Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a simple message to everyone but the player specified.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;MessageAllExcept( message, player )&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;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
* &#039;&#039;[[Scripting/Squirrel/Functions#Player Functions|Player]]&#039;&#039; &#039;&#039;&#039;player&#039;&#039;&#039; - The player not to send the message to&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
The following example message to all except yourself saying &#039;&#039;&#039;Hello all except myself, have fun here&#039;&#039;&#039;!:&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;SendMessage&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  MessageAllExcept(&amp;quot;Hello all except myself, have fun here!&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;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Functions/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/PrivMessageAll&amp;diff=299</id>
		<title>Scripting/Squirrel/Functions/PrivMessageAll</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/PrivMessageAll&amp;diff=299"/>
		<updated>2014-07-24T07:51:18Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a private message to everyone in the server.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;PrivMessageAll( message )&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;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
The following example send a personal message to all saying &#039;&#039;&#039;Hey you, have fun here!&#039;&#039;&#039;:&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;SendPrivMessageAll&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  PrivMessageAll(&amp;quot;Hey all, have fun here!&amp;quot;);&lt;br /&gt;
 }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;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;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Functions/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/PrivMessage&amp;diff=298</id>
		<title>Scripting/Squirrel/Functions/PrivMessage</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/PrivMessage&amp;diff=298"/>
		<updated>2014-07-24T07:49:44Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a private message to the player specified.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;PrivMessage( player, message)&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;[[Scripting/Squirrel/Functions#Player Functions|Player]]&#039;&#039; &#039;&#039;&#039;player&#039;&#039;&#039; - The player to send the message to&lt;br /&gt;
* &#039;&#039;string&#039;&#039; &#039;&#039;&#039;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
The following example send a personal message saying &#039;&#039;&#039;Hey you, have fun here!&#039;&#039;&#039;:&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;SendPrivMessage&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  PrivMessage( player, &amp;quot;Hey you, have fun here!&amp;quot;);&lt;br /&gt;
 }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;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;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Functions/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/PrivMessage&amp;diff=297</id>
		<title>Scripting/Squirrel/Functions/PrivMessage</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/PrivMessage&amp;diff=297"/>
		<updated>2014-07-24T07:49:15Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a private message to the player specified.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;PrivMessage( player, message)&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;[[Scripting/Squirrel/Functions#Player Functions|Player]]&#039;&#039; &#039;&#039;&#039;player&#039;&#039;&#039; - The player to send the message to&lt;br /&gt;
* &#039;&#039;string&#039;&#039; &#039;&#039;&#039;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
The following example send a personal message saying &#039;&#039;&#039;Hey you, have fun here!&#039;&#039;&#039;:&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;SendMessagePlayer&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  PrivMessage( player, &amp;quot;Hey you, have fun here!&amp;quot;);&lt;br /&gt;
 }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;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;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Functions/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/PrivMessage&amp;diff=296</id>
		<title>Scripting/Squirrel/Functions/PrivMessage</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/PrivMessage&amp;diff=296"/>
		<updated>2014-07-24T07:48:08Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a private message to the player specified.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;PrivMessage( player, message)&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;[[Scripting/Squirrel/Functions#Player Functions|Player]]&#039;&#039; &#039;&#039;&#039;player&#039;&#039;&#039; - The player to send the message to&lt;br /&gt;
* &#039;&#039;string&#039;&#039; &#039;&#039;&#039;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
The following example send a personal message saying &#039;&#039;&#039;Hey you, have fun here!&#039;&#039;&#039;:&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;SendMessagePlayer&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  PrivMessage( player, &amp;quot;Hey you, have fun here!&amp;quot;);&lt;br /&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;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Functions/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/MessageAllExcept&amp;diff=295</id>
		<title>Scripting/Squirrel/Functions/MessageAllExcept</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/MessageAllExcept&amp;diff=295"/>
		<updated>2014-07-24T07:45:51Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a simple message to everyone but the player specified.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;MessageAllExcept( message, player )&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;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
* &#039;&#039;[[Scripting/Squirrel/Functions#Player Functions|Player]]&#039;&#039; &#039;&#039;&#039;player&#039;&#039;&#039; - The player not to send the message to&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
The following example message to all except you saying &#039;&#039;&#039;Hello all except myself, have fun here&#039;&#039;&#039;!:&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;SendMessage&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  MessageAllExcept(&amp;quot;Hello all except myself, have fun here!&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;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Functions/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/MessagePlayer&amp;diff=294</id>
		<title>Scripting/Squirrel/Functions/MessagePlayer</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/MessagePlayer&amp;diff=294"/>
		<updated>2014-07-24T07:43:45Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a simple message to the player specified.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;MessagePlayer( message, player )&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;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
* &#039;&#039;[[Scripting/Squirrel/Functions#Player Functions|Player]]&#039;&#039; &#039;&#039;&#039;player&#039;&#039;&#039; - The player to send the message to&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
The following example send a personal message saying &#039;&#039;&#039;Hey you, have fun here&#039;&#039;&#039;!:&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;SendMessagePlayer&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  MessagePlayer(&amp;quot;Hey you, have fun here!&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;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Functions/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/MessagePlayer&amp;diff=293</id>
		<title>Scripting/Squirrel/Functions/MessagePlayer</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/MessagePlayer&amp;diff=293"/>
		<updated>2014-07-24T07:43:26Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a simple message to the player specified.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;MessagePlayer( message, player )&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;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
* &#039;&#039;[[Scripting/Squirrel/Functions#Player Functions|Player]]&#039;&#039; &#039;&#039;&#039;player&#039;&#039;&#039; - The player to send the message to&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
The following example send a personal message saying Hey you, have fun here!:&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;SendMessagePlayer&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  MessagePlayer(&amp;quot;Hey you, have fun here!&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;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Functions/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Message&amp;diff=292</id>
		<title>Scripting/Squirrel/Functions/Message</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Message&amp;diff=292"/>
		<updated>2014-07-24T07:41:02Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a simple message to everyone in the server.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;Message( message )&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;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
The following example send a message to all saying &#039;&#039;&#039;Hello, have fun here!&#039;&#039;&#039;: &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;SendMessage&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  Message(&amp;quot;Hello, have fun here!&amp;quot;);&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;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Functions/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Message&amp;diff=291</id>
		<title>Scripting/Squirrel/Functions/Message</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Message&amp;diff=291"/>
		<updated>2014-07-24T07:40:27Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a simple message to everyone in the server.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;Message( message )&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;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
The following example send a message saying &#039;&#039;&#039;Hello, have fun here!&#039;&#039;&#039;: &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;SendMessage&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  Message(&amp;quot;Hello, have fun here!&amp;quot;);&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;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Functions/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/MessagePlayer&amp;diff=290</id>
		<title>Scripting/Squirrel/Functions/MessagePlayer</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/MessagePlayer&amp;diff=290"/>
		<updated>2014-07-24T07:32:51Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a simple message to the player specified.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;MessagePlayer( message, player )&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;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
* &#039;&#039;[[Scripting/Squirrel/Functions#Player Functions|Player]]&#039;&#039; &#039;&#039;&#039;player&#039;&#039;&#039; - The player to send the message to&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;SendMessagePlayer&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  MessagePlayer(&amp;quot;Hey you, have fun here!&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;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Functions/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/MessagePlayer&amp;diff=289</id>
		<title>Scripting/Squirrel/Functions/MessagePlayer</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/MessagePlayer&amp;diff=289"/>
		<updated>2014-07-24T07:32:33Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a simple message to the player specified.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;MessagePlayer( message, player )&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;message&#039;&#039;&#039; - The message to send&lt;br /&gt;
* &#039;&#039;[[Scripting/Squirrel/Functions#Player Functions|Player]]&#039;&#039; &#039;&#039;&#039;player&#039;&#039;&#039; - The player to send the message to&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;SendMessage&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  MessagePlayer(&amp;quot;Hey you, have fun here!&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;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Functions/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Message&amp;diff=288</id>
		<title>Scripting/Squirrel/Functions/Message</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Message&amp;diff=288"/>
		<updated>2014-07-24T07:28:34Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a simple message to everyone in the server.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;Message( message )&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;message&#039;&#039;&#039; - The message to send&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;SendMessage&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  Message(&amp;quot;Hello, have fun here!&amp;quot;);&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;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Functions/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Message&amp;diff=287</id>
		<title>Scripting/Squirrel/Functions/Message</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Message&amp;diff=287"/>
		<updated>2014-07-24T07:27:45Z</updated>

		<summary type="html">&lt;p&gt;Power: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will send a simple message to everyone in the server.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;Message( message )&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;message&#039;&#039;&#039; - The message to send&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;SendMessage&amp;quot; )&lt;br /&gt;
 {&lt;br /&gt;
  Message(&amp;quot;Hello, have fun.&amp;quot;);&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;br /&gt;
&lt;br /&gt;
== Related Functions ==&lt;br /&gt;
&lt;br /&gt;
{{Scripting/Squirrel/Functions/Messages}}&lt;/div&gt;</summary>
		<author><name>Power</name></author>
	</entry>
</feed>