02.12.2009, 16:21
pawn Code:
if(15 < strlen(inputtext) || strlen(inputtext) < 3)
...
pawn Code:
if((strlen(inputtext)>15)||(strlen(inputtext)<3))
And what do you mean "DO NOT RESPONDING" ? Do you mean that when a player types something the dialog closes? Or does it stay open? If it stays open then your problem is solved with the previous code.
*Also note you should do an 'else' statement after your 'if(reponse==1)' because someone could just close the window by hitting escape or the second button.