Récupération nom équipe socket
This commit is contained in:
parent
5280fc6f08
commit
e0ac191d3f
1 changed files with 5 additions and 9 deletions
14
infolan.sp
14
infolan.sp
|
@ -11,8 +11,6 @@
|
||||||
char teamCT[5][150];
|
char teamCT[5][150];
|
||||||
char teamT[5][150];
|
char teamT[5][150];
|
||||||
char clientId[128];
|
char clientId[128];
|
||||||
char nomTeamDeux[150];
|
|
||||||
char nomTeamUn[150];
|
|
||||||
|
|
||||||
int allId[20];
|
int allId[20];
|
||||||
int nbAllId = 0;
|
int nbAllId = 0;
|
||||||
|
@ -26,7 +24,7 @@ public Plugin myinfo =
|
||||||
description = "Bot communiquant avec le bot discord \
|
description = "Bot communiquant avec le bot discord \
|
||||||
https://github.com/Lunki51/cs-picker afin d’automatiser \
|
https://github.com/Lunki51/cs-picker afin d’automatiser \
|
||||||
l’InfoLan 2021",
|
l’InfoLan 2021",
|
||||||
version = "1.5.5",
|
version = "1.5.6",
|
||||||
url = "https://git.gnous.eu/Rick/infolanBot"
|
url = "https://git.gnous.eu/Rick/infolanBot"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -130,15 +128,9 @@ public Action SetTeam(int args)
|
||||||
int team = (!strcmp(arg, "ct", false) ? 1 : 2);
|
int team = (!strcmp(arg, "ct", false) ? 1 : 2);
|
||||||
GetCmdArg(2, arg, sizeof(arg));
|
GetCmdArg(2, arg, sizeof(arg));
|
||||||
if (team == 1)
|
if (team == 1)
|
||||||
{
|
|
||||||
ServerCommand("mp_teamname_1 %s", arg)
|
ServerCommand("mp_teamname_1 %s", arg)
|
||||||
nomTeamUn = arg;
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
|
||||||
ServerCommand("mp_teamname_2 %s", arg)
|
ServerCommand("mp_teamname_2 %s", arg)
|
||||||
nomTeamDeux = arg;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (args == 7)
|
if (args == 7)
|
||||||
{
|
{
|
||||||
|
@ -219,6 +211,10 @@ public void SocketUpdateScore(Handle socket, any arg)
|
||||||
{
|
{
|
||||||
char requestStr[1024];
|
char requestStr[1024];
|
||||||
char json[64];
|
char json[64];
|
||||||
|
char nomTeamDeux[150];
|
||||||
|
char nomTeamUn[150];
|
||||||
|
GetTeamName(CS_TEAM_CT, nomTeamUn, sizeof(nomTeamUn));
|
||||||
|
GetTeamName(CS_TEAM_T, nomTeamDeux, sizeof(nomTeamDeux));
|
||||||
FormatEx(json, sizeof(json), "{\"port\": %d, \"%s\": %d, \"%s\": %d}",
|
FormatEx(json, sizeof(json), "{\"port\": %d, \"%s\": %d, \"%s\": %d}",
|
||||||
port, nomTeamUn, CS_GetTeamScore(CS_TEAM_CT),
|
port, nomTeamUn, CS_GetTeamScore(CS_TEAM_CT),
|
||||||
nomTeamDeux, CS_GetTeamScore(CS_TEAM_T));
|
nomTeamDeux, CS_GetTeamScore(CS_TEAM_T));
|
||||||
|
|
Loading…
Reference in a new issue