Compiling Error
#3

some Bugs fixed and now i have got 2 error

Pleaz help
Код:
C:\Users\crввzя\Desktop\New Serv\gamemodes\NES.pwn(24087) : warning 202: number of arguments does not match definition
C:\Users\crввzя\Desktop\New Serv\gamemodes\NES.pwn(29361) : error 001: expected token: "-identifier-", but found "-string-"
C:\Users\crввzя\Desktop\New Serv\gamemodes\NES.pwn(29362) : error 035: argument type mismatch (argument 4)
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


2 Errors.
Line:
Код:
CMD:cstats( playerid, params[ ] )
{
	new Player;
	if ( sscanf( params, "u", Player ) )
	    return SendClientMessage( playerid, COLOR_ULTRARED, "USAGE: /cstats [PlayerID]" );

	if ( !IsPlayerConnected( Player ) )
	    return SendError( playerid, "Player is not connected !" );

	if ( PlayerInfo[ Player ][ ID ] == 0 )
	    return SendError( playerid, "Player is not in any clan !" );

	new H, M, S; // this is line 29361
    TotalClanTime( Player, H, M, S );
	format( gsString, 512, "\t\t{FF0000}Player Clan Stats:\n\n\
	                        {00FF00}> Clan: {FFFF00}%s\n\
	                        {00FF00}> Points made: {FFFF00}%d\n\
	                        {00FF00}> Deaths: {FFFF00}%d\n", PlayerInfo[ Player ][ Clan ], PlayerInfo[ Player ][ c_points ], PlayerInfo[ Player ][ c_deaths ] );
	format( gsString, 512, "%s{00FF00}> Joined in clan: {FFFF00}%s\n\
							{00FF00}> Clan Time: {FFFF00}%d:%d:%d\n\n\
							{FFFFFF}Use {FF0000}/cstats [PlayerID] {FFFFFF}to see other player clan stats.", gsString, PlayerInfo[ Player ][ JoinedInClan ], H, M, S );
	ShowPlayerDialog( playerid, DIALOG_EMPTY, DIALOG_STYLE_MSGBOX, "{FFFFFF}Stats", gsString, "Ok", "" );
	return 1;
}
Reply


Messages In This Thread
Compiling Error - by Slawiii - 27.05.2015, 18:44
Re : Compiling Error - by Slawiii - 27.05.2015, 19:14
Re : Compiling Error - by Slawiii - 27.05.2015, 19:31

Forum Jump:


Users browsing this thread: 2 Guest(s)