mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-02-19 22:53:49 +00:00
17 lines
531 B
C#
17 lines
531 B
C#
// Tribes 2 Unofficial Authentication System
|
|
// http://www.tribesnext.com/
|
|
// Copyright 2008 by Electricutioner/Thyth and the Tribes 2 Community System Reengineering Intitiative
|
|
|
|
// Version 1.0 initialization and glue file (server side)
|
|
|
|
if (isObject(ServerGroup))
|
|
{
|
|
// load the torque script components
|
|
exec("t2csri/serverSide.cs");
|
|
exec("t2csri/serverSideClans.cs");
|
|
exec("t2csri/bans.cs");
|
|
exec("t2csri/ipv4.cs");
|
|
|
|
// get the global IP for sanity testing purposes
|
|
schedule(32, 0, ipv4_getInetAddress);
|
|
}
|