3.2.0
- Add inputtext to callback's arguments, fixes #7.
- Reset dialog's name properly with null character.
- Function name can be at most 31 characters long, compiler will warn about this so no need for extra validations.
Users who uses the older versions will need to update their code from:
DialogPages:MyDialog(playerid, response, listitem)
{
// code
}
to
DialogPages:MyDialog(playerid, response, listitem, inputtext[])
{
// code
}
Thanks to @ZantetsukenGT to make this update possible.