Skip to content

Releases: Nickk888SAMP/Dialog-Pages

3.3.0

19 Mar 20:34
b174554
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 3.2.0...3.3.0

3.2.0

25 Aug 13:23
8957757
Compare
Choose a tag to compare
  • 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.

3.1.0

21 Aug 09:30
4e9a22c
Compare
Choose a tag to compare
  • Fixed #4 and #5 by removing the Legacy/Deprecated wrapper function ShowPlayerDialog
  • Updated the Example Script

3.0.0

09 Jun 20:59
b5d2d25
Compare
Choose a tag to compare
  • Added new function ShowPlayerDialogPages
  • Added new definition NDP_AUTO_REMOVE_NEW_LINE
  • Added new definiton DialogPages:
  • Fixed a runtime error when selecting a non existing listitem.
  • Better code writing and some minor bug fixes.

2.5.0

29 May 22:12
cf606fd
Compare
Choose a tag to compare
  • A bug fix with the page items calculation.
  • Better code writing.
  • Support for "logger" to make debugging easier.
  • Supporting YSI's "VA" library.