08.01.2018, 11:46
For each new line of text you're adding in this way, you need to close the string and open it again. By doing "\
Also, why not just create a variable and set it directly instead of using strcat?
Код:
strcat(SpawnPlace3D, "{0072FF}Spawn Zone\n" \
"{00FF00}Type {FF0000}/HM {00FF00}for free Heal & Armour!\n" \
"{0072FF}www.XSW-Servers.com");
Код:
new SpawnPlace3D[] = {"{0072FF}Spawn Zone\n" \
"{00FF00}Type {FF0000}/HM {00FF00}for free Heal & Armour!\n" \
"{0072FF}www.XSW-Servers.com"};

