help error
#1

how can i fix this error?

Код:
C:\Documents and Settings\Filip i Frose\Desktop\MWRPG\gamemodes\MACEDONIANWORLD.pwn(73608) : error 035: argument type mismatch (argument 1)
Код:
stock GetPlayerID(const Name[])
{
	for(new i; i<MAX_PLAYERS; i++)
	{
	    if(IsPlayerConnected(i))
	    {
	        new pName[MAX_PLAYER_NAME];
			GetPlayerName(i, pName, sizeof(pName));
	        if(strcmp(Name, pName, true)) >> THIS LINE
		 	{
				return i;
			}
		}
	}
	return -1;
}
Reply
#2

stock GetPlayerID(const Name[])
{
for(new i; i<MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
new pName[MAX_PLAYER_NAME];
GetPlayerName(i, pName, sizeof(pName));
if(strcmp(Name, pName, true)) >> THIS LINE
{
return i;
}
}
}
return -1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)