Argument type mismatch (Type 2)
#1

Code:
if(strcmp(cmd, "/b", true) == 0)
	{
	    if(IsPlayerConnected(playerid))
	    {
	        if(gPlayerLogged[playerid] == 0)
	        {
	            SendClientMessage(playerid, COLOR_GREY, "   You havent logged in yet !");
	            return 1;
	        }
			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: /b [local ooc chat]");
				return 1;
			}
			else
			{
				format(string, sizeof(string), "[L-OOC]%s: %s ", sendername, result);
			}
			ProxDetector(20.0, playerid, string,COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5);
		}
		return 1;
is my /b command, and I get the error, can any one help?

===Better?
Reply
#2

Use pawn tabs when posting code so i can read it
Reply
#3

Edited, thanks.
Reply
#4

Quote:
Originally Posted by R3G1ST3R
View Post
pawn Code:
if(strcmp(cmd, "/b", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(gPlayerLogged[playerid] == 0)
            {
                SendClientMessage(playerid, COLOR_GREY, "   You havent logged in yet !");
                return 1;
            }
            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: /b [local ooc chat]");
                return 1;
            }
            else
            {
                format(string, sizeof(string), "[L-OOC]%s: %s ", sendername, result);
            }
            ProxDetector(20.0, playerid, string,COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5);
        }
        return 1;
is my /b command, and I get the error, can any one help?
at which line?
Reply
#5

C:\Documents and Settings\xxxxxx\Desktop\Server\gamemodes\crp.pwn(1 330) : warning 219: local variable "sendername" shadows a variable at a preceding level
C:\Documents and Settings\xxxxxx\Desktop\Server\gamemodes\crp.pwn(1 766) : error 035: argument type mismatch (argument 2)
C:\Documents and Settings\xxxxxx\Desktop\Server\gamemodes\crp.pwn(1 766) : error 035: argument type mismatch (argument 2)
C:\Documents and Settings\xxxxxx\Desktop\Server\gamemodes\crp.pwn(1 793) : warning 225: unreachable code
C:\Documents and Settings\xxxxxx\Desktop\Server\gamemodes\crp.pwn(1 793) : warning 217: loose indentation
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
Reply
#6

Quote:
Originally Posted by R3G1ST3R
View Post
C:\Documents and Settings\xxxxxx\Desktop\Server\gamemodes\crp.pwn(1 330) : warning 219: local variable "sendername" shadows a variable at a preceding level
Can be easy fixed, by replacing all the 'sendername' in the command by a different name.
Example: giveplayer

On which lines you got the argument type mismatched?
Reply
#7

What's the line number of
Code:
if(strcmp(cmd, "/b", true) == 0)
Just for reference?
Reply
#8

Quote:
Originally Posted by kazai
View Post
What's the line number of
Code:
if(strcmp(cmd, "/b", true) == 0)
Just for reference?
EDIT: nvm
Reply
#9

1757 Is the /b line number
Reply
#10

Quote:
Originally Posted by [DDC]Delight
View Post
Can be easy fixed, by replacing all the 'sendername' in the command by a different name.
Example: giveplayer

On which lines you got the argument type mismatched?
What do you mean? Im a nooby scripter, and I just want to get a /b command so I can turn my roleplay server online.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)