By
minesweeperxp GameMenu.res
credit & by:
BoB
Well going along with `Spanky's idea, I went looking for the file when he first posted his screenshots. Instead I found something just as good, GameMenu.res.
Now to get this file I'd suggest you google GFscape. Once you have this find your Counter-Strike.gfc file, and open it.
Go to the "Cstrike > Resource > GameMenu.res", right click it and go to "Extract". Extract it wherever you want for now.
Then open it up with notepad, and you'll see something like this
Quote:
"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"
}
}
|
Now we're going to edit it to say cool stuff to the user.
Everything in red, you can edit. The rest I wouldn't touch.
It should be pretty simple to figre out which is which since the ending is the name of the ingame command.
Here's how mine looks after I edited it.
Quote:
"GameMenu"
{
"1"
{
"label" "Keep Playing Noob"
"command" "ResumeGame"
"OnlyInGame" "1"
}
"2"
{
"label" "Leave The Game Noob"
"command" "Disconnect"
"OnlyInGame" "1"
"notsingle" "1"
}
"4"
{
"label" "What Other Noobs Are Playing?"
"command" "OpenPlayerListDialog"
"OnlyInGame" "1"
"notsingle" "1"
}
"8"
{
"label" ""
"command" ""
"OnlyInGame" "1"
}
"9"
{
"label" "Go Start Your Own Game Noob"
"command" "OpenCreateMultiplayerGameDialog"
}
"10"
{
"label" "Find Another Server Bitch"
"command" "OpenServerBrowser"
}
"11"
{
"label" "Edit Your Options Dipshit"
"command" "OpenOptionsDialog"
}
"12"
{
"label" "Kill CS"
"command" "Quit"
}
}
|
This is how mine looks once you open up CS.
Now we move onto replacing the file. In this example we used GameMenu.res which is found in Cstrike>Resource so now we put it back where we found it, without using GFCscape. You may not have a resource folder in your cstrike folder, so all you do is make one, and place the file in there.
Hope that helped.