SetUnbanTime

From Multi Theft Auto: Wiki
Revision as of 15:54, 6 August 2016 by Walid (talk | contribs) (Added oop syntax)
Jump to navigation Jump to search

This function sets a new unban time of a given ban using unix timestamp (seconds since Jan 01 1970).

Syntax

bool setUnbanTime( ban theBan, int theTime )


OOP Syntax Help! I don't understand this!

Method: ban:setUnbanTime(...)
Variable: .unbantime
Counterpart: getUnbanTime


Required Arguments

  • theBan: The ban of which to change the unban time of
  • theTime: the new unban time

Returns

Returns true if changed successfully, false otherwise.

Example

addCommandHandler("banMe",
function (player)
local ban = banPlayer(player)
setUnbanTime(ban, 500)
end
)

See Also