18.08.2011, 11:17
Hello.
Is there a way to set string variable to string from OnDialogResponse? i mean exactly something like that:
Because i can't set variable [129] because max string for inputtext is 128. I using 129 because it's a Whirpool system by ******. I think there's no way to do that because i tried and tried with
and it nothing given me. So maybe someone other will have idea. Hm?
Is there a way to set string variable to string from OnDialogResponse? i mean exactly something like that:
pawn Код:
new Variable[129], Variable2[129];
//dialog 1
Variable[129] = strlen(inputtext);
//dialog2
Variable2[129] = strlen(inputtext);
// Saving
("code", Variable)
("code2", Variable2)
pawn Код:
printf("%s | %s", Variable, Variable2);