Moin,
habe mich mal an ein Haus System gehockt und hänge derzeit beim LoadHouse()
hier der Code
public LoadHouse()
{
for(new i = 0; i < MAX_HOUSE; i++)
{
/*new string2[64];
new File: UserFile = fopen(string2, io_read);
if ( UserFile )
new key[ 256 ] , val[ 256 ];
new Data[ 256 ];
while ( fread( UserFile , Data , sizeof( Data ) ) )
{*/
key = ini_GetKey( Data );
if( strcmp( key , "Float:x" , true ) == 0 ) { val = ini_GetValue( Data ); house[i][Float:x] = strval( val ); }
if( strcmp( key , "Float:y" , true ) == 0 ) { val = ini_GetValue( Data ); house[i][Float:y] = strval( val ); }
if( strcmp( key , "Float:z" , true ) == 0 ) { val = ini_GetValue( Data ); house[i][Float:z] = strval( val ); }
if( strcmp( key , "Preis" , true ) == 0 ) { val = ini_GetValue( Data ); house[i][Preis] = strval( val ); }
if( strcmp( key , "Interior", true ) == 0 ) { val = ini_GetValue( Data ); house[i][Interior] = strval ( val ); }
if( strcmp( key , "Besitzer", true ) == 0 ) { val = ini_GetValue( Data ); house[i][Besitzer] = strval ( val ); }
CreatePickup(1242,23,house[i][Float:x,house[i][Float:y],house[i][Float:z]);
}//end while
fclose(UserFile);//close the file after everything has been read in the while
}
}
Die Fehler :
C:\Users\Christian\Desktop\SA-MPRc7\gamemodes\rl.pwn(12624) : error 017: undefined symbol "key"
C:\Users\Christian\Desktop\SA-MPRc7\gamemodes\rl.pwn(12624) : error 017: undefined symbol "Data"
C:\Users\Christian\Desktop\SA-MPRc7\gamemodes\rl.pwn(12625) : error 017: undefined symbol "key"
C:\Users\Christian\Desktop\SA-MPRc7\gamemodes\rl.pwn(12625) : error 017: undefined symbol "val"
C:\Users\Christian\Desktop\SA-MPRc7\gamemodes\rl.pwn(12625) : error 017: undefined symbol "Data"
C:\Users\Christian\Desktop\SA-MPRc7\gamemodes\rl.pwn(12625) : fatal error 107: too many error messages on one line
Mit der LoadHouse() funktion möchte ich, das die .haus datein Geladen werden und dann Pickups erstellt werden
komm aber gerade nicht weiter :O
MfG: Apoolecu