csgo: enable SayText + raise msg limits (#1118)

Rised limits for SayText and HintText protobuffs in csgo, also switched from TextMsg to SayText in csgo.
This commit is contained in:
GAMMACASE
2020-02-26 16:31:50 -08:00
committed by GitHub
parent bcd5e40842
commit 4a8e0799bd
3 changed files with 14 additions and 0 deletions
+4
View File
@@ -513,7 +513,11 @@ bool CHalfLife2::TextMsg(int client, int dest, const char *msg)
/* Use SayText user message instead */
if (chat_saytext != NULL && strcmp(chat_saytext, "yes") == 0)
{
#if SOURCE_ENGINE == SE_CSGO
char buffer[2022];
#else
char buffer[253];
#endif
ke::SafeSprintf(buffer, sizeof(buffer), "%s\1\n", msg);
#if SOURCE_ENGINE == SE_CSGO
+9
View File
@@ -329,7 +329,11 @@ static cell_t PrintToChat(IPluginContext *pContext, const cell_t *params)
g_SourceMod.SetGlobalTarget(client);
#if SOURCE_ENGINE == SE_CSGO
char buffer[2023];
#else
char buffer[254];
#endif
{
DetectExceptions eh(pContext);
@@ -397,7 +401,12 @@ static cell_t PrintHintText(IPluginContext *pContext, const cell_t *params)
g_SourceMod.SetGlobalTarget(client);
#if SOURCE_ENGINE == SE_CSGO
char buffer[0xFFFF];
#else
char buffer[254];
#endif
{
DetectExceptions eh(pContext);
g_SourceMod.FormatString(buffer, sizeof(buffer), pContext, params, 2);