AR/getPlayerName: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
===: ملاحظة===  
===: ملاحظة===  
ملأحظة : هاذي الوظيفة تقوم بـجلب اسم الاعب
ملأحظة : هاذي الوظيفة تقوم بـجلب اسم الاعب
===عناصر مطلوبة===
*'''thePlayer:''' اللاعب الذي سيحصل على اسم الاعب
</section>
<section name="Client" class="client" show="true">
<syntaxhighlight lang="lua">string getPlayerName ( thePlayer )</syntaxhighlight>
==: مثال== 
<section show="true" name="المثال الأول - Client" class="client">
هذا المثال يظهر اسم الاعب في الشات
<syntaxhighlight lang="lua">
function Name () -- أضافة وظيفة
local localPlayerName = getPlayerName(getLocalPlayer()) -- أحظار اسم الاعب
outputChatBox(localPlayerName,255,255,0,true) -- اخراج صندوق دردشه في الشات
end --
addCommandHandler("Name", Name) -- اضافة امر في الكونسول
</syntaxhighlight>
</section>
For Wnash Time ..

Latest revision as of 00:28, 1 February 2015

: ملاحظة

ملأحظة : هاذي الوظيفة تقوم بـجلب اسم الاعب

عناصر مطلوبة

  • thePlayer: اللاعب الذي سيحصل على اسم الاعب

</section>

Click to collapse [-]
Client
string getPlayerName ( thePlayer )

: مثال

<section show="true" name="المثال الأول - Client" class="client"> هذا المثال يظهر اسم الاعب في الشات

function Name () -- أضافة وظيفة
local localPlayerName = getPlayerName(getLocalPlayer()) -- أحظار اسم الاعب
outputChatBox(localPlayerName,255,255,0,true) -- اخراج صندوق دردشه في الشات
end -- 
addCommandHandler("Name", Name) -- اضافة امر في الكونسول

For Wnash Time ..