[HELP] Duble Message
#1

I apear 2x message?

ScreenShot
Reply
#2

"Are we meant to guess your code?" -******.
Reply
#3

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

Why don't you use sscanf, it's the simple and best way for the params..
Reply
#5

Can you give me a link or tutorial?
Reply
#6

https://sampforum.blast.hk/showthread.php?tid=120356
Reply
#7

And what this plugin helps me?
Reply
#8

https://sampforum.blast.hk/showthread.php?tid=120356

Sscanf
Reply
#9

Quote:
Originally Posted by monster010
Посмотреть сообщение
And what this plugin helps me?
Read it, it has more information.
Reply
#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


Forum Jump:


Users browsing this thread: 1 Guest(s)