stock LoadBizz(bizid)
{
new BizzDatei[64];
format(BizzDatei,64,"/Bizz/%d.txt",bizid);
if(!fexist(BizzDatei))return 0;
bInfo[bizid][PosX] = dini_Float(BizzDatei,"PosX");
bInfo[bizid][PosY] = dini_Float(BizzDatei,"PosY");
bInfo[bizid][PosZ] = dini_Float(BizzDatei,"PosZ");
bInfo[bizid][Level] = dini_Int(BizzDatei,"Level");
bInfo[bizid][Konto] = dini_Int(BizzDatei,"Konto");
bInfo[bizid][Preis] = dini_Int(BizzDatei,"Preis");
bInfo[bizid][Interior] = dini_Int(BizzDatei,"Interior");
bInfo[bizid][Besetzt] = dini_Int(BizzDatei,"Besetzt");
format(bInfo[bizid][Besitzer],64,"%s",dini_Get(BizzDatei,"Besitzer"));
if(bInfo[bizid][Besetzt] == 0)
{
bInfo[bizid][Pickup] = CreatePickup(1272 ,23,bInfo[bizid][PosX],bInfo[bizid][PosY],bInfo[bizid][PosZ],0);
new string[196];
format(string,196,""BLAU"Besitzer: "WEISS"Keiner\n"BLAU"Preis: "WEISS"%d$\n"BLAU"Level: "WEISS"%d\nZum Kaufen "WEISS"/buyfirma",bInfo[bizid][Preis],bInfo[bizid][Level]); //3203
bInfo[bizid][Label] = Create3DTextLabel(string,BLUE,bInfo[bizid][PosX],bInfo[bizid][PosY],bInfo[bizid][PosZ],20,0,0);
return print("Das Biz wurde erfolgreich geladen");
}
if(bInfo[bizid][Besetzt] == 1)
{
bInfo[bizid][Pickup] = CreatePickup(1239 ,23,bInfo[bizid][PosX],bInfo[bizid][PosY],bInfo[bizid][PosZ],0);
new string[196];
format(string,196,""BLAU"Besitzer: "WEISS"%s\nZum Betreten: "BLAU"Z",bInfo[bizid][Besitzer]);
bInfo[bizid][Label] = Create3DTextLabel(string,BLUE,bInfo[bizid][PosX],bInfo[bizid][PosY],bInfo[bizid][PosZ],20,0,0);
return print("Das Biz wurde erfolgreich geladen");
}
return 1;
}
C:\Windows\Vss\German v1.1\German[Scripts]\German Reallife v1.2\gamemodes\German.pwn(3203) : error 001: expected token: "-string end-", but found "-identifier-"C:\Windows\Vss\German v1.1\German[Scripts]\German Reallife v1.2\gamemodes\German.pwn(3203) : error 001: expected token: "-string end-", but found "-identifier-"C:\Windows\Vss\German v1.1\German[Scripts]\German Reallife v1.2\gamemodes\German.pwn(3203) : warning 215: expression has no effectC:\Windows\Vss\German v1.1\German[Scripts]\German Reallife v1.2\gamemodes\German.pwn(3203) : error 001: expected token: ";", but found "-identifier-"C:\Windows\Vss\German v1.1\German[Scripts]\German Reallife v1.2\gamemodes\German.pwn(3203) : fatal error 107: too many error messages on one line