"If a notification fails upon initialization, cause a Host_Error to stop the program"
);
- NOTIF_WRITE_HARDCODED(
- "frag_verbose", "1",
- "Show extra information when you frag someone (or when you are fragged"
- );
-
NOTIF_WRITE_HARDCODED(
"item_centerprinttime", "1.5",
"How long to show item information centerprint messages (like 'You got the Electro' or such)"
"Amount of time that notification entities last on the server during runtime (In seconds)"
);
- NOTIF_WRITE_HARDCODED(
- "server_allows_frag_verbose", "1",
- "Server side cvar for showing extra information in frag messages... 0 = no extra frag information, "
- "1 = frag information only in warmup, 2 = frag information allowed all the time"
- );
-
NOTIF_WRITE_HARDCODED(
"server_allows_location", "1",
"Server side cvar for allowing death messages to show location information too"
#ifdef SVQC
.float FRAG_VERBOSE;
void Notification_GetCvars(void);
-var float autocvar_notification_server_allows_frag_verbose = 1; // 0 = no, 1 = warmup only, 2 = all the time
var float autocvar_notification_server_allows_location = 1; // 0 = no, 1 = yes
#else
var float autocvar_notification_item_centerprinttime = 1.5;
var float autocvar_notification_show_sprees_center = TRUE;
var float autocvar_notification_show_sprees_center_specialonly = TRUE;
-var float autocvar_notification_frag_verbose = TRUE;
#endif