25.06.2011, 12:12
No, you need to check more than just the FIRST cell.
To filter the placeholder (%) from dialogs too, add this code at the top of OnDialogResponse:
To filter the placeholder (%) from dialogs too, add this code at the top of OnDialogResponse:
pawn Код:
for(new iCh; iCh < strlen(inputtext); iCh++) {
if(inputtext[iCh] == '%')
inputtext[iCh] = ' ';
}