Hallo liebe Leser,
ich habe ein Problem , ich habe versucht zu scripten , dass sobald das Script startet aus einer Textdatei ausgelesen wird welche Objecte dort drinne sind und das sie anschließend erstellt werden.
Hier mein Script:
public OnFileRead()
{
new File:cfg=fopen("objects.txt", io_read);
new string[256];
new string2[256];
new Float:posxx,Float:posyy,Float:poszz,Float:rotxx,Float:rotyy,Float:rotzz;
new model;
format(string2, sizeof(string2), "CreateObject(%d,%f,%f,%f,%f,%f,%f);",model,posxx,posyy,poszz,rotxx,rotyy,rotzz);
while(fread(cfg, string))
{
if(strcmp(string,string2, true, 7)==0)
{
CreateObject(model,posxx,posyy,poszz,rotxx,rotyy,rotzz);
printf("CreateObject(%d,%f,%f,%f,%f,%f,%f);", model,posxx,posyy,poszz,rotxx,rotyy,rotzz);
}
}
return 1;
}
Mein Problem , sie werden weder gelesen noch gespawnt.
Bitte um Hilfe ich weiß nicht mehr weiter.
Mit freundlichen Grüßen: EL_Dorado