Hallo Leute,
ich habe ein Problem mit meinen 3D Textlabels.
Wenn ich den Server neustarten steht bei allen sBizzes "Nothing".
Doch bei den den Bizzes werden sie sofort angezeigt.
Hab hier mal nen Code der scheinbar das ganze bei Serverstart ausführt.
Weiß net ob er falsch ist oder es ne andere lösung für das Problem gibt.
for(new h = 0; h < sizeof(BizzInfo); h++)
{
new string3[128];
if(BizzInfo[h][bOwned] == 0)
{
format(string3, sizeof(string3), "Zum Verkauf\n Preis: %d $\nLevel: %d\n",BizzInfo[h][bBuyPrice], BizzInfo[h][bLevelNeeded]);
BizzInfo[h][bLabelID] = Create3DTextLabel(string3,COLOR_TUTBLAU,BizzInfo[h][bEntranceX], BizzInfo[h][bEntranceY], BizzInfo[h][bEntranceZ]+1,22.0,0,0);
AddStaticPickup(1272, 2, BizzInfo[h][bEntranceX], BizzInfo[h][bEntranceY], BizzInfo[h][bEntranceZ]);
pickups++;
}
if(BizzInfo[h][bOwned] == 1)
{
format(string3, sizeof(string3), "Besitzer: %s\nBizteilhaber: %s\nLevel: %d\nEintrittspreis: %d\nProduktpreis: %d $\nBenötigte Produkte: %d",BizzInfo[h][bOwner], BizzInfo[h][bExtortion], BizzInfo[h][bLevelNeeded], BizzInfo[h][bEntranceCost], BizzInfo[h][bPriceProd], BizzInfo[h][bMaxProducts] - BizzInfo[h][bProducts]);
Create3DTextLabel(string3,COLOR_TUTBLAU,BizzInfo[h][bEntranceX], BizzInfo[h][bEntranceY], BizzInfo[h][bEntranceZ]+1,22.0,0,0);
AddStaticPickup(1239, 2, BizzInfo[h][bEntranceX], BizzInfo[h][bEntranceY], BizzInfo[h][bEntranceZ]);
pickups++;
}
}
for(new h = 0; h < sizeof(SBizzInfo); h++)
{
new str[128];
if(SBizzInfo[h][sbOwned] == 0)
{
format(str, sizeof(str), "Zum Verkauf\n Preis: %d $\nLevel: %d\n",SBizzInfo[h][sbBuyPrice], SBizzInfo[h][sbLevelNeeded]);
SBizzInfo[h][sbLabelID] = Create3DTextLabel(string,COLOR_TUTBLAU,SBizzInfo[h][sbEntranceX], SBizzInfo[h][sbEntranceY], SBizzInfo[h][sbEntranceZ]+1,22.0,0,0);
AddStaticPickup(1272, 2, SBizzInfo[h][sbEntranceX], SBizzInfo[h][sbEntranceY], SBizzInfo[h][sbEntranceZ]);
pickups++;
}
if(SBizzInfo[h][sbOwned] == 1)
{
format(str, sizeof(str), "Besitzer: %s\nBizteilhaber: %s\nLevel: %d\nEintrittspreis: %d\nProduktpreis: %d $\nBenötigte Produkte: %d",SBizzInfo[h][sbOwner], SBizzInfo[h][sbExtortion], SBizzInfo[h][sbLevelNeeded], SBizzInfo[h][sbEntranceCost], SBizzInfo[h][sbPriceProd], SBizzInfo[h][sbMaxProducts] - SBizzInfo[h][sbProducts]);
SBizzInfo[h][sbLabelID] = Create3DTextLabel(string,COLOR_TUTBLAU,SBizzInfo[h][sbEntranceX], SBizzInfo[h][sbEntranceY], SBizzInfo[h][sbEntranceZ]+1,22.0,0,0);
AddStaticPickup(1239, 2, SBizzInfo[h][sbEntranceX], SBizzInfo[h][sbEntranceY], SBizzInfo[h][sbEntranceZ]);
pickups++;
}
}
Hoffe jemand kann helfen.
MFG
Nov