Hallo , kann mir jemand mein HouseSystem umbauen , damit 3D TextLabel an den Häusern stehen ?
Also Eigentümer: Miete: usw.
for(new h = 0; h < sizeof(HouseInfo); h++)
{
if(pickupid==HouseInfo[h][hpickid])
{
new string[300];
if(HouseInfo[h][hOwned] == 1)
{
if(HouseInfo[h][hRentabil] == 0)
{
format(string, sizeof(string), "~w~Dieses Haus gehoert: ~n~%s~n~Level : %d",HouseInfo[h][hOwner],HouseInfo[h][hLevel]);
}
else
{
format(string, sizeof(string), "~w~Dieses Haus gehoert: ~n~%s~n~Miete: $%d Level : %d~n~Benutze /rentroom, um ein Zimmer zu mieten",HouseInfo[h][hOwner],HouseInfo[h][hRent],HouseInfo[h][hLevel]);
}
GameTextForPlayer(playerid, string, 5000, 3);
return 1;
}
else
{
format(string, sizeof(string), "~w~Dieses Haus ist zu Verkaufen~n~Beschreibung: %s ~n~Preis: ~g~$%d~n~~w~ Level: %d~n~Benutze /buyhouse um es zu kaufen",HouseInfo[h][hDiscription],HouseInfo[h][hValue],HouseInfo[h][hLevel]);
}
GameTextForPlayer(playerid, string, 5000, 3);
return 1;
}
}
Danke schonmal im vorraus
mfg