Skip to content

Commit

Permalink
Final preparations for release
Browse files Browse the repository at this point in the history
  • Loading branch information
sabianroberts committed Nov 18, 2024
1 parent cd2cbc1 commit 6f53436
Show file tree
Hide file tree
Showing 6 changed files with 72 additions and 5 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ cached.wad

demoheader.dmf
settings.scr
user.scr
.DS_Store
buffer.dat
*.bsp
6 changes: 4 additions & 2 deletions maps/install.bat
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
@echo off
color 9f
title Phoenix: Blue Shift Map Installer
echo DO NOT OVERWRITE EXISTING MAPS!
echo Before continuing, please confirm that you only a legal copy of HALF-LIFE: BLUE SHIFT on Steam and you have it installed on your system.
pause
cls
xcopy ..\..\bshift\maps . /s /e /D
if ERRORLEVEL 1 (
cls
color cf
echo You do not have Half-Life: Blue Shift installed on Steam.
echo Please install it and then run this tool again.
pause
exit
)
echo "Blue Shift Maps installed successfully"
echo Blue Shift Maps installed successfully. Proceed with conversion.
pause
cls
for %%f in (*.bsp) do (
Expand Down
2 changes: 1 addition & 1 deletion resource/GameMenu.res
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"command" "engine toggleconsole; exec previews.cfg"
"notsingle" "1"
"notmulti" "1"
"HelpText" "Find out more about Valve's product lineup."
"HelpText" "Find out more about Gearbox's product lineup."
}
"55"
{
Expand Down
Binary file added resource/blueshiftclassic_english.txt
Binary file not shown.
65 changes: 65 additions & 0 deletions user.scr
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" }
}

}
3 changes: 2 additions & 1 deletion userconfig.cfg
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
sv_airaccelerate 100
fps_override 1
fps_max 100

0 comments on commit 6f53436

Please sign in to comment.