AR/isCursorShowing

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

هذه الوظيفة تسخدم لتحديد اذا كان السهم ( الماوس ) موجودا او غير موجود

Syntax

Click to collapse [-]
Server
bool isCursorShowing ( player thePlayer )

Required Arguments

  • thePlayer: الاعب الذي تريد ان يتعرف اذا كان الماوس ظاهر عنده

Returns

Returns اذا لم يكن ظاهر false اذا كان الماوس ظاهر, القيمة true القيمة

Click to collapse [-]
Client
bool isCursorShowing ( )

Returns

Returns اذا لم يكن ظاهر false اذا كان الماوس ظاهر, القيمة true القيمة

Example

Click to collapse [-]
Server
function isMouse(thePlayer)
local currentState = isCursorShowing ( thePlayer )
if currentState then -- اذا كان الماوس موجود عند الاعب
showCursor(thePlayer, false) -- اخفاء الماوس
else --اذا لم يكن الماوس موجود عند الاعب
showCursor(thePlayer, true) -- اظهار الماوس
end
end
addCommandHandler( "showMouse", isMouse)
Click to collapse [-]
Client
function isShowing()
showCursor( not isCursorShowing() )
end
bindKey ("h", "down", isShowing)

See Also