Quote:
Originally Posted by Ralfie
sscanf!
Code:
new
info[3][10];
sscanf("Test1, test2, test3", "p<,>s[10]s[10]s[10]", info[0], info[1], info[2]);
for (new i = 0; i != 3; i++) {
printf("%i))) %s", i, info[i]);
}
And you will get:
|
How can I do this when I'm using PlayerInfo[playerid][TicketInfo]; ?