AR/getBanNick: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Server function}} This function will return the nickname (nickname that the player had when he was banned) of the specified ban. ==Syntax== <syntaxhighlight lang="lua"> string...")
 
No edit summary
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Server function}}
{{Server function}}
This function will return the nickname (nickname that the player had when he was banned) of the specified [[ban]].
هذه الوظيفة ستبحث عن اسم الشخص المتبند في الباند المحدد


==Syntax==
==Syntax==
Line 9: Line 9:


===Required Arguments===
===Required Arguments===
*'''theBan:''' The [[ban]] element which nickname you want to return.
*'''theBan:''' الباند الذي تريد احضار اسم المتبند منه
 
===Returns===
===Returns===
Returns a ''string'' of the nickname if everything was successfull, ''false'' if invalid arguments are specified if there was no nickname specified for the [[ban]] element.
Returns a ''string'' of the nickname if everything was successfull, ''false'' if invalid arguments are specified if there was no nickname specified for the [[ban]] element.


==Example==
==مثال==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function outputBan(ban)
function outputBan(ban)
local banned = getBanNick(ban) -- Get the name of the player who was banned
local banned = getBanNick(ban) -- احضار اسم المتبند
local banner = getBanAdmin(ban) -- Get the name of the admin who banned the player
local banner = getBanAdmin(ban) -- احضار اسم الادمن اللذي بند
local reason = getBanReason(ban) -- Get the reason the player was banned
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) -- Output the player name who was banned
outputChatBox("Player banned: "..banned,getRootElement(),255,0,0) -- يضع بالشات اسم الشخص المتبند
end
end
if (banner) then
if (banner) then
outputChatBox("Banner: "..banner,getRootElement(),255,0,0) -- Output the admin name who performed the ban
outputChatBox("Banner: "..banner,getRootElement(),255,0,0) -- يضع بالشات اسم الشخص الذي بند
end
end
if (reason) then
if (reason) then
outputChatBox("Reason: "..reason,getRootElement(),255,0,0) -- outputt the reason the player was banned
outputChatBox("Reason: "..reason,getRootElement(),255,0,0) -- يضع بالشات سبب الباند
end
end
end
end
addEventHandler("onBan",getRootElement(),outputBan) -- When a player is banned trigger the outputBan function
addEventHandler("onBan",getRootElement(),outputBan)
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==أنظر ايضاً==
{{Admin functions}}
{{AR/Admin_functions}}

Latest revision as of 00:16, 11 December 2012

هذه الوظيفة ستبحث عن اسم الشخص المتبند في الباند المحدد

Syntax

string getBanNick ( ban theBan )

Required Arguments

  • theBan: الباند الذي تريد احضار اسم المتبند منه

Returns

Returns a string of the nickname if everything was successfull, false if invalid arguments are specified if there was no nickname specified for the ban element.

مثال

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)

أنظر ايضاً