AR/getBanReason

From Multi Theft Auto: Wiki
Revision as of 17:38, 21 October 2012 by MJNONFIK (talk | contribs) (→‎Example)
Jump to navigation Jump to search

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