AR/getBanAdmin: Difference between revisions
Jump to navigation
Jump to search
(→Syntax) |
|||
Line 13: | Line 13: | ||
Returns a ''string'' of the admin if everything was successful, ''false'' if invalid arguments are specified if there was no admin specified for the [[ban]]. | Returns a ''string'' of the admin if everything was successful, ''false'' if invalid arguments are specified if there was no admin specified for the [[ban]]. | ||
== | ==مثال== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
function outputBan(ban) | function outputBan(ban) | ||
local banned = getBanNick(ban) -- | local banned = getBanNick(ban) -- احضار الاعب الي خذا باند | ||
local banner = getBanAdmin(ban) -- | local banner = getBanAdmin(ban) -- احضار اسم الادمن الي عطاه باند | ||
local reason = getBanReason(ban) -- | local reason = getBanReason(ban) -- احضار سبب الباند | ||
outputChatBox("-----BAN-----",getRootElement(),255,0,0) | outputChatBox("-----BAN-----",getRootElement(),255,0,0) | ||
if (banned) then | if (banned) then | ||
outputChatBox("Player banned: "..banned,getRootElement(),255,0,0) -- | outputChatBox("Player banned: "..banned,getRootElement(),255,0,0) -- يحط بالشات اسم الي جاه باند | ||
end | end | ||
if (banner) then | if (banner) then | ||
outputChatBox("Banner: "..banner,getRootElement(),255,0,0) -- | outputChatBox("Banner: "..banner,getRootElement(),255,0,0) -- يحط بالشات اسم الادمن الي عطاه باند | ||
end | end | ||
if (reason) then | if (reason) then | ||
outputChatBox("Reason: "..reason,getRootElement(),255,0,0) -- | outputChatBox("Reason: "..reason,getRootElement(),255,0,0) -- يحط بالشات سبب الباند | ||
end | end | ||
end | end | ||
addEventHandler("onBan",getRootElement(),outputBan) -- | addEventHandler("onBan",getRootElement(),outputBan) -- وقت حدوث الوظيفة و هي لما واحد يتبند | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 17:49, 21 October 2012
This function will return the responsible admin (nickname of the admin) of the specified ban.
Syntax
string getBanAdmin ( ban theBan )
Required Arguments
- theBan: الباند الي تبي تشوف مين بنده
Returns
Returns a string of the admin if everything was successful, false if invalid arguments are specified if there was no admin specified for the ban.
مثال
function outputBan(ban) local banned = getBanNick(ban) -- احضار الاعب الي خذا باند local banner = getBanAdmin(ban) -- احضار اسم الادمن الي عطاه باند local reason = getBanReason(ban) -- احضار سبب الباند outputChatBox("-----BAN-----",getRootElement(),255,0,0) if (banned) then outputChatBox("Player banned: "..banned,getRootElement(),255,0,0) -- يحط بالشات اسم الي جاه باند end if (banner) then outputChatBox("Banner: "..banner,getRootElement(),255,0,0) -- يحط بالشات اسم الادمن الي عطاه باند end if (reason) then outputChatBox("Reason: "..reason,getRootElement(),255,0,0) -- يحط بالشات سبب الباند end end addEventHandler("onBan",getRootElement(),outputBan) -- وقت حدوث الوظيفة و هي لما واحد يتبند