So no DST then?
//Correct for the MxO timezonefunction GetTimeZoneDiff: integer;var TimeZone: TTimeZoneInformation;begin GetTimeZoneInformation(TimeZone); // Pacific is -8, Bias is in minutes, so div by 60 and negative it. // If you're -6 like me, then its 360 div 60. -8 - -6 = -8 +6 = -2 hr diff. // Or if you're +2 GMT, then its -8 - 2, which is -10 hr diff Result := (-8 - (TimeZone.Bias div -60);end;
Nov 2nd Update *Have separated the MCT and the Game Data refresh timers. Currently in making the Game Data timer configurable. Probably ini since I hate registry coding *Added supposed DST code. Converts players time to UTC (taking into account DST), then takes off 8hrs.