<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.rage.mp/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Moguchiy</id>
	<title>RAGE Multiplayer Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.rage.mp/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Moguchiy"/>
	<link rel="alternate" type="text/html" href="https://wiki.rage.mp/wiki/Special:Contributions/Moguchiy"/>
	<updated>2026-06-23T17:43:29Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.40.0</generator>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=PlayerRemoveWaypoint&amp;diff=20543</id>
		<title>PlayerRemoveWaypoint</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=PlayerRemoveWaypoint&amp;diff=20543"/>
		<updated>2021-02-18T18:51:33Z</updated>

		<summary type="html">&lt;p&gt;Moguchiy: Created page with &amp;quot;{{ClientsideCsJsEvent}} Triggered when a player removes a waypoint from the map.  {{CSharpContainer| &amp;lt;syntaxhighlight lang=&amp;quot;c#&amp;quot;&amp;gt; public delegate void OnPlayerRemoveWaypointDel...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ClientsideCsJsEvent}}&lt;br /&gt;
Triggered when a player removes a waypoint from the map.&lt;br /&gt;
&lt;br /&gt;
{{CSharpContainer|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c#&amp;quot;&amp;gt;&lt;br /&gt;
public delegate void OnPlayerRemoveWaypointDelegate();&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Example}}&lt;br /&gt;
The example below shows up a message for a player when waypoint is removed.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c#&amp;quot;&amp;gt;&lt;br /&gt;
RAGE.Events.OnPlayerRemoveWaypoint += OnWaypointRemoved;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c#&amp;quot;&amp;gt;&lt;br /&gt;
public void OnWaypointRemoved()&lt;br /&gt;
{&lt;br /&gt;
    RAGE.Chat.Output($&amp;quot;You have just removed the waypoint&amp;quot;);&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{JSContainer|&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
{{ClientsideCode|&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mp.events.add(&amp;quot;playerRemoveWaypoint&amp;quot;, () =&amp;gt; {&lt;br /&gt;
    mp.console.logInfo(`Waypoint removed`);&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
{{Player_events_clientside}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Waypoint]]&lt;br /&gt;
[[Category:Clientside API]]&lt;br /&gt;
[[Category:Client-side Event]]&lt;/div&gt;</summary>
		<author><name>Moguchiy</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=PlayerCreateWaypoint&amp;diff=20542</id>
		<title>PlayerCreateWaypoint</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=PlayerCreateWaypoint&amp;diff=20542"/>
		<updated>2021-02-18T18:49:43Z</updated>

		<summary type="html">&lt;p&gt;Moguchiy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ClientsideCsJsEvent}}&lt;br /&gt;
Triggered when a player creates a waypoint on the map.&lt;br /&gt;
&lt;br /&gt;
{{CSharpContainer|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c#&amp;quot;&amp;gt;&lt;br /&gt;
public delegate void OnPlayerCreateWaypointDelegate(Vector3 position);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Parameters}}&lt;br /&gt;
* &#039;&#039;&#039;position&#039;&#039;&#039;: Position of created waypoint.&lt;br /&gt;
&lt;br /&gt;
{{Example}}&lt;br /&gt;
The example below shows up a message for a player when waypoint is set and sends the coordinates.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c#&amp;quot;&amp;gt;&lt;br /&gt;
RAGE.Events.OnPlayerCreateWaypoint += OnWaypointCreated;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c#&amp;quot;&amp;gt;&lt;br /&gt;
public void OnWaypointCreated(Vector3 position)&lt;br /&gt;
{&lt;br /&gt;
    RAGE.Chat.Output($&amp;quot;You have just created a waypoint with coords: {position}&amp;quot;);&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{JSContainer|&lt;br /&gt;
=== Parameters ===&lt;br /&gt;
* &#039;&#039;&#039;position&#039;&#039;&#039;: {{RageType|Vector3}}&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
{{ClientsideCode|&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mp.events.add(&amp;quot;playerCreateWaypoint&amp;quot;, (position) =&amp;gt; {&lt;br /&gt;
    mp.console.logInfo(`New waypoint created at: ${position.x}, ${position.y}, ${position.z}`);&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
{{Player_events_clientside}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Waypoint]]&lt;br /&gt;
[[Category:Clientside API]]&lt;br /&gt;
[[Category:Client-side Event]]&lt;/div&gt;</summary>
		<author><name>Moguchiy</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=OutgoingDamage&amp;diff=20541</id>
		<title>OutgoingDamage</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=OutgoingDamage&amp;diff=20541"/>
		<updated>2021-02-18T18:37:14Z</updated>

		<summary type="html">&lt;p&gt;Moguchiy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ClientsideCsJsEvent}}&lt;br /&gt;
&lt;br /&gt;
Triggered upon damage that an entity is about to give another entity.&lt;br /&gt;
&lt;br /&gt;
This event is also cancellable.&lt;br /&gt;
&lt;br /&gt;
{{JSContainer|&lt;br /&gt;
=== Parameters ===&lt;br /&gt;
*&#039;&#039;&#039;sourceEntity&#039;&#039;&#039;: {{RageType|Object}}&lt;br /&gt;
*&#039;&#039;&#039;targetEntity&#039;&#039;&#039;: {{RageType|Object}}&lt;br /&gt;
*&#039;&#039;&#039;targetPlayer&#039;&#039;&#039;: {{RageType|Object}}&lt;br /&gt;
*&#039;&#039;&#039;weapon&#039;&#039;&#039;: {{RageType|Int}}&lt;br /&gt;
*&#039;&#039;&#039;boneIndex&#039;&#039;&#039;: {{RageType|Int}}&lt;br /&gt;
*&#039;&#039;&#039;damage&#039;&#039;&#039;: {{RageType|Int}}&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
{{ClientsideCode|&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mp.events.add(&#039;outcomingDamage&#039;, (sourceEntity, targetEntity, targetPlayer, weapon, boneIndex, damage) =&amp;gt; {&lt;br /&gt;
    // code&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
{{Player_events_clientside}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Clientside API]]&lt;br /&gt;
[[Category:Client-side Event]]&lt;/div&gt;</summary>
		<author><name>Moguchiy</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=IncomingDamage&amp;diff=20540</id>
		<title>IncomingDamage</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=IncomingDamage&amp;diff=20540"/>
		<updated>2021-02-18T18:36:09Z</updated>

		<summary type="html">&lt;p&gt;Moguchiy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ClientsideCsJsEvent}}&lt;br /&gt;
&lt;br /&gt;
[1.1]&lt;br /&gt;
&lt;br /&gt;
Triggered upon damage that is about to be given to the player.&lt;br /&gt;
&lt;br /&gt;
This event is also cancellable.&lt;br /&gt;
&lt;br /&gt;
{{JSContainer|&lt;br /&gt;
=== Parameters ===&lt;br /&gt;
*&#039;&#039;&#039;sourceEntity&#039;&#039;&#039;: {{RageType|Object}}&lt;br /&gt;
*&#039;&#039;&#039;sourcePlayer&#039;&#039;&#039;: {{RageType|Object}}&lt;br /&gt;
*&#039;&#039;&#039;targetEntity&#039;&#039;&#039;: {{RageType|Object}}&lt;br /&gt;
*&#039;&#039;&#039;weapon&#039;&#039;&#039;: {{RageType|Int}}&lt;br /&gt;
*&#039;&#039;&#039;boneIndex&#039;&#039;&#039;: {{RageType|Int}}&lt;br /&gt;
*&#039;&#039;&#039;damage&#039;&#039;&#039;: {{RageType|Int}}&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mp.events.add(&#039;incomingDamage&#039;, (sourceEntity, sourcePlayer, targetEntity, weapon, boneIndex, damage) =&amp;gt; {&lt;br /&gt;
    // code&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
{{Player_events_clientside}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Clientside API]]&lt;br /&gt;
[[Category:Client-side Event]]&lt;/div&gt;</summary>
		<author><name>Moguchiy</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=IncomingDamage&amp;diff=20539</id>
		<title>IncomingDamage</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=IncomingDamage&amp;diff=20539"/>
		<updated>2021-02-18T18:35:05Z</updated>

		<summary type="html">&lt;p&gt;Moguchiy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ClientsideCsJsEvent}}&lt;br /&gt;
&lt;br /&gt;
[1.1]&lt;br /&gt;
&lt;br /&gt;
Triggered upon damage that is about to be given to the player.&lt;br /&gt;
&lt;br /&gt;
This event is also cancellable.&lt;br /&gt;
&lt;br /&gt;
{{JSContainer|&lt;br /&gt;
=== Parameters ===&lt;br /&gt;
*&#039;&#039;&#039;sourceEntity&#039;&#039;&#039;: {{RageType|Object}}&lt;br /&gt;
*&#039;&#039;&#039;sourcePlayer&#039;&#039;&#039;: {{RageType|Object}}&lt;br /&gt;
*&#039;&#039;&#039;targetEntity&#039;&#039;&#039;: {{RageType|Object}}&lt;br /&gt;
*&#039;&#039;&#039;weapon&#039;&#039;&#039;: {{RageType|Int}}&lt;br /&gt;
*&#039;&#039;&#039;boneIndex&#039;&#039;&#039;: {{RageType|Int}}&lt;br /&gt;
*&#039;&#039;&#039;damage&#039;&#039;&#039;: {{RageType|Int}}&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mp.events.add(&#039;incomingDamage&#039;, (sourceEntity, sourcePlayer, targetEntity, weapon, boneIndex, damage) =&amp;gt; {&lt;br /&gt;
    // code&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
{{Player_events}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Clientside API]]&lt;br /&gt;
[[Category:Client-side Event]]&lt;/div&gt;</summary>
		<author><name>Moguchiy</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=IncomingDamage&amp;diff=20538</id>
		<title>IncomingDamage</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=IncomingDamage&amp;diff=20538"/>
		<updated>2021-02-18T18:33:39Z</updated>

		<summary type="html">&lt;p&gt;Moguchiy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ClientsideCsJsEvent}}&lt;br /&gt;
&lt;br /&gt;
[1.1]&lt;br /&gt;
&lt;br /&gt;
Triggered upon damage that is about to be given to the player.&lt;br /&gt;
&lt;br /&gt;
This event is also cancellable.&lt;br /&gt;
&lt;br /&gt;
{{JSContainer|&lt;br /&gt;
=== Parameters ===&lt;br /&gt;
*&#039;&#039;&#039;sourceEntity&#039;&#039;&#039;: {{RageType|Object}}&lt;br /&gt;
*&#039;&#039;&#039;sourcePlayer&#039;&#039;&#039;: {{RageType|Object}}&lt;br /&gt;
*&#039;&#039;&#039;targetEntity&#039;&#039;&#039;: {{RageType|Object}}&lt;br /&gt;
*&#039;&#039;&#039;weapon&#039;&#039;&#039;: {{RageType|Int}}&lt;br /&gt;
*&#039;&#039;&#039;boneIndex&#039;&#039;&#039;: {{RageType|Int}}&lt;br /&gt;
*&#039;&#039;&#039;damage&#039;&#039;&#039;: {{RageType|Int}}&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mp.events.add(&#039;incomingDamage&#039;, (sourceEntity, sourcePlayer, targetEntity, weapon, boneIndex, damage) =&amp;gt; {&lt;br /&gt;
    // code&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
[[Category:TODO: Example]]&lt;br /&gt;
[[Category:Clientside API]]&lt;br /&gt;
[[Category:Client-side Event]]&lt;/div&gt;</summary>
		<author><name>Moguchiy</name></author>
	</entry>
</feed>