Something wrong with z cordinate [HELP][REP++]
#1

Something wrong with z cordinate load...


pawn Код:
stock LoadRaceFromFile( const szFileName[ ], const szFileFormat[ ] = ".txt" )
{
    if( !fexist( szFileName ) )
        return 0;
       
    new
        File: fHandle = fopen( szFileName, io_read ),
        szName[ 24 ],
        szLine[ 128 ],
        Float: X, Float: Y, Float: Z,
        iCheckpoints = 0
    ;
       
    strmid( szName, szFileName, 0, cellmax );
    strdel( szName, strfind( szName, szFileFormat), cellmax );
   
    new id = CreateRace( szName, 300 );
   
    while( fread( fHandle, szLine ) )
    {
        if( isnull( szLine ) ) continue;
        unformat( szLine, "'AddCheckpointToRace('p<,>s[24]fff');'", szLine, X, Y, Z );
        AddCheckpointToRace( id, X, Y, Z );
        iCheckpoints++;
    }
    printf( "Race %s has been loaded with %d checkpoints!", szName, iCheckpoints );
    fclose( fHandle );
    return 1;
}
Help!
Reply
#2

Maybe you could show us the error before uploading the script itself...
Reply
#3

Float: X, Float: Y, Float: Z,


Float: X, Float: Y, Float: Z);

Instead?.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)