I was using this. //----------------------------------------------------------------------------- // Purpose: Utility to quicky generate a simple console command //----------------------------------------------------------------------------- #define CON_COMMAND( name, description ) \ static void name(); \ static ConCommand name##_command( #name, name, description ); \ static void name()
On Sun, 16 Jan 2005 11:40:17 -0700, Hasan Aljudy <[EMAIL PROTECTED]> wrote: > shouldn't it be a ConVar? > > On Sun, 16 Jan 2005 18:09:04 +0000, Ben Davison > <[EMAIL PROTECTED]> wrote: > > I have been implementing a round timer, I have set a break point at my > > CON_COMMAND inside sdk_gamerules.cpp But when I type "timeset 20" it > > does not fire off the console command thus not activating the > > breakpoint. > > > > Any ideas? > > -- > > - Ben Davison > > - http://www.shadow-phoenix.com > > > > _______________________________________________ > > To unsubscribe, edit your list preferences, or view the list archives, > > please visit: > > http://list.valvesoftware.com/mailman/listinfo/hlcoders > > > > > > _______________________________________________ > To unsubscribe, edit your list preferences, or view the list archives, please > visit: > http://list.valvesoftware.com/mailman/listinfo/hlcoders > > -- - Ben Davison - http://www.shadow-phoenix.com _______________________________________________ To unsubscribe, edit your list preferences, or view the list archives, please visit: http://list.valvesoftware.com/mailman/listinfo/hlcoders

