Samp Pawn Fs Graffitis

Posted on
  1. Samp Pawn Fs Graffitis Para
  2. Samp Pawn Fs Graffitis City
  3. Samp Pawn Fs Graffitis 1

Balkan SA:MP » PAWN skriptanje, gamemodovi, filterskripte, include fajlovi, mape, pluginovi ». FilterScript Tražite neku FS ili Include File? (Čitajte ovdje).

Be notified of new releases

Create your free GitHub account today to subscribe to this repository for new releases and build software alongside 36 million developers.

Sign up

maddinat0r released this Sep 10, 2017 · 15 commits to master since this release

  • bug-fix: multi-line queries are not parsed correctly from files (#166)
  • Windows libmariadb.dll was faulty; this resulted in a connection error for some users
mysql-R41-4-Debian-static.tar.gz1.21 MB
mysql-R41-4-win32.zip471 KB
Samp Pawn Fs Graffitis

maddinat0r released this Jul 12, 2017 · 22 commits to master since this release

update log-core to v0.4

If you're using the log plugin, make sure to update it to v0.4.

mysql-R41-3-Linux-static.tar.gz1.21 MB
mysql-R41-3-win32.zip481 KB

maddinat0r released this Dec 4, 2016 · 35 commits to master since this release

  • all builds from now on prefer the MariaDB C connector
  • log improvements:
    • R41-2 uses the latest log-core version, which supplies call info traces (especially useful when using includes that call plugin functions)
    • several bug fixes (#120)
mysql-R41-2-Debian8-static.tar.gz1.24 MB
mysql-R41-2-win32.zip481 KB

maddinat0r released this Sep 17, 2016 · 42 commits to master since this release

  • new function mysql_error: retrieves the error message of the last unthreaded MySQL command
  • new function mysql_tquery_file: execute all queries from a file threaded
  • mysql_query_file can now return a cache with all results of executed queries
  • bug-fix: log levels are defined incorrectly
  • bug-fix: crash when an empty string value is passed to a callback
  • bug-fix: log calls from natives don't work when PAWN debug information aren't available
  • bug-fix: curly braces in debug log arguments crash the plugin
  • log level changes are now always logged
  • escaping empty strings in mysql_format will not result in an error anymore
  • improved/added some log messages
mysql-R41-Debian8-i686-static.tar.gz1.23 MB
mysql-R41-win32.zip1.46 MB

maddinat0r released this Sep 5, 2016 · 65 commits to master since this release

  • code-breaking changes:
    • removed connection handle parameter from all cache functions
    • added MySQL tag to all connection handle parameters
    • removed redundant prefixes from enumerations (e.g. LOG_ERROR -> ERROR)
    • moved MySQL:handle parameter in functions mysql_escape_string, mysql_stat and mysql_get_charset (it's the last parameter now)
    • swapped places of parameters password[] and database[] in function mysql_connect
    • moved all connection options from mysql_connect to its own system (mysql_init_options and mysql_set_option for more information)
    • renamed mysql_option to mysql_global_options
    • removed cache_get_data (use cache_get_*_count)
    • removed parameter clearvars in orm_delete (see orm_clear_vars for more information)
    • renamed cache_get_row to cache_get_value_index (_int and _float likewise)
    • renamed cache_get_field_content to cache_get_value_name (_int and _float likewise)
    • all cache_get_* (e.g. cache_get_value_index_bool or cache_get_row_count) functions now return their value through a reference parameter instead of returning it directly
    • the logtype parameter in mysql_log has been removed; there is no HTML-logging anymore
    • all y_inline support code has been outsourced, see samp-mysql-yinline-include
    • cache_set_active(Cache:0) doesn't unset the active cache, see cache_unset_active()
    • removed mysql_reconnect
    • removed mysql_current_handle
  • major system changes:
    • stored cache results are now handled globally, not per-connection (as before); that means you can now share stored results between filterscripts and gamemodes
    • the plugin doesn't force-auto-reconnect now (background: the plugin stored the login credentials internally to basically perform a disconnect and immediate connect on specific error cases; now the plugin doesn't store any credentials anymore)
    • all natives now indicate their execution status through their return value (e.g. return 1 on success, 0 on failure)
  • new features:
    • support for multiple result sets
    • support for passing arrays and references to result callbacks (format specifier a and r) (a expects i/d after itself to provide the array size; the size format specifier is also passed as a callback argument)
    • brand new logging system:
      • automatic detection of debug info (compiled with -d2/-d3): if the log system detects any debug information within the script, plugin native logs will have the script file name and line number displayed within the according log line
      • threaded logging: the new log system is now completely threaded and crash-safe, resulting in a faster logging experience (especially when logging with all log levels enabled)
      • third-party compatible: other plugin authors can incorporate this new logging system into their plugins and take advantage of fast, safe and managed text logging
    • ability to create SSL-encrypted connections
    • orm_update and orm_delete now accept callbacks
    • mysql_query_file: send unthreaded queries from a .sql file
    • mysql_connect_file: create a connection handle using a file (which has all the credentials and options stored in an INI-like format)
    • orm_clear_vars: sets all registered variables to 0
    • cache_is_value_null: returns true if the value is NULL
    • cache_get_value_bool: returns false if the value is 0, otherwise true
    • cache_get_value overloads: instead of calling e.g. cache_get_value_index_int(0, 0) one can now just omit the index/name part: cache_get_value_int(0, 0) (this will correctly translate to the former call)
      same goes for all other cache_get_value natives (and cache_is_value_null)
    • cache_get_field_type: returns the type of a field
    • cache_unset_active: unsets the active cache
mysql-R40-Debian8-i686-static.tar.gz1.21 MB
mysql-R40-win32.zip1.44 MB

maddinat0r released this Aug 27, 2016 · 462 commits to master since this release

  • queries are now printed in some places alongside errors/warnings (#105)
  • log levels enum has been renamed to ensure compatibility to the samp-log plugin
  • bug-fix: negative float values near zero with enabled precision are not correctly formatted
  • bug-fix: connections were disconnected twice, which resulted in a warning (#91)
  • added date to log messages
mysql-R39-6-Linux.tar.gz1.32 MB

maddinat0r released this Mar 27, 2016 · 462 commits to master since this release

  • bug-fix: mysql_format formats special negative floats with precision wrong (issue #90)
  • bug-fix: query result processing is skipped on ORM-generated queries when no callback is specified (issue #80)
  • bug-fix: plugin crashes on rare occasions when an internal MySQL query result row is copied (possibly issue #57, #73)
  • minor fix in orm_delete
  • queries generated by the ORM system are now printed as debug information
mysql-r39-5-linux.tar.gz1.32 MB

maddinat0r released this Nov 13, 2015 · 462 commits to master since this release

  • bug-fix: queries are not completely executed before disconnection (issue #64)
  • bug-fix: orm_select/orm_load crashes when a NULL value is being loaded (issue #68)
mysql-r39-4-linux.tar.gz1.26 MB

maddinat0r released this Feb 5, 2015 · 462 commits to master since this release

Samp
  • bug-fix: incompatibility with plugins using the sampgdk, where callbacks sometimes aren't called
  • bug-fix: MySQL client reported out of sync error when using CALL statements
  • bug-fix: cosmetic issue with the HTML log
mysql-r39-3-debian7.tar.gz1.33 MB

Samp Pawn Fs Graffitis Para

mysql-r39-3-win.zip1.34 MB

maddinat0r released this Jun 8, 2014 · 475 commits to master since this release

Samp Pawn Fs Graffitis City

  • fixed several mysql_format buffer overflows
  • fixed a bug where the OnQueryError callback wasn't called if no result callback was used
  • new mysql_option type: LOG_TRUNCATE_DATA; controls whether MySQL data (that means queries and fetched result data) should be truncated (queries to 64 characters, result data to 1024 characters) in the log file or not (true by default)
  • added example scripts into repository (can be found in folder example_scripts)

Samp Pawn Fs Graffitis 1

mysql-r39-linux.tar.gz1.44 MB