|
From: slartibartfast <sla...@us...> - 2004-09-30 19:00:02
|
Update of /cvsroot/seq/myseq/server In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31123 Modified Files: myseqserverc.vcproj myseqserverc.cpp Added Files: ServerReleaseNotes.html myseqserverc.sln Removed Files: ServerRleaseNotes.html myseqserverc.ini Log Message: Update Sever Source to version 1.12 Index: myseqserverc.cpp =================================================================== RCS file: /cvsroot/seq/myseq/server/myseqserverc.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- myseqserverc.cpp 8 Nov 2003 13:52:23 -0000 1.10 +++ myseqserverc.cpp 30 Sep 2004 18:59:53 -0000 1.11 @@ -25,27 +25,21 @@ HANDLE eqprocess; +DWORD eqProcessID; +DWORD LastProcessID; // Offsets in the process -void *EQADDR_GROUPCOUNT = (void*)0; -void *EQADDR_GROUP = (void*)0; -void *EQADDR_SPAWNLIST = (void*)0; -void *EQADDR_ITEMS = (void*)0; [...1333 lines suppressed...] + int updatetime = 250; + + if (argc == 2) { + port = atoi(argv[2]); + + if (port == 0) + port = 5555; + } + + if (loadSettings("./myseqserver.ini")) { + SetDebugPriv(); + svrloop(port); + + } WSACleanup(); return 0; } + Index: myseqserverc.vcproj =================================================================== RCS file: /cvsroot/seq/myseq/server/myseqserverc.vcproj,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- myseqserverc.vcproj 8 Nov 2003 13:52:23 -0000 1.2 +++ myseqserverc.vcproj 30 Sep 2004 18:59:53 -0000 1.3 @@ -13,7 +13,7 @@ <Configurations> <Configuration Name="Debug|Win32" - OutputDirectory="Debug" + OutputDirectory="./" IntermediateDirectory="Debug" ConfigurationType="1" CharacterSet="2"> @@ -62,7 +62,7 @@ </Configuration> <Configuration Name="Release|Win32" - OutputDirectory="Release" + OutputDirectory="./" IntermediateDirectory="Release" ConfigurationType="1" CharacterSet="2"> --- ServerRleaseNotes.html DELETED --- --- myseqserverc.ini DELETED --- --- NEW FILE: myseqserverc.sln --- Microsoft Visual Studio Solution File, Format Version 8.00 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "myseqserverc", "myseqserverc.vcproj", "{44303375-5350-4055-BFB7-B094374C8099}" ProjectSection(ProjectDependencies) = postProject EndProjectSection EndProject Global GlobalSection(SolutionConfiguration) = preSolution Debug = Debug Release = Release EndGlobalSection GlobalSection(ProjectConfiguration) = postSolution {44303375-5350-4055-BFB7-B094374C8099}.Debug.ActiveCfg = Debug|Win32 {44303375-5350-4055-BFB7-B094374C8099}.Debug.Build.0 = Debug|Win32 {44303375-5350-4055-BFB7-B094374C8099}.Release.ActiveCfg = Release|Win32 {44303375-5350-4055-BFB7-B094374C8099}.Release.Build.0 = Release|Win32 EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution EndGlobalSection GlobalSection(ExtensibilityAddIns) = postSolution EndGlobalSection EndGlobal --- NEW FILE: ServerReleaseNotes.html --- <html> <head> <title>MySeq Client Release Notes</title> </head> <body bgcolor="#ffffff" text="#000000" link="#0000ff" alink="#800080" vlink="#ff0000"> <h1 align="center"><U>MYSEQ Server Release Notes</U></h1> <H2>Release Version 1.12</H2> <p> Dated 28 September 2004<OL> <LI> Added the ability to select which EQ Process to monitor when multi-boxing.</LI></OL> <p>Note: MySeq Client V1.16.2 or better is required to perform this action.</p> <H2> </H2> <H2>Release Version 1.11</H2> <p> Dated 26 November 2003 <OL> <LI> Changed the version number becuase there had been multiple versions of Server 1.9b which made it difficult to troubleshoot issues.</LI></OL> <br> <br> <H2>Release Version 1.9b</H2> <p> Dated 13 October 2003 <OL> <LI> Fixed problem with player level when riding a horse - (Added another level of indirection. CharInfoPtr->CharInfo Struct. CharInfo.SpawnInfoPtr->SpawnInfo Struct.)</LI></OL> </body> </html> |