25.10.2014, 13:39
If you mean checking if the entered text is numeric you could do this:
pawn Код:
// Put this in your dialog response
if (strval(inputtext))
{
// The text is numeric, proceed with the code..
}
else
{
// The text is not numeric, reshow the dialog?...
}