AR/getBanUsername: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Server function}} | {{Server function}} | ||
هذه الوظيفة تحضر اسم اللاعب اللذي تم تبنيده في الباند المحدد | |||
==Syntax== | ==Syntax== | ||
Line 9: | Line 9: | ||
===Required Arguments=== | ===Required Arguments=== | ||
*'''theBan:''' | *'''theBan:''' الباند اللذي تريد ان تحضر منه اسم اللاعب | ||
===Returns=== | ===Returns=== | ||
Returns a ''string'' of the username if everything was successful, ''false'' if invalid arguments are specified if there was no username specified for the [[ban]]. | Returns a ''string'' of the username if everything was successful, ''false'' if invalid arguments are specified if there was no username specified for the [[ban]]. | ||
== | ==مثال== | ||
هذا المثال عندما يتبند لاعب سوف يظهر بالشات اسمه | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
function retrieveBan(theBan) | function retrieveBan(theBan) | ||
local ban = getBanUsername(theBan) | local ban = getBanUsername(theBan) -- يحضر اسم الباند | ||
if ban then | if ban then -- اذا احضره | ||
outputChatBox("The following | outputChatBox("The following ban's username is: "..ban, getRootElement(), 255,255,255, true) -- يظهر لكل اللاعبين انه تم تبنيد شخص ويظهر اسمه | ||
end | end | ||
end | end | ||
addEventHandler("onBan",root,retrieveBan) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
== | ==أنظر أيضاً== | ||
{{AR/Admin_functions}} | {{AR/Admin_functions}} | ||
[[ru:getBanUsername]] | [[ru:getBanUsername]] |
Latest revision as of 01:09, 11 December 2012
هذه الوظيفة تحضر اسم اللاعب اللذي تم تبنيده في الباند المحدد
Syntax
string getBanUsername ( ban theBan )
Required Arguments
- theBan: الباند اللذي تريد ان تحضر منه اسم اللاعب
Returns
Returns a string of the username if everything was successful, false if invalid arguments are specified if there was no username specified for the ban.
مثال
هذا المثال عندما يتبند لاعب سوف يظهر بالشات اسمه
function retrieveBan(theBan) local ban = getBanUsername(theBan) -- يحضر اسم الباند if ban then -- اذا احضره outputChatBox("The following ban's username is: "..ban, getRootElement(), 255,255,255, true) -- يظهر لكل اللاعبين انه تم تبنيد شخص ويظهر اسمه end end addEventHandler("onBan",root,retrieveBan)