10.10.2016, 15:21
No need to use format for that:
The problem was because you have \", which is an escaped " (So you can have it inside of a string without cutting it off.
You have to escape \ if you want to use it (I did in my code)
Код:
new injuries[1000], string[64] = "Weapon\tBody Part\tTimes Injured\n\\";
You have to escape \ if you want to use it (I did in my code)