27.05.2015, 21:20
when i compiling i got 2 error
Line:
Код:
C:\Users\crввzя\Desktop\New Serv\gamemodes\NES.pwn(4015) : warning 217: loose indentation C:\Users\crввzя\Desktop\New Serv\gamemodes\NES.pwn(24211) : warning 202: number of arguments does not match definition C:\Users\crввzя\Desktop\New Serv\gamemodes\NES.pwn(29485) : error 001: expected token: "-identifier-", but found "-string-" C:\Users\crввzя\Desktop\New Serv\gamemodes\NES.pwn(29486) : error 035: argument type mismatch (argument 4) Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 2 Errors.
Код:
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; ===> Line : 29485 TotalClanTime( Player, H, M, S ); ===> Line : 29486 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; }