<?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=Kewun</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=Kewun"/>
	<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/wiki/Special:Contributions/Kewun"/>
	<updated>2026-05-19T07:57:30Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnObjectBump&amp;diff=19504</id>
		<title>OnObjectBump</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnObjectBump&amp;diff=19504"/>
		<updated>2016-11-17T08:43:50Z</updated>

		<summary type="html">&lt;p&gt;Kewun: Created page with &amp;quot;&amp;lt;code&amp;gt; function onObjectBump(object,player) {    MessagePlayer(&amp;quot;You&amp;#039;ve bumped in to object id: &amp;quot;+object,player) } &amp;lt;/code&amp;gt;  This example will message player when he touches a o...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;code&amp;gt;&lt;br /&gt;
function onObjectBump(object,player) {&lt;br /&gt;
   MessagePlayer(&amp;quot;You&#039;ve bumped in to object id: &amp;quot;+object,player)&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This example will message player when he touches a object.TrackingBumps&lt;/div&gt;</summary>
		<author><name>Kewun</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnVehicleHealthChange&amp;diff=19503</id>
		<title>OnVehicleHealthChange</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnVehicleHealthChange&amp;diff=19503"/>
		<updated>2016-11-17T08:41:13Z</updated>

		<summary type="html">&lt;p&gt;Kewun: Created page with &amp;quot;function OnVehicleHealthChange( vehicle, oldHP, newHP ) {    Message(&amp;quot;Vehicle: &amp;quot;+vehicle+&amp;quot;&amp;#039;s health has been changed to &amp;quot;+newHP+&amp;quot; from &amp;quot;+oldHP) }  This will output a message w...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;function OnVehicleHealthChange( vehicle, oldHP, newHP )&lt;br /&gt;
{&lt;br /&gt;
   Message(&amp;quot;Vehicle: &amp;quot;+vehicle+&amp;quot;&#039;s health has been changed to &amp;quot;+newHP+&amp;quot; from &amp;quot;+oldHP)&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
This will output a message when a vehicle&#039;s health changed&lt;/div&gt;</summary>
		<author><name>Kewun</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnObjectShot&amp;diff=19502</id>
		<title>OnObjectShot</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnObjectShot&amp;diff=19502"/>
		<updated>2016-11-17T08:39:40Z</updated>

		<summary type="html">&lt;p&gt;Kewun: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;function onObjectShot(object,player,weapon ) {&lt;br /&gt;
   MessagePlayer(&amp;quot;You&#039;ve shot object id &amp;quot;+object+&amp;quot; with weapon id &amp;quot;+weapon,player)&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will Message the player which shotted a object which tracks shots and sends him information about it&lt;/div&gt;</summary>
		<author><name>Kewun</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnObjectShot&amp;diff=19501</id>
		<title>OnObjectShot</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnObjectShot&amp;diff=19501"/>
		<updated>2016-11-17T08:38:55Z</updated>

		<summary type="html">&lt;p&gt;Kewun: Created page with &amp;quot;[code] function onObjectShot( object, player, weapon ) {    MessagePlayer(&amp;quot;You&amp;#039;ve shot object id &amp;quot;+object+&amp;quot; with weapon id &amp;quot;+weapon,player) } [/code]    This will Message the...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[code]&lt;br /&gt;
function onObjectShot( object, player, weapon ) {&lt;br /&gt;
   MessagePlayer(&amp;quot;You&#039;ve shot object id &amp;quot;+object+&amp;quot; with weapon id &amp;quot;+weapon,player)&lt;br /&gt;
}&lt;br /&gt;
[/code]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will Message the player which shotted a object which tracks shots and sends him information about it&lt;/div&gt;</summary>
		<author><name>Kewun</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=OnPlayerOnFireChange&amp;diff=19500</id>
		<title>OnPlayerOnFireChange</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=OnPlayerOnFireChange&amp;diff=19500"/>
		<updated>2016-11-17T08:36:35Z</updated>

		<summary type="html">&lt;p&gt;Kewun: Created page with &amp;quot;function onPlayerOnFireChange( player, isOnFireNow ) {         MessagePlayer(&amp;quot;Your burn status: &amp;quot;+isOnFireNow,player) }   This will message the player, when he is burning or n...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;function onPlayerOnFireChange( player, isOnFireNow )&lt;br /&gt;
{&lt;br /&gt;
        MessagePlayer(&amp;quot;Your burn status: &amp;quot;+isOnFireNow,player)&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will message the player, when he is burning or not burning&lt;/div&gt;</summary>
		<author><name>Kewun</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Client_Functions/Console::Print&amp;diff=19354</id>
		<title>Scripting/Squirrel/Client Functions/Console::Print</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Client_Functions/Console::Print&amp;diff=19354"/>
		<updated>2016-07-06T18:08:15Z</updated>

		<summary type="html">&lt;p&gt;Kewun: This example prins &amp;quot;Script unloaded&amp;quot; when scripts have unloaded.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[code]function Script::ScriptUnload()&lt;br /&gt;
{&lt;br /&gt;
    PrintTheDrop()&lt;br /&gt;
}&lt;br /&gt;
function PrintTheDrop()&lt;br /&gt;
{&lt;br /&gt;
    Console.Print(&amp;quot;Script unloaded!&amp;quot;) //console::print&lt;br /&gt;
}[/code]&lt;/div&gt;</summary>
		<author><name>Kewun</name></author>
	</entry>
	<entry>
		<id>http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Client_Functions/Console::Print&amp;diff=19353</id>
		<title>Scripting/Squirrel/Client Functions/Console::Print</title>
		<link rel="alternate" type="text/html" href="http://wiki.vc-mp.org/index.php?title=Scripting/Squirrel/Client_Functions/Console::Print&amp;diff=19353"/>
		<updated>2016-07-06T18:07:11Z</updated>

		<summary type="html">&lt;p&gt;Kewun: This example prins &amp;quot;Script unloaded&amp;quot; when scripts have unloaded.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;function Script::ScriptUnload()&lt;br /&gt;
{&lt;br /&gt;
    PrintTheDrop()&lt;br /&gt;
}&lt;br /&gt;
function PrintTheDrop()&lt;br /&gt;
{&lt;br /&gt;
    Console.Print(&amp;quot;Script unloaded!&amp;quot;) //console::print&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Kewun</name></author>
	</entry>
</feed>