v22017: No update notes.

This commit is contained in:
Robert MacGregor 2017-07-17 22:58:13 -04:00
parent 63560d110c
commit bfb305385e
5 changed files with 29 additions and 7 deletions

View file

@ -1,7 +1,7 @@
ProductName "Tribes2" ProductName "Tribes2"
DisplayName "Tribes 2" DisplayName "Tribes 2"
PatchFolder .\patch PatchFolder .\patch
CurrentVersion 0.22002.0.0 CurrentVersion 0.22017.0.0
AutoStart AutoStart
MonitorPatch MonitorPatch
LaunchExe "tribes2.exe" LaunchExe "tribes2.exe"

View file

@ -1,4 +1,4 @@
Input log opened at Wed Mar 28 14:15:31 2001 Input log opened at Fri Mar 30 12:01:39 2001
Operating System: Operating System:
WinNT version 5.0 WinNT version 5.0

View file

@ -154,6 +154,8 @@ function HandleDatabaseProxyResponse(%prefix, %params)
$DBQueries[%i] = $DBQueries[%i+1]; $DBQueries[%i] = $DBQueries[%i+1];
$DBQueryText[%i] = $DBQueryText[%i+1]; $DBQueryText[%i] = $DBQueryText[%i+1];
} }
$DBQueries[%i] = "";
$DBQueryText[%i] = "";
$DBQueryCount--; $DBQueryCount--;
} }
} }
@ -168,7 +170,7 @@ function DatabaseQueryi(%astr, %args, %proxyObject, %key)
if (%proxyObject !$= "") if (%proxyObject !$= "")
%proxyObject.onDatabaseQueryResult("1\tORA-04061", "", %key); %proxyObject.onDatabaseQueryResult("1\tORA-04061", "", %key);
return; return 0;
} }
// maxRows will be empty // maxRows will be empty
@ -194,16 +196,36 @@ function DatabaseQueryi(%astr, %args, %proxyObject, %key)
} }
%msg = getSubStr(%args, %i, 400); %msg = getSubStr(%args, %i, 400);
IRCClient::send("dbqax" SPC %id SPC %astr SPC ":" @ %msg); IRCClient::send("dbqax" SPC %id SPC %astr SPC ":" @ %msg);
return %id;
} }
function DatabaseQuery(%ordinal, %args, %proxyObject, %key) function DatabaseQuery(%ordinal, %args, %proxyObject, %key)
{ {
DatabaseQueryi(%ordinal SPC "0", %args, %proxyObject, %key); return DatabaseQueryi(%ordinal SPC "0", %args, %proxyObject, %key);
} }
function DatabaseQueryArray(%ordinal, %maxRows, %args, %proxyObject, %key) function DatabaseQueryArray(%ordinal, %maxRows, %args, %proxyObject, %key)
{ {
DatabaseQueryi("C" @ %ordinal SPC %maxRows, %args, %proxyObject, %key); return DatabaseQueryi("C" @ %ordinal SPC %maxRows, %args, %proxyObject, %key);
}
function DatabaseQueryCancel(%id)
{
for(%qc = 0; %qc < $DBQueryCount; %qc++)
if(getWord($DBQueries[%qc], 0) == %id)
break;
if(%qc == $DBQueryCount)
return;
IRCClient::send("dbqc " @ %id);
for(%i = %qc; %i < $DBQueryCount; %i++)
{
$DBQueries[%i] = $DBQueries[%i+1];
$DBQueryText[%i] = $DBQueryText[%i+1];
}
$DBQueries[%i] = "";
$DBQueryText[%i] = "";
$DBQueryCount--;
} }
function WONUpdateCertificateDone(%errCode, %errStr) function WONUpdateCertificateDone(%errCode, %errStr)

View file

@ -1 +1 @@
buildVersion.setValue( "MAR 28, 2001, 2:09 PM (dmoore)" ); buildVersion.setValue( "MAR 30, 2001, 11:54 AM (dmoore)" );

View file

@ -540,7 +540,7 @@ function StartupGui::checkLoginDone( %this, %editAcct,%emailCheck )
default: default:
if(%code <= -2900 && %code >= -2999) if(%code <= -2900 && %code >= -2999)
{ {
if(%code = -2902) if(%code == -2902)
%msg = "Account Creation Failed - That CDKey is already in use." @ %code; %msg = "Account Creation Failed - That CDKey is already in use." @ %code;
else else
%msg = "Account Creation Failed - That warrior name is already in use. Please choose another warrior name and try again. Code = " @ %code; %msg = "Account Creation Failed - That warrior name is already in use. Please choose another warrior name and try again. Code = " @ %code;