SA-MP Forums Archive
argument type mismatch (1) - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: argument type mismatch (1) (/showthread.php?tid=632133)



argument type mismatch (1) - NBass - 09.04.2017

Hi,
Hmm. Getting a warning about "argument type mismatch (argument 1)", when i'm trying to get the cmdtext to timer function. Any ideas, what did i wrong?

Код HTML:
.pwn(8450) : error 035: argument type mismatch (argument 1)
Код HTML:
cmd = strtok(cmdtext,idx);
if(!strcmp(cmd,"/attack",true))
{
	new money[256];
	money = strtok(cmdtext, idx);
	if(!strlen(money))
	{
    		SendClientMessage(playerid,COLOR_YELLOW,"* Use: /attack [money - "100000"]");
    		return 1;
	}
	// other things.

	new IsAttackCountTimer = SetTimer("IsAttackTimer", 60000, false);
	IsAttackTimer(money, gang, gplace, IsAttackCountTimer, playerid); // Line 8450
	return 1;
}
Код HTML:
forward IsAttackTimer(money, gang, gplace, IsAttackCountTimer, playerid);
public IsAttackTimer(money, gang, gplace, IsAttackCountTimer, playerid)
{
    new Message[410];
    format(Message,sizeof(Message),"*{FFFFFF}[{FF0000}Attack{FFFFFF}] {FF0000}%s {FFFFFF}Gang is Attacking a {FF9900AA}%s for {33AA33AA}%s {FFFFFF} USD.",gang, gplace, money);
    SendClientMessageToAll(0xB8860BAA,Message);
}
Thanks a lot!


Re: argument type mismatch (1) - jasperschellekens - 09.04.2017

which of these lines is displaying the error?


Re: argument type mismatch (1) - NBass - 09.04.2017

IsAttackTimer(money, gang, gplace, IsAttackCountTimer, playerid); // Line 8450


Re: argument type mismatch (1) - jasperschellekens - 09.04.2017

I think it can only have playerid.
Did you try to create it as a stock?

PHP код:
stock IsAttackTimer(moneyganggplaceIsAttackCountTimerplayerid)
{
    new 
Message[410];
    
format(Message,sizeof(Message),"*{FFFFFF}[{FF0000}Attack{FFFFFF}] {FF0000}%s {FFFFFF}Gang is Attacking a {FF9900AA}%s for {33AA33AA}%s {FFFFFF} USD.",ganggplacemoney);
    
SendClientMessageToAll(0xB8860BAA,Message);




Re: argument type mismatch (1) - SyS - 09.04.2017

Money is an array so do it like this
PHP код:
forward IsAttackTimer(money[], ganggplaceIsAttackCountTimerplayerid);
public 
IsAttackTimer(money[], ganggplaceIsAttackCountTimerplayerid



Re: argument type mismatch (1) - NBass - 09.04.2017

@jasperschellekens: Yes, i tried. Same warnings.

@Sreyas: Ou, okey. But now, getting a "error 029: invalid expression, assumed zero" warning.


Re: argument type mismatch (1) - SyS - 09.04.2017

How did you edit your code?


Re: argument type mismatch (1) - NBass - 09.04.2017

Yes, changed it here:
Quote:

IsAttackTimer(money[], gang, gplace, IsAttackCountTimer, playerid); // Line 8450

and here

forward IsAttackTimer(money[], gang, gplace, IsAttackCountTimer, playerid);
public IsAttackTimer(money[], gang, gplace, IsAttackCountTimer, playerid)

Getting on all these lines:
Quote:

error 029: invalid expression, assumed zero




Re: argument type mismatch (1) - SyS - 09.04.2017

Dont put [] on calling statements leave it like that.
IsAttackTimer(money, gang, gplace, IsAttackCountTimer, playerid);


Re: argument type mismatch (1) - NBass - 09.04.2017

Okey.

Getting a warning:
Quote:

error 035: argument type mismatch (argument 2)

on the same line:
Quote:

IsAttackTimer(money, gang, gplace, IsAttackCountTimer, playerid);

gang, and gplace:
Quote:

new gang[128];
if(playerDB[playerid][plead] == 12) gang = "Grove Street";

new gplace[128];
gplace = "Bank";