sourcemod 1.13 upgrade. moved all plugins from steamworks to ripext. added smjanson and asyncsocket.inc an extra time so its easier to find. updated plugins that would not compile with 1.13
This commit is contained in:
@@ -2701,11 +2701,11 @@ public Action Event_PlayerSay(Handle event, const char[] name, bool dontBroadcas
|
||||
{
|
||||
if (g_msgAuthor == -1 || GetClientOfUserId(GetEventInt(event, "userid")) != g_msgAuthor)
|
||||
{
|
||||
return;
|
||||
return Plugin_Handled;
|
||||
}
|
||||
|
||||
if (strlen(g_msgText) == 0)
|
||||
return;
|
||||
return Plugin_Handled;
|
||||
|
||||
int[] players = new int[MaxClients + 1];
|
||||
int playersNum = 0;
|
||||
@@ -2738,7 +2738,7 @@ public Action Event_PlayerSay(Handle event, const char[] name, bool dontBroadcas
|
||||
if (!playersNum)
|
||||
{
|
||||
g_msgAuthor = -1;
|
||||
return;
|
||||
return Plugin_Handled;
|
||||
}
|
||||
|
||||
Handle SayText2 = StartMessage("SayText2", players, playersNum, USERMSG_RELIABLE | USERMSG_BLOCKHOOKS);
|
||||
@@ -2759,6 +2759,7 @@ public Action Event_PlayerSay(Handle event, const char[] name, bool dontBroadcas
|
||||
}
|
||||
|
||||
g_msgAuthor = -1;
|
||||
return Plugin_Handled;
|
||||
}
|
||||
|
||||
// 888b 888 d8888 88888888888 8888888 888 888 8888888888 .d8888b.
|
||||
|
||||
Reference in New Issue
Block a user