Skip to content

3.2.0

Compare
Choose a tag to compare
@Nickk888SAMP Nickk888SAMP released this 25 Aug 13:23
· 17 commits to master since this release
8957757
  • 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.