AR/getBanTime: 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 time the specified ban was created, in '''seconds'''. ==Syntax== <syntaxhighlight lang="lua"> int getBanTime ( ban theBan ) </...")
 
Line 26: Line 26:


==See Also==
==See Also==
{{Admin functions}}
{{AR/Admin_functions}}
[[ru:getBanTime]]
[[ru:getBanTime]]

Revision as of 18:26, 1 September 2012

This function will return the time the specified ban was created, in seconds.

Syntax

int getBanTime ( ban theBan )

Required Arguments

  • theBan: The ban in which you wish to retrieve the time of.

Returns

  • Returns an integer of the banning time in the format of seconds from the year 1970. Use in conjunction with getRealTime in order to retrieve detailed information.
  • Returns false if invalid arguments are specified if there was no banning time specified for the ban.

Example

function retrieveBan(theBan)
    local ban = getBanTime(theBan)
    if ban then
        outputChatBox("The time of ban is: "..ban, getRootElement(), 255,255,255, true)
    end
end

See Also