ok I have a menu that contains integers that change. I want them to all line up after some text, but im having some problrems.. Heres the code:
Code:
new len = format(szMenu2, 255, "\rChoose your upgrades:\R^n^n")
len += format(szMenu2[len], 255 - len, "\y1.%s Hardrive %i^n", COLOR[UPGRADES[id][0]], UPGRADES[id][0])
len += format(szMenu2[len], 255 - len, "\y2.%s Hover Boost %i^n", COLOR[UPGRADES[id][1]], UPGRADES[id][1])
len += format(szMenu2[len], 255 - len, "\y3.%s Processor %i^n", COLOR[UPGRADES[id][2]], UPGRADES[id][2])
len += format(szMenu2[len], 255 - len, "\y4.%s Damage Amplifier %i", COLOR[UPGRADES[id][3]], UPGRADES[id][3])
Its showing up like this:
Code:
Hardrive 0
Hover Boost 0
Processor 0
Damage Amplifier 0
Its very odd, and I want to be able to fix it... Anyone have any ideas?
__________________