-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cd2cbc1
commit 6f53436
Showing
6 changed files
with
72 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,6 @@ cached.wad | |
|
||
demoheader.dmf | ||
settings.scr | ||
user.scr | ||
.DS_Store | ||
buffer.dat | ||
*.bsp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
// NOTE: THIS FILE IS AUTOMATICALLY REGENERATED, | ||
//DO NOT EDIT THIS HEADER, YOUR COMMENTS WILL BE LOST IF YOU DO | ||
// User options script | ||
// | ||
// Format: | ||
// Version [float] | ||
// Options description followed by | ||
// Options defaults | ||
// | ||
// Option description syntax: | ||
// | ||
// "cvar" { "Prompt" { type [ type info ] } { default } } | ||
// | ||
// type = | ||
// BOOL (a yes/no toggle) | ||
// STRING | ||
// NUMBER | ||
// LIST | ||
// | ||
// type info: | ||
// BOOL no type info | ||
// NUMBER min max range, use -1 -1 for no limits | ||
// STRING no type info | ||
// LIST delimited list of options value pairs | ||
// | ||
// | ||
// default depends on type | ||
// BOOL is "0" or "1" | ||
// NUMBER is "value" | ||
// STRING is "value" | ||
// LIST is "index", where index "0" is the first element of the list | ||
|
||
|
||
// Half-Life User Info Configuration Layout Script (stores last settings chosen, too) | ||
// File generated: Mon Nov 18 03:08:54 AM | ||
// | ||
// | ||
// Cvar - Setting | ||
|
||
VERSION 1.0 | ||
|
||
DESCRIPTION INFO_OPTIONS | ||
{ | ||
"cl_punch_axis" | ||
{ | ||
"#Classic_PunchAxis" | ||
{ BOOL } | ||
{ "0" } | ||
} | ||
|
||
"cl_roll_en" | ||
{ | ||
"#Classic_RollEn" | ||
{ BOOL } | ||
{ "1" } | ||
} | ||
|
||
"cl_autojump" | ||
{ | ||
"#Classic_Autojump" | ||
{ BOOL } | ||
{ "0" } | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
sv_airaccelerate 100 | ||
fps_override 1 | ||
fps_max 100 |