mirror of
https://github.com/UOX3DevTeam/UOX3
synced 2026-08-13 12:27:04 -04:00
[BANNED]
{
IP=x.x.x.x
}
The [BANNED] is non-specific, it will search through all the sections in that file
Template banlist.ini is updated as well
teleport.scp has been reengineered to be like a DFN style. See example in the CVS, as it has been updated
Updated jse_fileassociations.scp to a DFN style syntax
Updated jse_objectassociations.scp to a DFN style syntax
CVS versions of jse_*.scp have been updated to new style
Reduced number of fopen() calls required by using FileIO->FileExists more
cVersionClass converted so that most of it's methods are now static, as we don't adjust versioning at runtime
It also means we don't actually have to create a cVersionClass object
21 lines
1.4 KiB
INI
21 lines
1.4 KiB
INI
//************************************************************************
|
|
//* Banlist.ini Instructions *
|
|
//* *
|
|
//* IP Address Format: *
|
|
//* x.x.x.x // x can either be a number or a * to allow wildcards *
|
|
//* *
|
|
//* For instance: *
|
|
//* 192.168.0.* // disconnects any from that subnet *
|
|
//* 127.*.*.* // all localhost disconnected *
|
|
//* 1.2.3.4 // specific host disconnected *
|
|
//* *
|
|
//* This will disconnect a client before processing anything *
|
|
//* *
|
|
//* The script itself is formatted much like this *
|
|
//* [BANNED] *
|
|
//* { *
|
|
//* IP=x.x.x.x *
|
|
//* } *
|
|
//* Section header name is not specific, as the code reads through all *
|
|
//* of the sections in this file *
|
|
//************************************************************************
|