GetUnbanTime: Difference between revisions
Jump to navigation
Jump to search
(New page: __NOTOC__ {{Server function}} This function will return the unbanning time of the specified ban pointer in '''seconds'''. ==Syntax== <syntaxhighlight lang="lua"> int getUnbanTime ( ban theBan ) </...) |
m (Needs example) |
||
Line 22: | Line 22: | ||
==See Also== | ==See Also== | ||
{{Admin functions}} | {{Admin functions}} | ||
[[Category:Needs Example]] |
Revision as of 17:52, 18 June 2009
This function will return the unbanning time of the specified ban pointer in seconds.
Syntax
int getUnbanTime ( ban theBan )
Required Arguments
- theBan: The ban in which you wish to retrieve the unban time of.
Returns
- Returns an integer of the unbanning 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 or if there was no unbanning time specified for the ban.
Example
--TODO