GetBanTime: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(Added oop syntax)
 
(6 intermediate revisions by 6 users not shown)
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Server function}}
{{Server function}}
This function will return the banning time of the specified [[ban]] pointer in '''seconds'''.
This function will return the time the specified [[ban]] was created, in '''seconds'''.


==Syntax==  
==Syntax==  
Line 7: Line 7:
int getBanTime ( ban theBan )
int getBanTime ( ban theBan )
</syntaxhighlight>
</syntaxhighlight>
{{OOP||[[ban]]:getTime|time}}


===Required Arguments===  
===Required Arguments===  
*'''theBan:''' The [[ban]] in which you wish to retrieve the time of.
*'''theBan:''' The [[ban]] of which you wish to retrieve the time of.


===Returns===
===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 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]].
* Returns '''false''' if invalid arguments were specified or if there was no banning time specified for the [[ban]].


==Example==
==Example==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--TODO
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
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{Admin functions}}
{{Admin functions}}
[[Category:Needs Example]]
[[ru:getBanTime]]
[[ru:getBanTime]]

Latest revision as of 15:36, 6 August 2016

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

Syntax

int getBanTime ( ban theBan )


OOP Syntax Help! I don't understand this!

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


Required Arguments

  • theBan: The ban of 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 were specified or 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