
if(strcmp(cmd, "/adminsay", true) == 0)
{
if(IsPlayerAdmin(playerid))
{
new result[256];
new pname[MAX_PLAYER_NAME], string5[256];
GetPlayerName(playerid, pname, sizeof(pname));
format(string5,sizeof(string5), "Administraator %s: %s", pname, result);
SendClientMessageToAll(VARV_VALGE, string5);
}
else
{
SendClientMessage(playerid, VARV_VALGE, "Sa ei ole RCON administraatorina!");
}
}
|
Originally Posted by Picharelo
![]() Код:
if(strcmp(cmd, "/adminsay", true) == 0)
{
if(IsPlayerAdmin(playerid))
{
new result[256];
new pname[MAX_PLAYER_NAME], string5[256];
GetPlayerName(playerid, pname, sizeof(pname));
format(string5,sizeof(string5), "Administraator %s: %s", pname, result);
SendClientMessageToAll(VARV_VALGE, string5);
}
else
{
SendClientMessage(playerid, VARV_VALGE, "Sa ei ole RCON administraatorina!");
}
}
|
|
return 1; |
if(strcmp(cmd, "/adminsay", true) == 0)
{
if (IsPlayerAdmin(playerid))
{
new idx,
result[128],
string5[128],
pname[MAX_PLAYER_NAME];
result = strtok(cmdtext, idx);
GetPlayerName(playerid, pname, sizeof(pname));
if(!strlen(result))
{
SendClientMessage(playerid, VARV_VALGE, "Use: /adminsay [message]");
return 1;
}
format(string5, sizeof(string5), "Administraator %s: %s",pname,result);
SendClientMessageToAll(VARV_VALGE, string5);
}
else SendClientMessage(playerid, VARV_VALGE, "Sa ei ole RCON administraatorina!");
return 1;
}