AR/getBanReason: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 14: Line 14:
Returns a ''string'' of the reason if everything was successful, ''false'' if invalid arguments are specified if there was no reason specified for the [[ban]].
Returns a ''string'' of the reason if everything was successful, ''false'' if invalid arguments are specified if there was no reason specified for the [[ban]].


==Example==
==مثال==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function outputBan(ban)
function outputBan(ban)

Revision as of 17:38, 21 October 2012

This function will return the ban reason of the specified ban.

Syntax

string getBanReason ( ban theBan )

Required Arguments

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

Returns

Returns a string of the reason if everything was successful, false if invalid arguments are specified if there was no reason 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) --وقت بداء الوظيفه و هي لما يتبند شخص

See Also