Gunner Tracker

Changes between Version 4 and Version 5 of ShotSnippets


Ignore:
Timestamp:
01/28/26 12:16:11 (3 weeks ago)
Author:
deex
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ShotSnippets

    v4 v5  
    55
    66Con_DPrintf(S_WARN "%s will get damage %i\n", pEnt->m_classname, damage);
     7// print messages at various developer level
     8IMPORT void Con_Printf( string fmt, ... );  // player mode
     9IMPORT void Con_DPrintf( string fmt, ... );  // developer mode
     10IMPORT void Con_Reportf( string fmt, ... );  // debug mode
     11IMPORT void Exception( const string fmt, ... );  // debug mode      // UNDONE
     12IMPORT void FilePrintf( string *file, string fmt, ... );
     13
     14#define printf  Con_Printf
     15#define Msg  Con_Printf
     16Msg(S_WARN "UTIL_FindEntitiesInSphere found %i matches\n", result.count());
    717
    818backend/sys/const.h -  S_WARN, S_ERROR, TRUE, FALSE, NULL(=nullptr) etc