2021-04-06, 09:49 AM
My label doesn't appear on the server, any idea why?
PHP Code:
enum FInfo {
.
.
.
Text3D:HQLabel
}
PHP Code:
LoadFactions() {
for(new i = 0, l = MAX_FACTIONS; i != l; i)
{
? ? FactionInfo[i][FActive] = false;
? ?
? ? new iMessage[256], iFormat[128];
format(iFormat, sizeof(iFormat), "Faction HQ"); strcat(iMessage, iFormat);
FactionInfo[i][HQLabel] = CreateDynamic3DTextLabel(iMessage, 0xFFFFFFFF, FactionInfo[i][fenter_x], FactionInfo[i][fenter_y], FactionInfo[i][fenter_z].3, 20.0); // Yeah Ok
}
}