GetBanTime: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(Learn to indent and create examples that actually use a function correctly.)
Line 18: Line 18:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function retrieveBan(theBan)
function retrieveBan(theBan)
local ban = getBanTime(theBan)
    local ban = getBanTime(theBan)
if ban then
    if ban then
outputChatBox("The following ban duration is: "..ban, getRootElement(), 255,255,255, true)
        outputChatBox("The time of ban is: "..ban, getRootElement(), 255,255,255, true)
end
    end
end
end
</syntaxhighlight>
</syntaxhighlight>

Revision as of 08:59, 3 May 2011

This function will return the banning time of the specified ban pointer 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