GetUnbanTime: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Server function}}
{{Server function}}
This function will return the unbanning time of the specified [[ban]] pointer in '''seconds'''.
This function will return the unbanning time of the specified [[ban]] in '''seconds'''.


==Syntax==  
==Syntax==  

Revision as of 10:15, 3 May 2011

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

See Also