This is a multi-part message in MIME format.
--
I have attached the GameMenu.res from cstrike, you can use this as an
example for your mod. You can have any list of options you want in this
menu.

Kyle wrote:

> This is a multi-part message in MIME format.
> --
> [ Picked text/plain from multipart/alternative ]
> Trying to figure this out. I don't have any examples and but I know the
> buttons are controlled by this file. I just want 4 buttons
>
>
>
> Is there a list of all the valid buttons, I basically just want to remove
> the single player stuff from the menu
>
>
>
> Also, what's the deal with src files. They don't work anymore or at least
> they don't save changes to game.cfg
>
>
>
>
>
> Anyway, I am lost rather frustrated with the way steam seems to hid
> everything it ins super ultra elite zip files .blob?? or whatever, im not
> even use if that's the file im talking about, I know nothing about steam.
> Are there no tools are available to look at them for examples and what not?
>
>
>
>
>
> Are custom mods banned from using hlds? How do I make a dedicated server.
>>From what I understand I put my mod dir into the half-life dir , but then I
> look at DMC and CS and TFC and they have separate dir outside the half-life
> dir with a valve dir inside them. I'm completely confused! I don't
> understand why valve has to separate third parry games from first party
> games, why the segregation?  That seriously pisses me off that I have to
> have a "Third party game" I mean cs is a freaking third party game.
>
>
>
> And last but not least, please please please make the spacebar NOT
> automatically paste the first last used console command. I have lots of
> commands with spaces in them and its rather annoying to have to press tab 4
> times in a row just because I want to press the space bar key.
>
>
>
>
>
> --
>
>
> _______________________________________________
> To unsubscribe, edit your list preferences, or view the list archives, please visit:
> http://list.valvesoftware.com/mailman/listinfo/hlcoders
--
"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"
        }
}
--


_______________________________________________
To unsubscribe, edit your list preferences, or view the list archives, please visit:
http://list.valvesoftware.com/mailman/listinfo/hlcoders

Reply via email to