sprint(player, text);
}
+void DebugPrintToChat(entity player, string text)
+{
+ if (autocvar_developer)
+ {
+ PrintToChat(player, text);
+ }
+}
+
/**
* message "": do not say, just test flood control
* return value:
/// \return No return.
void PrintToChat(entity player, string text);
+/// \brief Print the string to player's chat if the server cvar "developer" is
+/// not 0.
+/// \param[in] player Player to print to.
+/// \param[in] text Text to print.
+/// \return No return.
+void DebugPrintToChat(entity player, string text);
+
void player_setupanimsformodel(entity this);
void player_anim(entity this);