[HELP] Duble Message
#10

Quote:
Originally Posted by monster010
Посмотреть сообщение
Код:
	if(strcmp(cmd, "/hc", true) == 0 || strcmp(cmd, "/hchat", 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[64];
			while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
			{
				result[idx - offset] = cmdtext[idx];
				idx++;
			}
			result[idx - offset] = EOS;
			if(!strlen(result))
			{
				SendClientMessage(playerid, COLOR_YELLOW2, "USAGE: (/hchat) [chat]");
				return 1;
			}
			if (PlayerInfo[playerid][pHelper] >= 1)
			format(string, sizeof(string), "{1DFB04}Chat - [Helper] %s : %s **", sendername, result);
			else if (PlayerInfo[playerid][pAdmin] >= 1)
			format(string, sizeof(string), "{1DFB04}Chat - [Admin] %s : %s **", sendername, result);
			{
                SendHelperMessage(COLOR_YELLOW2, string);
			}   SendAdminMessage(COLOR_YELLOW2, string);
		}
		return 1;
	}
Are you an admin? because from what you are coding it sends 2 messages one to Admins and one to Helpers, therefore if you're a helper and an admin then you'll get message twice.
Reply


Messages In This Thread
[HELP] Duble Message - by monster010 - 15.05.2014, 11:45
Re: [HELP] Duble Message - by Parallex - 15.05.2014, 11:48
Re: [HELP] Duble Message - by monster010 - 15.05.2014, 12:13
Re: [HELP] Duble Message - by Parallex - 15.05.2014, 12:15
Re: [HELP] Duble Message - by monster010 - 15.05.2014, 12:17
Re: [HELP] Duble Message - by Parallex - 15.05.2014, 12:19
Re: [HELP] Duble Message - by monster010 - 15.05.2014, 12:20
Re: [HELP] Duble Message - by EzioRock - 15.05.2014, 12:21
Re: [HELP] Duble Message - by Parallex - 15.05.2014, 12:22
Re: [HELP] Duble Message - by DaniceMcHarley - 15.05.2014, 12:47

Forum Jump:


Users browsing this thread: 2 Guest(s)