How to make a 3d label have a new line?
#2

pawn Код:
format(string, sizeof(string), "Owned by: %s Rented by: %s Cost: %d", hInfo[housenumber][Name], hInfo[housenumber][Renter], hInfo[housenumber][Cost]);
    Delete3DTextLabel(HouseLabel[housenumber]);
    HouseLabel[housenumber] = Create3DTextLabel(string, 0x008080FF, iconA,iconB,iconC, 10.0, 0, 1);
Try

pawn Код:
format(string, sizeof(string), "Owned by: %s", hInfo[housenumber][Name]);
format(string, sizeof(string), "Rented by: %s", hInfo[housenumber][Renter]);
format(string, sizeof(string), "Cost: %d", hInfo[housenumber][Cost]);
Delete3DTextLabel(HouseLabel[housenumber]);
HouseLabel[housenumber] = Create3DTextLabel(string, 0x008080FF, iconA,iconB,iconC, 10.0, 0, 1);
Reply


Messages In This Thread
How to make a 3d label have a new line? - by jueix - 21.07.2013, 19:05
Re: How to make a 3d label have a new line? - by ConnorHunter - 21.07.2013, 19:50
Re: How to make a 3d label have a new line? - by jueix - 21.07.2013, 19:56
AW: How to make a 3d label have a new line? - by NaS - 21.07.2013, 20:46

Forum Jump:


Users browsing this thread: 1 Guest(s)