ReActions v0.8.0

Details

  • Filename
    ReActions.jar
  • Uploaded by
  • Uploaded
    May 2, 2014
  • Size
    334.93 KB
  • Downloads
    297
  • MD5
    40a5b999ced179d6499c999d5f094649

Supported Bukkit Versions

  • 1.7.4
  • 1.7.2
  • 1.5.2

Changelog

v0.8.0

  • Fixed compatibility issues provided by latest versions of bukkit API. Now ReActions is compatible with: 1.5.x, 1.6.x, 1.7.x (Possibly it works with 1.4.x, but I did not test it)
  • Now all parameters supports braces — "{" and "}" to determine parameter values that contains text. For example, player:John Lennon will point to player John, but player:{John Lennon} will point to John Lennon.
  • Added MySQL support!
  • New flag SQL_CHECK. Compares result of SQL-query with provided value. Parameters: query:{SELECT...} value:<value> column:<column>
  • New flag SQL_RESULT. Checks if result of SQL-query returning any data. If result is empty flag will return false. Parameter: query: {SELECT...}
  • New action SQL_SELECT. Executes SQL-query and store value of field located in first row (and defined column) in variable. Parameters: query:{SELECT... } variable:<variable id> player:<varibale owner> column:<column>
  • New action SQL_UPDATE. Executes update-query (update field of table at MySQL database) Parameter: query:{UPDATE... }
  • New action SQL_INSERT. Executes insert-query (insert new row in table at MySQL database) Parameter: query:{INSERT... }