mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-03-06 05:50:34 +00:00
21 lines
670 B
C#
21 lines
670 B
C#
// Tribes 2 Unofficial Authentication System
|
|
// http://www.tribesnext.com/
|
|
// Written by Electricutioner/Thyth
|
|
// Copyright 2008 by Electricutioner/Thyth and the Tribes 2 Community System Reengineering Intitiative
|
|
|
|
// Version 1.0 initialization and glue file
|
|
|
|
// enable debugging console
|
|
//enableWinConsole(1);
|
|
|
|
// load the torque script components
|
|
exec("t2csri/authconnect.cs");
|
|
exec("t2csri/authinterface.cs");
|
|
exec("t2csri/clientSide.cs");
|
|
exec("t2csri/ipv4.cs");
|
|
|
|
// connect to the auth server via signed lookup
|
|
schedule(32, 0, authConnect_findAuthServer);
|
|
|
|
// get the global IP for sanity testing purposes
|
|
schedule(32, 0, ipv4_getInetAddress);
|