Difference between revisions of "TBanLists"
(Created page with "==Inheritance== *TBanLists ==Description== Class used to hold information about bans. '''This class is assigned to global variable "Game.BansList"'''...") |
m |
||
Line 31: | Line 31: | ||
| align="center" | | | align="center" | | ||
|- | |- | ||
− | | function[[TBanLists.IsBannedIP|IsBannedIP]](IP: ShortString): Boolean; | + | | function [[TBanLists.IsBannedIP|IsBannedIP]](IP: ShortString): Boolean; |
| align="center" | | | align="center" | | ||
|- | |- |
Revision as of 13:14, 9 September 2016
Inheritance
Description
Class used to hold information about bans.
This class is assigned to global variable "Game.BansList"
user constructable: NO user destructable: NO
Members
Member declaration | Access mode | SS Version |
---|---|---|
procedure AddHWBan(HW, Reason: string; Duration: Integer); | 2.7.9 | |
procedure AddIPBan(IP: ShortString; Reason: string; Duration: Integer); | ||
function DelHWBan(HW: string): Boolean; | ||
function DelIPBan(IP: ShortString): Boolean; | ||
function IsBannedHW(HW: string): Boolean; | ||
function IsBannedIP(IP: ShortString): Boolean; | ||
function GetHWBanId(HW: string): Integer; | ||
function GetIPBanId(IP: ShortString): Integer; | ||
property HW: array of TBannedHW | R | 2.7.9 |
property IP : array of TBannedIP | R | |
property BannedHWCount: Integer | R | |
property BannedIPCount: Integer | R |