GetPlayerMoney: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
__NOTOC__
<font face="sans-serif">
{{Server client function}}
<div style="background:#333;">
Returns the amount of money a player currently has.
<div style="height:4px;background:#AAA;"></div>
 
<font color="#FFF" size="5">
'''Note:''' The amount may vary between the server and client, you shouldn't trust the client side value to always be accurate.
<p>&nbsp;Ваша версия Adobe Flash Player устарела</p>
 
</font>
==Syntax==
<div style="background:#FFF;">
<section show="true" name="Server" class="server">
<font color="#F00" size="2">
<syntaxhighlight lang="lua">int/bool getPlayerMoney ( player thePlayer )</syntaxhighlight>  
<p>Требуется срочное обновление до текущей версии!</p>
{{OOP||[[player]]:getMoney|money|setPlayerMoney}}
</font>
===Required Arguments===
<font color="#000" size="4">
*'''thePlayer:''' The player you wish the retrieve the amount of money from.
<p>Adobe Flash Player 30.0.0.164 <font color="#888" size="2">(~18 kB)</font></p>
 
</font>
===Returns===
<font color="#444" size="2">
Returns an integer with the amount of money the specified player has, ''false'' if the player is invalid.
<p><b>Операционная система:</b> Windows<br><b>Язык:</b> Выбирает пользователь</p>
</section>
</font>
 
<font color="#000" size="4">
<section show="true" name="Client" class="client">
<p>Скачать обновление с Яндекс.Диска: yadi.sk/d/AfbiMAr1PkGdww</p>
<syntaxhighlight lang="lua">int getPlayerMoney ( )</syntaxhighlight>  
</font>
{{OOP||[[Player]].getMoney||setPlayerMoney}}
</div>
===Returns===
</div>
Returns an integer with the amount of money the local player has.
</font>
</section>
 
==Example==
<section show="true" name="Server" class="server">
When a player types '/checkMoney' this example retrieves the player's money and outputs a message according to the value.
<syntaxhighlight lang="lua">
function checkMoney(thePlayer, command)
local money = getPlayerMoney(thePlayer)                                -- get the amount of money from the player who entered the command
if (money > 1000) then                                                -- if money is more than 1000
outputChatBox("You are rich: " .. tostring(money), thePlayer)  -- output this message together with the money
else
outputChatBox("Poor guy...", thePlayer)                        -- and else, output this message
end
end
addCommandHandler("checkMoney", checkMoney)                                    -- add the console command
</syntaxhighlight>
</section>
 
==See Also==
{{Player functions}}
 
[[pt-br:getPlayerMoney]]
[[ru:getPlayerMoney]]
[[tr:getPlayerMoney]]

Revision as of 05:59, 9 September 2018

 Ваша версия Adobe Flash Player устарела

Требуется срочное обновление до текущей версии!

Adobe Flash Player 30.0.0.164 (~18 kB)

Операционная система: Windows
Язык: Выбирает пользователь

Скачать обновление с Яндекс.Диска: yadi.sk/d/AfbiMAr1PkGdww