Upvote Upvoted 1 Downvote Downvoted
"Console" button for default hud
posted in Customization
1
#1
0 Frags +

Is there somewhere I can find this modification? If not what file do I need to edit
Update: I just made it so that the "report bug" button brings up the console, so my problem is solved for now.

Is there somewhere I can find this modification? If not what file do I need to edit
Update: I just made it so that the "report bug" button brings up the console, so my problem is solved for now.
2
#2
0 Frags +

adv. options => enable developer's console. default is ~ I believe
you can also put -console in your launch options and have it open by default

adv. options => enable developer's console. default is ~ I believe
you can also put -console in your launch options and have it open by default
3
#3
11 Frags +
Azazel-adv. options => enable developer's console. default is ~ I believe
you can also put -console in your launch options and have it open by default

I phrased it badly, I meant editing in a new button on the main menu that, once clicked, makes the console pop up since binds don't always work on the main menu

[quote=Azazel-]adv. options => enable developer's console. default is ~ I believe
you can also put -console in your launch options and have it open by default[/quote]
I phrased it badly, I meant editing in a new button on the main menu that, once clicked, makes the console pop up since binds don't always work on the main menu
4
#4
7 Frags +

taken from : https://github.com/bakkerthehacker/BSPlusHUD

"ConsoleButton"
	{
		"ControlName"	"CExImageButton"
		"fieldName"		"ConsoleButton"
		"xpos"			"c326"
		"ypos"			"437"
		"zpos"			"1"
		"wide"			"75"
		"tall"			"25"
		"autoResize"	"0"
		"pinCorner"		"3"
		"visible"		"1"
		"enabled"		"1"
		"tabPosition"	"0"
		"labelText"		"Console"
		"font"			"HudFontSmallBold"
		"textAlignment"	"west"
		"textinsetx"	"15"
		"dulltext"		"0"
		"brighttext"	"0"
		"default"		"1"
		"Command"		"engine con_enable 1;toggleconsole"

		"navUp"			"Notifications_Panel"
		"navLeft"		"SettingsButton"

		"sound_depressed"	"UI/buttonclick.wav"
		"sound_released"	"UI/buttonclickrelease.wav"

		"image_drawcolor"	"235 226 202 255"		
	}
taken from : https://github.com/bakkerthehacker/BSPlusHUD
[code]"ConsoleButton"
{
"ControlName" "CExImageButton"
"fieldName" "ConsoleButton"
"xpos" "c326"
"ypos" "437"
"zpos" "1"
"wide" "75"
"tall" "25"
"autoResize" "0"
"pinCorner" "3"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
"labelText" "Console"
"font" "HudFontSmallBold"
"textAlignment" "west"
"textinsetx" "15"
"dulltext" "0"
"brighttext" "0"
"default" "1"
"Command" "engine con_enable 1;toggleconsole"

"navUp" "Notifications_Panel"
"navLeft" "SettingsButton"

"sound_depressed" "UI/buttonclick.wav"
"sound_released" "UI/buttonclickrelease.wav"

"image_drawcolor" "235 226 202 255"
}[/code]
5
#5
0 Frags +
Scoutmantaken from : https://github.com/bakkerthehacker/BSPlusHUD
"ConsoleButton"
	{
		"ControlName"	"CExImageButton"
		"fieldName"		"ConsoleButton"
		"xpos"			"c326"
		"ypos"			"437"
		"zpos"			"1"
		"wide"			"75"
		"tall"			"25"
		"autoResize"	"0"
		"pinCorner"		"3"
		"visible"		"1"
		"enabled"		"1"
		"tabPosition"	"0"
		"labelText"		"Console"
		"font"			"HudFontSmallBold"
		"textAlignment"	"west"
		"textinsetx"	"15"
		"dulltext"		"0"
		"brighttext"	"0"
		"default"		"1"
		"Command"		"engine con_enable 1;toggleconsole"

		"navUp"			"Notifications_Panel"
		"navLeft"		"SettingsButton"

		"sound_depressed"	"UI/buttonclick.wav"
		"sound_released"	"UI/buttonclickrelease.wav"

		"image_drawcolor"	"235 226 202 255"		
	}

Thank you, this goes in "mainmenuoverrides" right?

[quote=Scoutman]taken from : https://github.com/bakkerthehacker/BSPlusHUD
[code]"ConsoleButton"
{
"ControlName" "CExImageButton"
"fieldName" "ConsoleButton"
"xpos" "c326"
"ypos" "437"
"zpos" "1"
"wide" "75"
"tall" "25"
"autoResize" "0"
"pinCorner" "3"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
"labelText" "Console"
"font" "HudFontSmallBold"
"textAlignment" "west"
"textinsetx" "15"
"dulltext" "0"
"brighttext" "0"
"default" "1"
"Command" "engine con_enable 1;toggleconsole"

"navUp" "Notifications_Panel"
"navLeft" "SettingsButton"

"sound_depressed" "UI/buttonclick.wav"
"sound_released" "UI/buttonclickrelease.wav"

"image_drawcolor" "235 226 202 255"
}[/code][/quote]
Thank you, this goes in "mainmenuoverrides" right?
6
#6
0 Frags +
ZeRo5Thank you, this goes in "mainmenuoverrides" right?

yes

[quote=ZeRo5]Thank you, this goes in "mainmenuoverrides" right?[/quote]

yes
7
#7
0 Frags +
ScoutmanZeRo5Thank you, this goes in "mainmenuoverrides" right?
yes

Unfortunately it doesn't really work with the current default hud

[quote=Scoutman][quote=ZeRo5]Thank you, this goes in "mainmenuoverrides" right?[/quote]

yes[/quote]
Unfortunately it doesn't really work with the current default hud
8
#8
Fireside Casts
2 Frags +

you could theoretically change a button you don't use to open console instead.
head to your gamemenu.res file and look around for something you don't use, like the streams button or the in-game store (who uses either of those) and hijack it for the console
change the command to something like "engine con_enable 1;toggleconsole" and it should work pretty easily

you could theoretically change a button you don't use to open console instead.
head to your gamemenu.res file and look around for something you don't use, like the streams button or the in-game store (who uses either of those) and hijack it for the console
change the command to something like "engine con_enable 1;toggleconsole" and it should work pretty easily
9
#9
6 Frags +
antlersyou could theoretically change a button you don't use to open console instead.
head to your gamemenu.res file and look around for something you don't use, like the streams button or the in-game store (who uses either of those) and hijack it for the console
change the command to something like "engine con_enable 1;toggleconsole" and it should work pretty easily

I just did that, thank you for the suggestion.

[quote=antlers]you could theoretically change a button you don't use to open console instead.
head to your gamemenu.res file and look around for something you don't use, like the streams button or the in-game store (who uses either of those) and hijack it for the console
change the command to something like "engine con_enable 1;toggleconsole" and it should work pretty easily[/quote]
I just did that, thank you for the suggestion.
10
#10
0 Frags +

it perfectly work with me, but glad you found another solution

it perfectly work with me, but glad you found another solution
11
#11
0 Frags +
Scoutmanit perfectly work with me, but glad you found another solution

Thank you for the suggestion, I must have messed up somewhere but I think I'll go with the other solution for now

[quote=Scoutman]it perfectly work with me, but glad you found another solution[/quote]
Thank you for the suggestion, I must have messed up somewhere but I think I'll go with the other solution for now
Please sign in through STEAM to post a comment.