Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

47 lines
943 B

# create database gamestats;
# use gamestats;
create table portal
(
UserID CHAR(16),
PRIMARY KEY( UserID ),
LastUpdate DATETIME,
KEY( LastUpdate ),
Version TINYINT,
Count INT,
Seconds INT,
HDR INT,
Captions INT,
Commentary INT,
Easy INT,
Medium INT,
Hard INT,
nonsteam TINYINT,
cybercafe TINYINT,
hl2_chapter TINYINT,
SecondsToCompleteGame INT, # Non-zero if user has completed game
HighestMap CHAR(16),
DXLevel INT,
Deaths INT,
) TYPE=MyISAM;
create table portal_maps
(
UserID CHAR(16),
MapName CHAR(16),
PRIMARY KEY( UserID,MapName ),
LastUpdate DATETIME,
KEY( LastUpdate ),
Version TINYINT,
Count INT,
Seconds INT,
HDR INT,
Captions INT,
Commentary INT,
Easy INT,
Medium INT,
Hard INT,
nonsteam TINYINT,
cybercafe TINYINT,
Deaths INT,
) TYPE=MyISAM;