diff options
author | Tim Angus <tim@ngus.net> | 2001-09-10 00:46:26 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2001-09-10 00:46:26 +0000 |
commit | bb01fdfa0ebc16eaf51a3d7adc20ccf3acc3dbd3 (patch) | |
tree | 4ac8ed983e8b0e489e4c68b02f9f6e389280932e /src/cgame/cg_consolecmds.c | |
parent | 7ee1d69b7370b2a494fa588b786313e95c89281b (diff) |
Remains of bank, metal gibs for buildables
Diffstat (limited to 'src/cgame/cg_consolecmds.c')
-rw-r--r-- | src/cgame/cg_consolecmds.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/cgame/cg_consolecmds.c b/src/cgame/cg_consolecmds.c index 4e7bfd15..c36a57b8 100644 --- a/src/cgame/cg_consolecmds.c +++ b/src/cgame/cg_consolecmds.c @@ -244,6 +244,15 @@ static void CG_ClientMenu( const char *menuname ) trap_SendConsoleCommand( "menu mcusell\n" ); trap_SendConsoleCommand( "undefmenu mcusell\n" ); } + else if( !Q_stricmp( menuname, "hbankstat" ) ) + { + //FIXME: implement this + strcpy( menuDef, "5,5|Statement|1,1,1,1|0.000,0.412,0.702,1|1,1,1,1|2|32|You have something in this bank|OK,!" ); + + trap_SendConsoleCommand( va( "defmenu bankstat \"%s\"\n", menuDef ) ); + trap_SendConsoleCommand( "menu bankstat\n" ); + trap_SendConsoleCommand( "undefmenu bankstat\n" ); + } else trap_SendConsoleCommand( va( "%s not defined", menuname ) ); } |