16.05.2013, 09:02
I would just do it the easy way and use Valstr. For example,
You can just use string functions to split it. May be an easier way, but that's just how I'd do it.
pawn Код:
new number = 1223, str[5];
valstr(str, number);
//str[0] = "1"
//str[1] = "2"
//str[2] = "2"
//str[3] = "3"