Hallo Community!
Ich möchte ein Bank system erstellen aber irgendwie wird der 3DLabel nicht angezeigt.
enum atmEnum{
a_model,
Float:ax,
Float:ay,
Float:az,
Float:rx,
Float:ry,
Float:rz,
Text3D:atmlabel,
id_a,
}
new amInfo[][atmEnum] = {
{2942,1165.83545, 1363.44666, 10.43870, 0.00000, 0.00000, 180.00000}, //LV Fahrschule ATM 1
{2942,1806.96436, -1881.94189, 13.19830, 0.00000, 0.00000, 0.00000} //LS Noobspawn ATM 2
};
for(new i=0; i<sizeof(amInfo); i++)
{
amInfo[i][id_a] = CreateObject(amInfo[i][a_model], amInfo[i][ax], amInfo[i][ay], amInfo[i][az], amInfo[i][rx], amInfo[i][ry], amInfo[i][rz]);
amInfo[i][atmlabel] = Create3DTextLabel(" ** N **\nDamit sie ihr Konto verwalten können",COLOR_GRAU,amInfo[i][ax],amInfo[i][ay],amInfo[i][az],10,0,1);
}