<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.multitheftauto.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Uhm</id>
	<title>Multi Theft Auto: Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.multitheftauto.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Uhm"/>
	<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/wiki/Special:Contributions/Uhm"/>
	<updated>2026-04-24T06:46:23Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=KickPlayer&amp;diff=22093</id>
		<title>KickPlayer</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=KickPlayer&amp;diff=22093"/>
		<updated>2009-12-28T00:41:02Z</updated>

		<summary type="html">&lt;p&gt;Uhm: Undo revision 22092 by Uhm (Talk) I'm actually not sure, on lower screen resolutions the reason isn't shown even when the reason is below 64 chars&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Server function}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
This function will kick the specified player from the server.&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool kickPlayer ( player kickedPlayer, [ player responsiblePlayer, string reason = &amp;quot;&amp;quot; ] )         &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
''or''&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool kickPlayer ( player kickedPlayer, [ string reason = &amp;quot;&amp;quot; ] )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Required Arguments=== &lt;br /&gt;
*'''kickedPlayer:''' The player that will be kicked from the server&lt;br /&gt;
&lt;br /&gt;
===Optional Arguments=== &lt;br /&gt;
{{OptionalArg}} &lt;br /&gt;
*'''responsiblePlayer:''' The player that is responsible for the event. '''Note''': If left out as in the second syntax, responsible player for the kick will be &amp;quot;Console&amp;quot;.&lt;br /&gt;
*'''reason:''' The reason for the kick.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns ''true'' if the player was kicked succesfully, ''false'' if invalid arguments are specified.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example lets a player kick anyone who has a lower level.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function kickPlayerHandler ( sourcePlayer, commandname, kickedname, reason )&lt;br /&gt;
	-- Get player element from the name&lt;br /&gt;
	local kicked = getPlayerFromNick ( kickedname )&lt;br /&gt;
	-- If the client who sent the command has a higher level&lt;br /&gt;
	if ( hasObjectPermissionTo ( sourcePlayer, &amp;quot;function.kickPlayer&amp;quot; ) ) then&lt;br /&gt;
		-- Kick the player&lt;br /&gt;
		kickPlayer ( kicked, sourcePlayer, reason )&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
-- Add the &amp;quot;kick&amp;quot; command handler&lt;br /&gt;
addCommandHandler ( &amp;quot;kick&amp;quot;, kickPlayerHandler )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Admin_functions}}&lt;br /&gt;
[[ru:kickPlayer]]&lt;/div&gt;</summary>
		<author><name>Uhm</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=KickPlayer&amp;diff=22092</id>
		<title>KickPlayer</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=KickPlayer&amp;diff=22092"/>
		<updated>2009-12-28T00:37:47Z</updated>

		<summary type="html">&lt;p&gt;Uhm: /* Optional Arguments */ max length of reason&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Server function}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
This function will kick the specified player from the server.&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool kickPlayer ( player kickedPlayer, [ player responsiblePlayer, string reason = &amp;quot;&amp;quot; ] )         &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
''or''&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool kickPlayer ( player kickedPlayer, [ string reason = &amp;quot;&amp;quot; ] )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Required Arguments=== &lt;br /&gt;
*'''kickedPlayer:''' The player that will be kicked from the server&lt;br /&gt;
&lt;br /&gt;
===Optional Arguments=== &lt;br /&gt;
{{OptionalArg}} &lt;br /&gt;
*'''responsiblePlayer:''' The player that is responsible for the event. '''Note''': If left out as in the second syntax, responsible player for the kick will be &amp;quot;Console&amp;quot;.&lt;br /&gt;
*'''reason:''' The reason for the kick. The maximum length for this is 64 characters.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns ''true'' if the player was kicked succesfully, ''false'' if invalid arguments are specified.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example lets a player kick anyone who has a lower level.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function kickPlayerHandler ( sourcePlayer, commandname, kickedname, reason )&lt;br /&gt;
	-- Get player element from the name&lt;br /&gt;
	local kicked = getPlayerFromNick ( kickedname )&lt;br /&gt;
	-- If the client who sent the command has a higher level&lt;br /&gt;
	if ( hasObjectPermissionTo ( sourcePlayer, &amp;quot;function.kickPlayer&amp;quot; ) ) then&lt;br /&gt;
		-- Kick the player&lt;br /&gt;
		kickPlayer ( kicked, sourcePlayer, reason )&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
