Weird /admins command.
#3

I belive that is not what you want to do. That will send that message every single player.

Try this:

Код:
CMD:admins(playerid, params[])
{
        new string[256], aName[MAX_PLAYER_NAME];
        SendClientMessage(playerid, COLOR_ADMIN, "Admins Online:");
        SendClientMessage(playerid, COLOR_ADMIN, "------------------------");
	for(new i = 0; i < MAX_PLAYERS; i++)
	{
		if(pInfo[i][pAdminLevel] != 0)
		{
			GetPlayerName(i, aName, sizeof(aName));
			format(string, sizeof(string), "%s - Admin level %d", aName, pInfo[i][pAdminLevel]);
			SendClientMessage(playerid, -1, string);
			
		}
	}
        SendClientMessage(playerid, COLOR_ADMIN, "---------------------------------------------------------------");
        SendClientMessage(playerid, -1, "If you have any problems, don't hesitate to use /report.");
	SendClientMessage(playerid, -1, "Or you can use /n for questions about the server.");
        SendClientMessage(playerid, COLOR_ADMIN, "---------------------------------------------------------------");
	return 1;
}
Reply


Messages In This Thread
Weird /admins command. - by danielpalade - 15.01.2016, 22:29
Re: Weird /admins command. - by saffierr - 15.01.2016, 23:15
Re: Weird /admins command. - by Alex_T - 15.01.2016, 23:26

Forum Jump:


Users browsing this thread: 1 Guest(s)