Changing The Menu in cs Difficulty: Advanced |
| Category: CS > Sprites & GUIs | Author(s): |

Note: this tut is for advanced cs users
in ROOT/cstrike/resource is the file gamemenu.res located where the menu of cs is show'n
"GameMenu"
{
"1"
{
"label" "#GameUI_GameMenu_ResumeGame"
"command" "ResumeGame"
"OnlyInGame" "1"
}
"2"
{
"label" "#GameUI_GameMenu_Disconnect"
"command" "Disconnect"
"OnlyInGame" "1"
"notsingle" "1"
}
"4"
{
"label" "#GameUI_GameMenu_PlayerList"
"command" "OpenPlayerListDialog"
"OnlyInGame" "1"
"notsingle" "1"
}
"8"
{
"label" ""
"command" ""
"OnlyInGame" "1"
}
"9"
{
"label" "#GameUI_GameMenu_NewGame"
"command" "OpenCreateMultiplayerGameDialog"
}
"10"
{
"label" "#GameUI_GameMenu_FindServers"
"command" "OpenServerBrowser"
}
"11"
{
"label" "#GameUI_GameMenu_Options"
"command" "OpenOptionsDialog"
}
"12"
{
"label" "#GameUI_GameMenu_Quit"
"command" "Quit"
}
}
its pretty simple you can add or remove if you want
a little example of a edited version
"GameMenu"
{
"1"
{
"label" "Continue with your noob game"
"command" "ResumeGame"
"OnlyInGame" "1"
}
"2"
{
"label" "LEAVE NOOB LEAVE!"
"command" "Disconnect"
"OnlyInGame" "1"
"notsingle" "1"
}
"4"
{
"label" "List of noobs"
"command" "OpenPlayerListDialog"
"OnlyInGame" "1"
"notsingle" "1"
}
"8"
{
"label" "FFS RR!"
"command" "engine rcon sv_restartround 1"
"OnlyInGame" "1"
}
"9"
{
"label" "Start a game thats only for noobs like you"
"command" "OpenCreateMultiplayerGameDialog"
}
"10"
{
"label" "Er... find l337 servers "
"command" "OpenServerBrowser"
}
"11"
{
"label" "Customize this noob config"
"command" "OpenOptionsDialog"
}
"12"
{
"label" "OMG STFU I ALREADY QUIT NOOB!"
"command" "Quit"
}
}
as you see i changed the menu AND i also added a custom future, if you want to execute a console command always add engine brefore it
another example:
{
"label" "Run my Script"
"command" "engine exec scripzor/myscript.rc"
"OnlyInGame" "1"
}
hf customizing |
| Added: 3 years ago | Tags: changing, menu |
Provide constructive feedback.
What is "constructive"?You cannot post yet!Get involved on FPSB by posting your thoughts. Give authors your feedback to help them develop.
To post in this submission
register or login.