GetBanTime: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 20: Line 20:
     local ban = getBanTime(theBan)
     local ban = getBanTime(theBan)
     if ban then
     if ban then
         outputChatBox("The time of ban is: "..ban, getRootElement(), 255,255,255, true)
         outputChatBox("The time of the ban is: " .. ban, root, 255, 255, 255, false)
     end
     end
end
end

Revision as of 13:43, 14 March 2013

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 the ban is: " .. ban, root, 255, 255, 255, false)
    end
end

See Also