Need help with /adminsay.
#1



Код:
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!");
		}
	}
Reply
#2

Quote:
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!");
		}
	}
Add:
Quote:

return 1;

Reply
#3

Try this (Not Tested):

pawn Код:
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;
}
Reply
#4

Thanks.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)