Tagchen, ich wollte mal fragen, wie ich für mein Haussystem die PlayerTextDraws ändern kann--
Sprich
Textdraw1[playerid] = CreatePlayerTextDraw(playerid, 488.750000, 262.500030, "Freies Haus");
PlayerTextDrawLetterSize(playerid, Textdraw1[playerid], 0.449999, 1.600000);
PlayerTextDrawAlignment(playerid, Textdraw1[playerid], 1);
PlayerTextDrawColor(playerid, Textdraw1[playerid], -1);
PlayerTextDrawSetShadow(playerid, Textdraw1[playerid], 0);
PlayerTextDrawSetOutline(playerid, Textdraw1[playerid], 1);
PlayerTextDrawBackgroundColor(playerid, Textdraw1[playerid], 51);
PlayerTextDrawFont(playerid, Textdraw1[playerid], 1);
PlayerTextDrawSetProportional(playerid, Textdraw1[playerid], 1);
zu
Textdraw1[playerid] = CreatePlayerTextDraw(playerid, 488.750000, 262.500030, "PsychoX Haus");
PlayerTextDrawLetterSize(playerid, Textdraw1[playerid], 0.449999, 1.600000);
PlayerTextDrawAlignment(playerid, Textdraw1[playerid], 1);
PlayerTextDrawColor(playerid, Textdraw1[playerid], -1);
PlayerTextDrawSetShadow(playerid, Textdraw1[playerid], 0);
PlayerTextDrawSetOutline(playerid, Textdraw1[playerid], 1);
PlayerTextDrawBackgroundColor(playerid, Textdraw1[playerid], 51);
PlayerTextDrawFont(playerid, Textdraw1[playerid], 1);
PlayerTextDrawSetProportional(playerid, Textdraw1[playerid], 1); bsp.. also das er den String z.b den Besitzer beim Kauf in diesem TextDraw Aktualisieren..
hier werden die Häuser geladen
new pfad[50];
format(pfad,50,"/Häuser/%d.ini",hausid);
if(!fexist(pfad))return 0; //überprüft ob die Datei existiert, wenn nicht wird 0 zurückgegeben
format(hInfo[hausid][hBesitzer],32,"%s",dini_Get(pfad,"besitzer"));
hInfo[hausid][hX] = dini_Float(pfad,"X");
hInfo[hausid][hY] = dini_Float(pfad,"Y");
hInfo[hausid][hZ] = dini_Float(pfad,"Z");
hInfo[hausid][hPreis] = dini_Int(pfad,"preis");
hInfo[hausid][hMieter1] = dini_Int(pfad,"mieter1");
hInfo[hausid][hMieter2] = dini_Int(pfad,"mieter2");
hInfo[hausid][hMieter3] = dini_Int(pfad,"mieter3");
hInfo[hausid][hMieter4] = dini_Int(pfad,"mieter4");
hInfo[hausid][hMieter5] = dini_Int(pfad,"mieter5");
hInfo[hausid][hGekauft] = dini_Int(pfad,"gekauft");
hInfo[hausid][hCreated] = dini_Int(pfad,"hCreated");
hInfo[hausid][hPickup] = AddStaticPickup(1273, 23, hInfo[hausid][hX], hInfo[hausid][hY], hInfo[hausid][hZ]);