AR/getBlipVisibleDistance: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Server client function}} __NOTOC__ جلب المسافة التي يظهر فيها العلامة ==Syntax== <syntaxhighlight lang="lua">float getBlipVisibleDistance ( blip theBlip )</code...")
 
No edit summary
 
Line 3: Line 3:
جلب المسافة التي يظهر فيها العلامة
جلب المسافة التي يظهر فيها العلامة


==Syntax==  
==تركيب الجملة البرمجية==  
<syntaxhighlight lang="lua">float getBlipVisibleDistance ( blip theBlip )</syntaxhighlight>  
<syntaxhighlight lang="lua">float getBlipVisibleDistance ( blip theBlip )</syntaxhighlight>  


===Required Arguments===  
===مطلوب===  
*'''theBlip:''' البلب المُراد جلبه.
*'''theBlip:''' البلب المُراد جلبه.


Line 12: Line 12:
Returns one float with the blips visible distance, false if the blip is invalid.
Returns one float with the blips visible distance, false if the blip is invalid.


==Example==  
==مثال==  
هذا المثال يقوم بإنشاء العلامة وإخراج المسافة في debug
هذا المثال يقوم بإنشاء العلامة وإخراج المسافة في debug
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
Line 19: Line 19:
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==انظر ايضاً==
{{AR/Blip_functions}}
{{AR/Blip_functions}}


[[en:getBlipVisibleDistance]]
[[en:getBlipVisibleDistance]]

Latest revision as of 10:15, 3 January 2014

جلب المسافة التي يظهر فيها العلامة

تركيب الجملة البرمجية

float getBlipVisibleDistance ( blip theBlip )

مطلوب

  • theBlip: البلب المُراد جلبه.

Returns

Returns one float with the blips visible distance, false if the blip is invalid.

مثال

هذا المثال يقوم بإنشاء العلامة وإخراج المسافة في debug

local blip = createBlip ( 0, 0, 0, 47, 0, 0, 0, 0, 0, 0, 1000 );
outputDebugString ( "Blip visible distance: "..getBlipVisibleDistance ( blip ) );

انظر ايضاً