Dannke
Ich bekomme aber immer warning habe es so gemacht:
#include <a_samp>
forward Read();
public OnFilterScriptInit()
{
print("------------[Labesls LOADED!]------------\n");
Read();
return 1;
}
public Read()
{
new string[256];
new read[128], params[5][64], Float:Coords[3];
new File:labels = fopen("firmen.ini",io_read);
while(fread(labels,read))
{
split(read,params,'|');
for(new f=0; f<3; f++) Coords[f] = floatstr(params[f]);
// Hier das, was du mit den gelesen Daten anfangen willst
// X, Y und Z sind Coords[0], Coords[1] und Coords[2]
// Beschreibung ist params[3]
// Spielername ist params[4]
format(string, sizeof(string), "Besitzer: %s \n Beschreibung: %s", params[4], params[3]);
new Text3D:njfsjhfdj = Create3DTextLabel(string,0xFFFFFFFF,Coords[0],Coords[1],Coords[2],0,1);
}
fclose(labels);
return 1;
}
stock split(const strsrc[], strdest[][], delimiter)
{
new i, li;
new aNum;
new len;
while(i <= strlen(strsrc)){
if(strsrc[i]==delimiter || i==strlen(strsrc)){
len = strmid(strdest[aNum], strsrc, li, i, 128);
strdest[aNum][len] = 0;
li = i+1;
aNum++;
}
i++;
}
return 1;
}
27) : warning 204: symbol is assigned a value that is never used: "njfsjhfdj"
Zeile:
new Text3D:njfsjhfdj = Create3DTextLabel(string,0xFFFFFFFF,Coords[0],Coords[1],Coords[2],0,1);