<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://g1r-mp.com/wiki/index.php?action=history&amp;feed=atom&amp;title=GetPlayerStatLimits</id>
	<title>GetPlayerStatLimits - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://g1r-mp.com/wiki/index.php?action=history&amp;feed=atom&amp;title=GetPlayerStatLimits"/>
	<link rel="alternate" type="text/html" href="https://g1r-mp.com/wiki/index.php?title=GetPlayerStatLimits&amp;action=history"/>
	<updated>2026-08-05T04:55:12Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.46.0</generator>
	<entry>
		<id>https://g1r-mp.com/wiki/index.php?title=GetPlayerStatLimits&amp;diff=62&amp;oldid=prev</id>
		<title>QCherry: Automatyczna aktualizacja dokumentacji funkcji</title>
		<link rel="alternate" type="text/html" href="https://g1r-mp.com/wiki/index.php?title=GetPlayerStatLimits&amp;diff=62&amp;oldid=prev"/>
		<updated>2026-08-04T12:44:33Z</updated>

		<summary type="html">&lt;p&gt;Automatyczna aktualizacja dokumentacji funkcji&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;!-- This page is generated automatically from the function definition: getPlayerStatLimits. --&amp;gt;&lt;br /&gt;
= getPlayerStatLimits =&lt;br /&gt;
Returns the accepted numeric range for a progression stat key.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
table getPlayerStatLimits(string statName)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Name !! Type !! Required !! Description&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;statName&amp;lt;/code&amp;gt; || &amp;lt;code&amp;gt;string&amp;lt;/code&amp;gt; || yes || A key returned by &amp;lt;code&amp;gt;getPlayerStatNames&amp;lt;/code&amp;gt;.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Returns ==&lt;br /&gt;
Returns a table containing &amp;lt;code&amp;gt;minimum&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;maximum&amp;lt;/code&amp;gt;, or &amp;lt;code&amp;gt;nil&amp;lt;/code&amp;gt; for an unknown stat.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
Clamp a requested strength value:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot; line&amp;gt;&lt;br /&gt;
local limits = getPlayerStatLimits(&amp;quot;strength&amp;quot;)&lt;br /&gt;
if limits then&lt;br /&gt;
    local value = math.max(limits.minimum, math.min(100, limits.maximum))&lt;br /&gt;
    setPlayerStat(playerId, &amp;quot;strength&amp;quot;, value)&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Available only in server-side resource scripts.&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Functions]]&lt;br /&gt;
[[Category:Progression Functions]]&lt;/div&gt;</summary>
		<author><name>QCherry</name></author>
	</entry>
</feed>