Admin chat
#12

Code:
	if(strcmp(cmd, "/admin", true) == 0 || strcmp(cmd, "/a", true) == 0)
	{
	    if(IsPlayerConnected(playerid))
	    {
			GetPlayerName(playerid, sendername, sizeof(sendername));
			new length = strlen(cmdtext);
			while ((idx < length) && (cmdtext[idx] <= ' '))
			{
				idx++;
			}
			new offset = idx;
			new result[96];
			while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
			{
				result[idx - offset] = cmdtext[idx];
				idx++;
			}
			result[idx - offset] = EOS;
			if(!strlen(result))
			{
				SendClientMessage(playerid, COLOR_WHITE, "USAGE: (/a)dmin [admin chat]");
				return 1;
			}
			new atext[60];
			if(PlayerInfo[playerid][pAdmin] == 1){ atext = "SAdmin(1)"; }
			if(PlayerInfo[playerid][pAdmin] == 2){ atext = "Junior Admin(2)"; }
			if(PlayerInfo[playerid][pAdmin] == 3){ atext = "General Admin(3)"; }
			if(PlayerInfo[playerid][pAdmin] == 4){ atext = "Senior Admin(4)"; }
			if(PlayerInfo[playerid][pAdmin] == 1337){ atext = "Elite Admin(1337)"; }
			if(PlayerInfo[playerid][pAdmin] == 99998) { atext = "Head Scripter(99998)"; }
			if(PlayerInfo[playerid][pAdmin] == 99999) { atext = "Server Owner(99999)"; }
			format(string, sizeof(string), "ADMIN CHAT %s: %s",  sendername, result);
			if(PlayerInfo[playerid][pAdmin] >= 1)
			{
				SendAdminMessage(COLOR_LIGHTRED, string);
			}
		}
		return 1;
	}
Reply


Messages In This Thread
Admin chat - by lulo356 - 09.12.2013, 01:16
Re: Admin chat - by Epic_Mickey - 09.12.2013, 06:09
Re: Admin chat - by Biesmen - 09.12.2013, 08:24
Re: Admin chat - by lulo356 - 09.12.2013, 16:11
Re: Admin chat - by Epic_Mickey - 09.12.2013, 16:43
Re: Admin chat - by Henkie - 09.12.2013, 16:54
Re: Admin chat - by Biesmen - 09.12.2013, 19:41
Re: Admin chat - by HB - 10.12.2013, 18:46
Re: Admin chat - by BlackBank3 - 10.12.2013, 23:55
Re: Admin chat - by Biesmen - 11.12.2013, 07:34
Re: Admin chat - by Duck - 11.12.2013, 13:59
Re: Admin chat - by Screaming - 29.12.2013, 16:04
Re: Admin chat - by Epic_Mickey - 29.12.2013, 16:09
Re: Admin chat - by Screaming - 29.12.2013, 16:12
Re: Admin chat - by Epic_Mickey - 29.12.2013, 16:17
Re: Admin chat - by Screaming - 29.12.2013, 16:19
Re: Admin chat - by Epic_Mickey - 30.12.2013, 09:04
Re: Admin chat - by mamorunl - 30.12.2013, 11:56
Re: Admin chat - by Epic_Mickey - 30.12.2013, 14:21
Re: Admin chat - by HB - 30.12.2013, 17:52

Forum Jump:


Users browsing this thread: 3 Guest(s)