getBanTime | Multi Theft Auto: Wiki Skip to content

getBanTime

Client-side
Server-side
Shared

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

OOP Syntax Help! I don't understand this!

  • Method: ban:getTime(...)
  • Variable: .time

Syntax

int|false getBanTime ( ban theBan )
Required Arguments
  • theBan: The ban of which you wish to retrieve the time of.

Returns

  • int|false: ban time

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 were specified or if there was no banning time specified for the ban.

Code Examples

server
local function retrieveBan(theBan)
local ban = getBanTime(theBan)
if (ban) then
outputChatBox("The time of the ban is: " .. ban, root, 255, 255, 255, false)
end
end