-- Add the &amp;quot;kick&amp;quot; command handler&lt;br /&gt;
addCommandHandler ( &amp;quot;kick&amp;quot;, kickPlayerHandler )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Admin_functions}}&lt;br /&gt;
[[ru:kickPlayer]]&lt;/div&gt;</summary>
		<author><name>Uhm</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=User:Uhm&amp;diff=22091</id>
		<title>User:Uhm</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=User:Uhm&amp;diff=22091"/>
		<updated>2009-12-27T20:06:43Z</updated>

		<summary type="html">&lt;p&gt;Uhm: Created page with '*createHandling *addDefaultHandling *handlingGetABS *handlingGetBrakeBias *handlingGetBrakeDeceleration *handlingGetCenterOfMass *[[handlingGetCollisionDa…'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*[[createHandling]]&lt;br /&gt;
*[[addDefaultHandling]]&lt;br /&gt;
*[[handlingGetABS]]&lt;br /&gt;
*[[handlingGetBrakeBias]]&lt;br /&gt;
*[[handlingGetBrakeDeceleration]]&lt;br /&gt;
*[[handlingGetCenterOfMass]]&lt;br /&gt;
*[[handlingGetCollisionDamageMultiplier]]&lt;br /&gt;
*[[handlingGetDragCoefficiency]]&lt;br /&gt;
*[[handlingGetDriveType]]&lt;br /&gt;
*[[handlingGetEngineAcceleration]]&lt;br /&gt;
*[[handlingGetEngineInertia]]&lt;br /&gt;
*[[handlingGetEngineType]]&lt;br /&gt;
*[[handlingGetMass]]&lt;br /&gt;
*[[handlingGetMaxVelocity]]&lt;br /&gt;
*[[handlingGetNumberOfGears]]&lt;br /&gt;
*[[handlingGetPercentSubmerged]]&lt;br /&gt;
*[[handlingGetSteeringLock]]&lt;br /&gt;
*[[handlingGetSuspensionAntidiveMultiplier]]&lt;br /&gt;
*[[handlingGetSuspensionDamping]]&lt;br /&gt;
*[[handlingGetSuspensionForceLevel]]&lt;br /&gt;
*[[handlingGetSuspensionFrontRearBias]]&lt;br /&gt;
*[[handlingGetSuspensionHighSpeedDamping]]&lt;br /&gt;
*[[handlingGetSuspensionLowerLimit]]&lt;br /&gt;
*[[handlingGetSuspensionUpperLimit]]&lt;br /&gt;
*[[handlingGetTractionBias]]&lt;br /&gt;
*[[handlingGetTractionLoss]]&lt;br /&gt;
*[[handlingGetTractionMultiplier]]&lt;br /&gt;
*[[handlingGetTurnMass]]&lt;br /&gt;
*[[handlingSetABS]]&lt;br /&gt;
*[[handlingSetBrakeBias]]&lt;br /&gt;
*[[handlingSetBrakeDeceleration]]&lt;br /&gt;
*[[handlingSetCenterOfMass]]&lt;br /&gt;
*[[handlingSetCollisionDamageMultiplier]]&lt;br /&gt;
*[[handlingSetDragCoefficiency]]&lt;br /&gt;
*[[handlingSetDriveType]]&lt;br /&gt;
*[[handlingSetEngineAcceleration]]&lt;br /&gt;
*[[handlingSetEngineInertia]]&lt;br /&gt;
*[[handlingSetEngineType]]&lt;br /&gt;
*[[handlingSetMass]]&lt;br /&gt;
*[[handlingSetMaxVelocity]]&lt;br /&gt;
*[[handlingSetNumberOfGears]]&lt;br /&gt;
*[[handlingSetPercentSubmerged]]&lt;br /&gt;
*[[handlingSetSteeringLock]]&lt;br /&gt;
*[[handlingSetSuspensionAntidiveMultiplier]]&lt;br /&gt;
*[[handlingSetSuspensionDamping]]&lt;br /&gt;
*[[handlingSetSuspensionForceLevel]]&lt;br /&gt;
*[[handlingSetSuspensionFrontRearBias]]&lt;br /&gt;
*[[handlingSetSuspensionHighSpeedDamping]]&lt;br /&gt;
*[[handlingSetSuspensionLowerLimit]]&lt;br /&gt;
*[[handlingSetSuspensionUpperLimit]]&lt;br /&gt;
*[[handlingSetTractionBias]]&lt;br /&gt;
*[[handlingSetTractionLoss]]&lt;br /&gt;
*[[handlingSetTractionMultiplier]]&lt;br /&gt;
*[[handlingSetTurnMass]]&lt;/div&gt;</summary>
		<author><name>Uhm</name></author>
	</entry>
</feed>