23.05.2014, 21:52
You can copy a string to another using strcat, memcpy, format (not recommended).
and:
pawn Код:
strcpy(vInfo[id-1][Name], inputtext, 30);
pawn Код:
#define strcpy(%0,%1,%2) strcat((%0[0] = '\0', %0), %1, %2)