Skip to content

Bookmark Customization

Healing Sentry edited this page Jul 22, 2021 · 1 revision

Customizing Bookmarks

How to customize bookmarks

  1. Go to sentryhud\resource\tools\bookmarks.res
  2. If you want to change the text that appears on the buttons, change the item in the quotations after "labelText" (Example, "labelText" "MGE Server")
  3. Add the IP to the server you want after "engine connect" (Example, engine connect 192.168.0.1:27015)

Example bookmark

"Bookmark_1"
{
	"labelText"		"MGE Server"
	"command"		"engine connect 92.538.120.17:27015"
}

How to make bookmarks do different commands

  1. Go to sentryhud\resource\tools\bookmarks.res
  2. Change the field under command from "engine connect" to "engine COMMAND HERE"

Example

"Bookmark_1"
{
	"labelText"		"Toggle match hud"
	"command"		"engine toggle tf_use_match_hud 0 1"
}