Hallo,
ich hatte das Problem das bei mir keine Maps mehr geladen werden nach einer zeit.
Nun habe ich gedebuggt.
Es liegt am Pfad.
Er gibt keinen Pfad mehr an die Load Funktion weiter.
Was ist falsch`?
Code:
Code
stock LoadRandomMap(Float:offZ = 0.0)
{
printf("debug2");
new rand;
do {
rand = random((LoadData[lMaxMaps]-10000000))+10000000;
}
while(LoadData[lLastMap] == rand);
new loadstr[100];
printf("debug3");
getproperty(0, "", rand, loadstr);
strunpack(loadstr, loadstr, sizeof(loadstr));
mapmusik = loadstr;
strins(loadstr,"/Racemaps/",0);
strcat(loadstr,"/objects.map");
return LoadMap(loadstr,offZ);
}
Alles anzeigen