<?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=KingOfVC</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=KingOfVC"/>
	<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/wiki/Special:Contributions/KingOfVC"/>
	<updated>2026-04-10T15:29:39Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnSphereEntered&amp;diff=18874</id>
		<title>OnSphereEntered</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnSphereEntered&amp;diff=18874"/>
		<updated>2016-03-09T10:17:18Z</updated>

		<summary type="html">&lt;p&gt;KingOfVC: Created page with &amp;quot;This is called when a player enters any sphere.  == Syntax == function OnSphereEntered( player, sphere )  == Example ==  &amp;lt;source lang=&amp;quot;squirrel&amp;quot;&amp;gt; function OnSphereEntered( pla...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is called when a player enters any sphere.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
function OnSphereEntered( player, sphere )&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 OnSphereEntered( player, sphere )&lt;br /&gt;
{&lt;br /&gt;
   MessagePlayer(&amp;quot;You&#039;re entered a sphere! ID &amp;quot; + sphere.ID , player );&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>KingOfVC</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/GetWallglitch&amp;diff=18852</id>
		<title>Scripting/Squirrel/Functions/GetWallglitch</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/GetWallglitch&amp;diff=18852"/>
		<updated>2016-03-09T08:49:52Z</updated>

		<summary type="html">&lt;p&gt;KingOfVC: Created page with &amp;quot;This function will return the status of wall glitch  == Syntax == GetWallglitch()  == Return value == &amp;#039;&amp;#039;&amp;#039;true&amp;#039;&amp;#039;&amp;#039; or &amp;#039;&amp;#039;&amp;#039;false&amp;#039;&amp;#039;&amp;#039;  == Example == &amp;lt;source lang=squirrel&amp;gt; function...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will return the status of wall glitch&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
GetWallglitch()&lt;br /&gt;
&lt;br /&gt;
== Return value ==&lt;br /&gt;
&#039;&#039;&#039;true&#039;&#039;&#039; or &#039;&#039;&#039;false&#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, arr )&lt;br /&gt;
{&lt;br /&gt;
   if( cmd == &amp;quot;wallglitch&amp;quot; )&lt;br /&gt;
   {&lt;br /&gt;
      if( GetWallglitch() ) MessagePlayer(&amp;quot;Wall glitch is enable on this server.&amp;quot;, player );&lt;br /&gt;
	  else MessagePlayer(&amp;quot;Wall glitch is disable on this server.&amp;quot;, player );&lt;br /&gt;
   }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>KingOfVC</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/SetWallglitch&amp;diff=18851</id>
		<title>Scripting/Squirrel/Functions/SetWallglitch</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/SetWallglitch&amp;diff=18851"/>
		<updated>2016-03-09T08:42:33Z</updated>

		<summary type="html">&lt;p&gt;KingOfVC: Created page with &amp;quot;This will enable/disable wall glitch   == Syntax ==  &amp;lt;pre&amp;gt;SetWallglitch( toggle )&amp;lt;/pre&amp;gt;  == Arguments == toggle - &amp;#039;&amp;#039;&amp;#039;true&amp;#039;&amp;#039;&amp;#039; or &amp;#039;&amp;#039;&amp;#039;false&amp;#039;&amp;#039;&amp;#039;  == Example == &amp;lt;source lang=squirre...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This will enable/disable wall glitch&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;SetWallglitch( toggle )&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arguments ==&lt;br /&gt;
toggle - &#039;&#039;&#039;true&#039;&#039;&#039; or &#039;&#039;&#039;false&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;source lang=squirrel&amp;gt;&lt;br /&gt;
function onScriptLoad()&lt;br /&gt;
{&lt;br /&gt;
  SetWallglitch( true );&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>KingOfVC</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Player.Away&amp;diff=18850</id>
		<title>Scripting/Squirrel/Functions/Player.Away</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Functions/Player.Away&amp;diff=18850"/>
		<updated>2016-03-09T08:31:28Z</updated>

		<summary type="html">&lt;p&gt;KingOfVC: Created page with &amp;quot;This function will show AFK( Away From Keboard ) player.   == Syntax ==  &amp;lt;pre&amp;gt;player.Away&amp;lt;/pre&amp;gt;  == Example ==  &amp;lt;source lang=squirrel&amp;gt; function onPlayerCommand( player, cmd, a...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function will show AFK( Away From Keboard ) player.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;player.Away&amp;lt;/pre&amp;gt;&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, arr )&lt;br /&gt;
{&lt;br /&gt;
  if ( cmd == &amp;quot;away&amp;quot; )&lt;br /&gt;
  {&lt;br /&gt;
    if ( !arr ) MessagePlayer(&amp;quot;Syntax: /away &amp;lt;player&amp;gt;&amp;quot;,player );&lt;br /&gt;
	else&lt;br /&gt;
	{&lt;br /&gt;
	  if ( !FindPlayer( arr ) ) MessagePlayer(&amp;quot;Unknown player.&amp;quot;,player);&lt;br /&gt;
	  else&lt;br /&gt;
	  {&lt;br /&gt;
	    if( player.Away ) MessagePlayer( &amp;quot;This player is currently AFK.&amp;quot;, player );&lt;br /&gt;
		else MessagePlayer( &amp;quot;This player is currently active.&amp;quot;, player );&lt;br /&gt;
	  }&lt;br /&gt;
	}&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>KingOfVC</name></author>
	</entry>
</feed>