[Plugin] [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011
#1

SA:MP MySQL Plugin
Version: 2.1.1

Now Linux Stable!

Latest Release: 2.1.1 Build-165

ChangeLog:
  • 1/25/2011 - v2.1.1
    Fixed bug that caused the server to crash when mysql_close was called with multiple connections.
    Fixed bug with mysql_query_array that caused strings to randomly override each other.
    Fixed bug that caused the server to crash when a null string was passed through a parameter.
    Changed a few error strings.

  • 11/24/2010 - v2.1:
    Thanks to Blacklite properly debugging the plugin, all reported crashes have been fixed.
    The following functions which were unstable have been fixed: mysql_fetch_field, mysql_fetch_field_num, mysql_fetch_int, mysql_fetch_float and mysql_fetch_string.
    I have also found a proper way to fix libmysqlclient_r.so.X missing errors. See below.
    Fixed mysql_query's return value; returns 0 on successful query, returns error id on failed query,

  • 8/7/2010 - v2.0:
    Biggest update since initial release.
    Entire plugin has been re-designed using classes, and all functions have been re-coded.
    Full linux multi-threaded compatibility, compiled with thread-safe mysql build. Tested on linux (debian 5) server, sever executed a total of 3,542 queries and was online for about a half hour, no crashes. I will also be testing it further for longer periods of time.
    Added mysql_init: initializes mysql connection and returns connection handle, (instead of initializing mysql inside mysql_connect).
    Removed mysql_reload function and added mysql_refresh, added mysql_reload define macro.
    Added mysql_get_character_set: gets the current character set in use.
    Added wiki page to the SA:MP Wiki.

  • 3/26/2010 - v1.2.1:
    Fixed various bugs that caused the server to crash with various functions.
    Added more error checking to prevent crashes even if pawn coded badly.
    Cleaned up the code more.
    Optimized the code a lot.
    Changed some small things with the thread (for testing).
    Added list functionality for the AMX variable, it should work fully with filterscripts now. (Thanks to Incognito for the technique)

  • 2/7/2010 - v1.2:
    Added new parameter to mysql_query to push a spare id of any kind to the threaded callback. (suggested by Wicko)
    Added mysql_query_array, which is the same as mysql_query, but lets you push an array of integers, floats, booleans, etc, or a string to OnMysqlQueryArray.
    Added callback OnMysqlQueryArray which works with mysql_query_array.
    Fixed some more small coding errors.
    Here is another small example by Wicko on how the new callback and function is used.

  • 2/3/2010 - v1.1.2:
    Fixed small bug with mysql_fetch_field.
    Added mysql_fetch_row_data to work in conjunction with mysql_fetch_field. Here is an example on how to use this function.
    Added mysql_fetch_string.

  • 2/2/2010 - v1.1.1:
    Added ProcessTick functionality to the plugin to prevent random crashes when calling OnMysqlQuery from query thread.
    Updated mysql_query to prevent allocated memory from not being free'd on error. (Thanks to Wicko)
    Changed max connections to 4. If you need to be connected to more than 4 databases at a time you can change MAX_CONNECTIONS in the source and compile.

  • 1/31/2010 - v1.1:
    Added multi-connection support! You can connect up to a max of 20 databases at a time!
    Added threaded query callback! You've all been asking for it! And here it is!
    Added error handling callback! You can now have full control of error handling!
    Added mysql_result_stored function to check if a result was successfully stored after mysql_store_result.
    Added 1 more param to mysql_log to toggle errors printed to the server window. And changed the first param to take log types (info below).
    Fixed many small script errors and optimized most of the functions!

  • 1/26/10 - v1.0.2:
    Fixed a couple more small problems.
    Added functions: mysql_fetch_field_num, mysql_fetch_int, and mysql_fetch_float.
    Cleaned up the code a bit.

  • 1/24/10 - v1.0.1:
    Fixed small memory leak and bug that crashed the server if mysql_fetch_row was called with a result ~256 cells big and when mysql_log was on.
About:

This is a MySQL Plugin that enables you to connect to any MySQL database to make any query, and retrieve the results. This is pretty much the fastest and most stable MySQL plugin in SA:MP. This plugin is setup so it will send you an error message on what you've done wrong instead of just crashing, making it very stable. For example, if you execute a SELECT query and forget to store the result and try to retrieve it with mysql_fetch_row, the mysql_fetch_row function will send: "MySQL Error: 'mysql_fetch_row' called when no result stored." to the console window. This plugin is also equipped with a whopping 28 native functions, all useful for your SA:MP server.

How To Install:
  • Windows:
    1. Download the plugin.
    2. Place the mysql.dll in your plugins folder, and move libmysql.dll to the same directory the server exe is.
    3. Open your server.cfg and add "mysql" to "plugins", if there is no "plugins" line, add one.
    4. Add mysql.inc to your /pawno/includes/ and add "#include <mysql>" to the top of your script.
  • Linux:
    1. Download the plugin to your linux server.
    2. Place the mysql.so in your plugins folder.
    3. Open your server.cfg and add "mysql.so" to "plugins", if there is no "plugins" line, add one.
    4. On the PC that you compile your script on, add mysql.inc to your /pawno/includes/ and add "#include <mysql>" to the top of your script.
Functions:
  • native MySQL:mysql_init(logtype = LOG_ONLY_ERRORS, printerrors = 1);
  • native mysql_connect(const host[], const user[], const pass[], const db[], MySQL:handle = (MySQL:0), auto_reconnect = 0);
  • native mysql_close(MySQL:handle = MySQL:0);
  • native mysql_refresh(options, MySQL:handle = MySQL:0);
  • native mysql_select_db(const db[], MySQL:handle = MySQL:0);
  • native mysql_query(const query[], resultid = (-1), spareid = (0), MySQL:handle = MySQL:0);
  • native mysql_query_array(const query[], resultid = (-1), {Float,_}:extravars[], MySQL:handle = (MySQL:0));
  • native mysql_store_result(MySQL:handle = MySQL:0);
  • native mysql_free_result(MySQL:handle = MySQL:0);
  • native mysql_result_stored(MySQL:handle = MySQL:0);
  • native mysql_fetch_field(const fieldname[], dest[], MySQL:handle = MySQL:0);
  • native mysql_fetch_field_num(fieldnum, dest[], MySQL:handle = MySQL:0);
  • native mysql_fetch_row(dest[], const splitter[] = "|", MySQL:handle = MySQL:0);
  • native mysql_fetch_row_data(MySQL:handle = MySQL:0);
  • native mysql_real_escape_string(const string[], dest[], MySQL:handle = MySQL:0);
  • native mysql_num_rows(MySQL:handle = MySQL:0);
  • native mysql_num_fields(MySQL:handle = MySQL:0);
  • native mysql_affected_rows(MySQL:handle = MySQL:0);
  • native mysql_insert_id(MySQL:handle = MySQL:0);
  • native mysql_ping(MySQL:handle = MySQL:0);
  • native mysql_error(dest[], MySQL:handle = MySQL:0);
  • native mysql_errno(MySQL:handle = MySQL:0);
  • native mysql_warning_count(MySQL:handle = MySQL:0();
  • native mysql_info(dest[], MySQL:handle = MySQL:0);
  • native mysql_stat(dest[], MySQL:handle = MySQL:0);
  • native mysql_get_server_info(dest[], MySQL:handle = MySQL:0);
  • native mysql_get_host_info(dest[], MySQL:handle = MySQL:0);
  • native mysql_data_seek(rownum, MySQL:handle = MySQL:0);
  • native mysql_set_character_set(const csname[], MySQL:handle = MySQL:0);
  • native mysql_get_character_set(csname[], MySQL:handle = MySQL:0);
  • native mysql_fetch_int(MySQL:handle = MySQL:0);
  • native mysql_fetch_float(MySQL:handle = MySQL:0);
  • native mysql_fetch_string(dest[], MySQL:handle = MySQL:0);
Wiki Page (Detailed Function List):

Can be found here.

Feel free to contribute to the wiki page.

Callbacks:
  • forward OnMysqlQuery(resultid, spareid, MySQL:handle)
    • You use this callback if you want to have your query executed in a separate thread. Avoiding any lagging of the server itself, it basically separates the query from the server so if it takes the query 5 seconds to run, the server wont lag at all. You can now use spareid to pass a playerid or any other id.
    • Example below on use.
  • forward OnMysqlQueryArray(resultid, extravars[], MySQL:handle)
    • You use this callback for the same reason as OnMysqlQuery, but if you want to pass more than 1 extra variable, and/or if you want to pass something other then an integer. Because it uses the {Float,_}: tag, you can pass any tag, you can also pass a string to the callback.
    • Example below on use.
  • forward OnMysqlError(error[], errorid, MySQL:handle)
    • You use this callback to have 100% control on handling errors from mysql queries and functions. With the raw data being passed through you can do anything you want with it. You can also print the errors from your script and disable errors being printed from the plugin with mysql_log params (explained below). Also, for the advanced users, HERE is a list of error codes.
    • Example below on use.
See the wiki page for callback examples.

Downloads (2.1.1 - Build 165):


IMPORTANT: If you cannot compile your own mysql build (on a hosted server e.g. ServerFFS), use the static build.
Running on Linux?

Having problems with libmysqlclient_r.so.X?

If you cannot do this, use the static build.
  1. First of all, you must locate where your mysql libraries are located.
    Mine are located at: /usr/local/mysql/lib/mysql
  2. Now, open libc.conf located in /etc/ld.so.conf.d
  3. Add the mysql libraries' path to the end of this file, on a new line.
  4. Save the file, and execute: ldconfig
Want To Compile It Yourself?
  • Windows:
    • Visual Studio 2008 Required
    • Open the project file and click Build>Build Solution or press F7
  • Linux:
    • make, gcc, g++, mysql-client, and libmysqlclient15-dev required
    • A thread-safe mysql build needs to also be installed. See here, and here for more info on how to do this.
    • cd to the directory the plugin files are in and simply type "make"
Thanks To:
  • Kye - Plugin SDK and param count define
  • Incognito - AMX list / queue techniques
  • Wicko - Helping me with understanding threading / coding support / bug catching
  • Blacklite - Linux compiling / Testing / Bug fixing / Split function (in mysql.inc)
  • Popz - Linux compiling help
Post Comments And Questions!
[/list][/list]
Reply


Messages In This Thread
[REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by StrickenKid - 24.01.2010, 07:41
Re: [REL] SA:MP MySQL Plugin 1.0 - by Blacklite - 24.01.2010, 07:46
[REL] SA:MP MySQL Plugin 1.0 - by [NoV]LaZ - 24.01.2010, 07:54
Re: [REL] SA:MP MySQL Plugin 1.0 - by StrickenKid - 24.01.2010, 07:58
Re: [REL] SA:MP MySQL Plugin 1.0 - by MX_Master - 24.01.2010, 08:50
Re: [REL] SA:MP MySQL Plugin 1.0 - by Toney - 24.01.2010, 09:28
Re: [REL] SA:MP MySQL Plugin 1.0 - by potato - 24.01.2010, 09:53
Re: [REL] SA:MP MySQL Plugin 1.0 - by Jay_ - 24.01.2010, 10:50
Re: [REL] SA:MP MySQL Plugin 1.0 - by MenaceX^ - 24.01.2010, 10:56
Re: [REL] SA:MP MySQL Plugin 1.0 - by Dreftas - 24.01.2010, 13:27
Re: [REL] SA:MP MySQL Plugin 1.0 - by Eazy_Efolife - 24.01.2010, 13:28
Re: [REL] SA:MP MySQL Plugin 1.0 - by Dreftas - 24.01.2010, 13:55
Re: [REL] SA:MP MySQL Plugin 1.0 - by Misiek - 24.01.2010, 14:08
Re: [REL] SA:MP MySQL Plugin 1.0 - by Toney - 24.01.2010, 14:32
Re: [REL] SA:MP MySQL Plugin 1.0 - by Dreftas - 24.01.2010, 16:01
Re: [REL] SA:MP MySQL Plugin 1.0 - by StrickenKid - 24.01.2010, 16:05
Re: [REL] SA:MP MySQL Plugin 1.0 - by MenaceX^ - 24.01.2010, 16:48
Re: [REL] SA:MP MySQL Plugin 1.0 - by StrickenKid - 24.01.2010, 16:58
Re: [REL] SA:MP MySQL Plugin 1.0 - by Dreftas - 24.01.2010, 17:19
Re: [REL] SA:MP MySQL Plugin 1.0 - by Blantas - 24.01.2010, 17:45
Re: [REL] SA:MP MySQL Plugin 1.0 - by StrickenKid - 24.01.2010, 17:49
Re: [REL] SA:MP MySQL Plugin 1.0 - by pliva_sb - 24.01.2010, 18:59
Re: [REL] SA:MP MySQL Plugin 1.0 - by Dreftas - 24.01.2010, 19:35
Re: [REL] SA:MP MySQL Plugin 1.0 - by MenaceX^ - 24.01.2010, 19:38
Re: [REL] SA:MP MySQL Plugin 1.0 - by Dreftas - 24.01.2010, 19:49
Re: [REL] SA:MP MySQL Plugin 1.0 - by MenaceX^ - 24.01.2010, 19:53
Re: [REL] SA:MP MySQL Plugin 1.0 - by StrickenKid - 24.01.2010, 20:10
Re: [REL] SA:MP MySQL Plugin 1.0 - by Toney - 24.01.2010, 20:15
Re: [REL] SA:MP MySQL Plugin 1.0 - by Cr0ssFir3 - 24.01.2010, 20:36
Re: [REL] SA:MP MySQL Plugin 1.0.1 - by Dreftas - 24.01.2010, 20:51
Re: [REL] SA:MP MySQL Plugin 1.0.1 - by Cr0ssFir3 - 24.01.2010, 20:53
Re: [REL] SA:MP MySQL Plugin 1.0.1 - by Dreftas - 25.01.2010, 10:34
Re: [REL] SA:MP MySQL Plugin 1.0.1 - by On_Top_Non_Stop - 25.01.2010, 12:56
Re: [REL] SA:MP MySQL Plugin 1.0.1 - by StrickenKid - 25.01.2010, 12:56
Re: [REL] SA:MP MySQL Plugin 1.0.1 - by On_Top_Non_Stop - 25.01.2010, 13:20
Re: [REL] SA:MP MySQL Plugin 1.0.1 - by dirkblok - 25.01.2010, 14:30
Re: [REL] SA:MP MySQL Plugin 1.0.1 - by Dreftas - 25.01.2010, 14:43
Re: [REL] SA:MP MySQL Plugin 1.0.1 - by Cr0ssFir3 - 25.01.2010, 14:51
Re: [REL] SA:MP MySQL Plugin 1.0.1 - by Dreftas - 25.01.2010, 15:09
Re: [REL] SA:MP MySQL Plugin 1.0.1 - by SiJ - 25.01.2010, 16:55
Re: [REL] SA:MP MySQL Plugin 1.0.2 - by On_Top_Non_Stop - 27.01.2010, 19:14
Re: [REL] SA:MP MySQL Plugin 1.0.2 - by V_FoR_VendettA - 27.01.2010, 19:18
Re: [REL] SA:MP MySQL Plugin 1.0.2 - by MenaceX^ - 27.01.2010, 19:35
Re: [REL] SA:MP MySQL Plugin 1.0.2 - by StrickenKid - 28.01.2010, 13:06
Re: [REL] SA:MP MySQL Plugin 1.0.2 - by On_Top_Non_Stop - 28.01.2010, 17:51
Re: [REL] SA:MP MySQL Plugin 1.0.2 - by MenaceX^ - 28.01.2010, 21:03
Re: [REL] SA:MP MySQL Plugin 1.0.2 - by StrickenKid - 28.01.2010, 21:09
Re: [REL] SA:MP MySQL Plugin 1.0.2 - by MenaceX^ - 29.01.2010, 05:05
Re: [REL] SA:MP MySQL Plugin 1.0.2 - by Cr0ssFir3 - 29.01.2010, 14:34
Re: [REL] SA:MP MySQL Plugin 1.0.2 - by Eazy_Efolife - 30.01.2010, 03:30
Re: [REL] SA:MP MySQL Plugin 1.1 - by StrickenKid - 01.02.2010, 01:14
Re: [REL] SA:MP MySQL Plugin 1.1 - by MenaceX^ - 01.02.2010, 04:35
Re: [REL] SA:MP MySQL Plugin 1.1 - by actiwe - 01.02.2010, 10:18
Re: [REL] SA:MP MySQL Plugin 1.1 - by MenaceX^ - 01.02.2010, 10:58
Re: [REL] SA:MP MySQL Plugin 1.1 - by Mike - 01.02.2010, 13:41
Re: [REL] SA:MP MySQL Plugin 1.1 - by Misiek - 01.02.2010, 19:09
Re: [REL] SA:MP MySQL Plugin 1.1 - by StrickenKid - 01.02.2010, 20:52
Re: [REL] SA:MP MySQL Plugin 1.1 - by Maniek - 02.02.2010, 10:15
Re: [REL] SA:MP MySQL Plugin 1.1 - by Misiek - 02.02.2010, 12:51
Re: [REL] SA:MP MySQL Plugin 1.1 - by StrickenKid - 02.02.2010, 12:59
Re: [REL] SA:MP MySQL Plugin 1.1.1 - by MenaceX^ - 03.02.2010, 09:35
Re: [REL] SA:MP MySQL Plugin 1.1.1 - by Misiek - 03.02.2010, 10:42
Re: [REL] SA:MP MySQL Plugin 1.1.1 - by Misiek - 03.02.2010, 16:23
Re: [REL] SA:MP MySQL Plugin 1.1.1 - by StrickenKid - 03.02.2010, 22:10
Re: [REL] SA:MP MySQL Plugin 1.1.2 - by Cr0ssFir3 - 04.02.2010, 00:36
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Bacovsky - 16.02.2010, 13:24
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by MenaceX^ - 16.02.2010, 14:27
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Chaprnks - 17.02.2010, 02:54
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Bacovsky - 17.02.2010, 13:19
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Eazy_Efolife - 17.02.2010, 22:41
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Norn - 18.02.2010, 02:18
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Cedimedi - 19.02.2010, 19:58
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Light232 - 21.02.2010, 21:27
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Jack_Fox - 21.02.2010, 21:55
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by StrickenKid - 21.02.2010, 22:02
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by MenaceX^ - 24.02.2010, 16:01
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Julian2574 - 24.02.2010, 16:07
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by MenaceX^ - 24.02.2010, 16:10
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Julian2574 - 24.02.2010, 16:12
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Darkly_Face - 24.02.2010, 16:40
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Julian2574 - 25.02.2010, 10:30
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by MenaceX^ - 25.02.2010, 11:18
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Darkly_Face - 25.02.2010, 13:31
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by [WSM]Deadly_Evil - 25.02.2010, 13:33
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by MenaceX^ - 25.02.2010, 15:25
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by dengli - 28.02.2010, 09:31
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by xxmitsu - 28.02.2010, 10:16
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by dengli - 28.02.2010, 11:49
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by xxmitsu - 28.02.2010, 12:30
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by -Davee- - 28.02.2010, 12:35
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by xxmitsu - 28.02.2010, 12:53
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by -Davee- - 28.02.2010, 13:00
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by xxmitsu - 28.02.2010, 13:14
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by -Davee- - 28.02.2010, 13:14
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Sergei - 28.02.2010, 13:18
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by -Davee- - 28.02.2010, 13:22
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by MenaceX^ - 28.02.2010, 13:55
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by -Davee- - 28.02.2010, 13:59
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Sergei - 28.02.2010, 14:02
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by -Davee- - 28.02.2010, 14:04
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Sergei - 28.02.2010, 14:25
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by -Davee- - 28.02.2010, 14:28
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Julian2574 - 28.02.2010, 14:41
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by dengli - 01.03.2010, 04:03
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by xxmitsu - 01.03.2010, 09:09
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by MenaceX^ - 01.03.2010, 10:11
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by dengli - 01.03.2010, 13:02
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by -Davee- - 01.03.2010, 15:18
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by MenaceX^ - 01.03.2010, 15:42
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by -Davee- - 01.03.2010, 15:45
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by MenaceX^ - 01.03.2010, 17:07
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by xxmitsu - 01.03.2010, 18:03
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by -Davee- - 01.03.2010, 19:38
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by StrickenKid - 01.03.2010, 20:45
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by -Davee- - 01.03.2010, 20:53
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Dreftas - 07.03.2010, 16:23
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Calgon - 07.03.2010, 20:41
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Wutschkooo - 07.03.2010, 22:09
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Calgon - 08.03.2010, 13:29
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Wutschkooo - 08.03.2010, 15:54
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Carlton - 09.03.2010, 23:46
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by s1cr0n - 13.03.2010, 19:55
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by Salmon - 14.03.2010, 16:41
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by StrickenKid - 14.03.2010, 16:59
Re: [REL] SA:MP MySQL Plugin 1.2 - The Easiest Multithreading Implementation! - by yoyo3071a - 20.03.2010, 10:20
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Double-O-Seven - 16.08.2010, 14:11
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Toni - 16.08.2010, 14:13
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Double-O-Seven - 16.08.2010, 14:19
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Toni - 16.08.2010, 14:24
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Thomas. - 19.08.2010, 02:47
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by ihatetn931 - 19.08.2010, 03:05
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Luka P. - 19.08.2010, 14:24
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by MrDeath537 - 19.08.2010, 18:04
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Stefan_Toretto - 19.08.2010, 19:47
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Scenario - 20.08.2010, 02:46
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by mmrk - 30.08.2010, 04:22
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Luka P. - 07.09.2010, 13:44
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by selEcT - 07.09.2010, 18:07
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by aeular - 07.09.2010, 22:02
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by selEcT - 08.09.2010, 05:36
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by whitedragon - 08.09.2010, 11:50
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by leo9414 - 10.09.2010, 21:05
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by [Ask]Terminator - 11.09.2010, 14:28
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Cameltoe - 11.09.2010, 15:42
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Toni - 12.09.2010, 15:36
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by [Ask]Terminator - 12.09.2010, 16:39
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Cameltoe - 12.09.2010, 17:59
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by [Ask]Terminator - 12.09.2010, 18:02
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Scenario - 15.09.2010, 00:38
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Toni - 15.09.2010, 02:23
Re : [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Peppe95 - 15.09.2010, 08:48
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Luka P. - 15.09.2010, 11:51
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Scenario - 15.09.2010, 13:17
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by toneysix - 15.09.2010, 13:18
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Luka P. - 15.09.2010, 15:02
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by toneysix - 16.09.2010, 00:21
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Cameltoe - 16.09.2010, 06:51
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by whitedragon - 17.09.2010, 03:59
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by StrickenKid - 06.10.2010, 00:26
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by StrickenKid - 06.10.2010, 00:33
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Calgon - 06.10.2010, 17:55
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by [03]Garsino - 06.10.2010, 18:52
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Scenario - 06.10.2010, 19:00
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by [03]Garsino - 06.10.2010, 19:04
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Scenario - 07.10.2010, 22:01
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Calgon - 07.10.2010, 22:03
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Scenario - 07.10.2010, 22:05
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Burridge - 08.10.2010, 08:19
Re: [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by Coicatak - 09.10.2010, 14:57
Re : [REL] SA:MP MySQL Plugin 2.0 - Released (8/7/2010) - by vardanega - 09.10.2010, 19:55
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Cameltoe - 25.11.2010, 19:48
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by The_Gangstas - 25.11.2010, 22:06
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Calgon - 25.11.2010, 22:08
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by The_Gangstas - 25.11.2010, 22:11
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Calgon - 25.11.2010, 22:13
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by The_Gangstas - 25.11.2010, 22:16
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Thomas. - 25.11.2010, 22:42
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by multinfs - 26.11.2010, 18:12
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by The_Gangstas - 27.11.2010, 01:01
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Remis - 27.11.2010, 05:21
AW: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Trooper[Y] - 10.12.2010, 18:31
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by StrickenKid - 10.12.2010, 23:34
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by StrickenKid - 11.12.2010, 00:34
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Burridge - 11.12.2010, 04:29
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Treyvan - 11.12.2010, 10:35
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by StrickenKid - 11.12.2010, 20:32
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Treyvan - 12.12.2010, 02:32
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by decondelite - 12.12.2010, 20:18
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by The_Gangstas - 13.12.2010, 01:58
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by StrickenKid - 13.12.2010, 02:25
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Jay_ - 13.12.2010, 22:25
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by StrickenKid - 14.12.2010, 20:59
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Memoryz - 14.12.2010, 23:49
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Redgie - 16.12.2010, 19:41
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Memoryz - 17.12.2010, 00:03
AW: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Momo5000 - 18.12.2010, 05:48
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by aeular - 18.12.2010, 16:38
AW: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Momo5000 - 18.12.2010, 21:34
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by The_Gangstas - 18.12.2010, 23:59
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Forairan - 19.12.2010, 00:12
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by The_Gangstas - 19.12.2010, 00:47
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Forairan - 19.12.2010, 00:48
AW: Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Momo5000 - 19.12.2010, 01:53
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by X35B - 19.12.2010, 03:30
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by JernejL - 19.12.2010, 22:25
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Jay_ - 19.12.2010, 23:36
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by StrickenKid - 20.12.2010, 02:30
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by thimo - 22.12.2010, 17:17
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by The_Gangstas - 22.12.2010, 17:41
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by papagei9 - 24.12.2010, 13:54
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by StrickenKid - 24.12.2010, 13:59
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Redgie - 24.12.2010, 21:36
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Luis- - 24.12.2010, 23:49
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by ihatetn931 - 29.12.2010, 15:55
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Burridge - 29.12.2010, 16:37
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Luka P. - 29.12.2010, 18:13
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by ihatetn931 - 29.12.2010, 21:13
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by ihatetn931 - 31.12.2010, 08:45
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by selEcT - 31.12.2010, 08:45
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by StrickenKid - 31.12.2010, 15:44
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by LeNy - 02.01.2011, 12:12
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Cank - 03.01.2011, 21:36
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by StrickenKid - 03.01.2011, 21:44
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by gtg2808 - 08.01.2011, 13:04
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by xxmitsu - 08.01.2011, 13:27
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Steamator - 10.01.2011, 15:47
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Burridge - 11.01.2011, 09:16
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by enfall - 15.01.2011, 14:09
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Burridge - 15.01.2011, 14:16
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by StrickenKid - 15.01.2011, 15:36
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by acuworld - 23.01.2011, 08:14
AW: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Akmet - 23.01.2011, 09:58
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Burridge - 23.01.2011, 11:06
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by KaleOtter - 24.01.2011, 21:39
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Burridge - 24.01.2011, 21:50
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by StrickenKid - 25.01.2011, 03:22
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by StrickenKid - 25.01.2011, 23:08
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by yanir3 - 26.01.2011, 09:16
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by yanir3 - 26.01.2011, 09:32
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Burridge - 26.01.2011, 09:41
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by StrickenKid - 27.01.2011, 01:50
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by PeteShag - 27.01.2011, 03:44
Re: [REL] SA:MP MySQL Plugin 2.1 - Released (11/24/2010) - by Deji - 28.01.2011, 23:47
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Raimis_R - 01.02.2011, 17:00
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by selEcT - 04.02.2011, 13:34
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Dj_maryo1993 - 09.02.2011, 14:17
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Fro1sha - 10.02.2011, 16:13
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by n8 - 11.02.2011, 14:59
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by n8 - 12.02.2011, 09:58
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by StrickenKid - 12.02.2011, 17:46
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Burridge - 12.02.2011, 18:57
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by StrickenKid - 12.02.2011, 19:44
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Redirect Left - 12.02.2011, 20:46
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by xxmitsu - 12.02.2011, 20:52
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Burridge - 13.02.2011, 09:22
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by JulianM - 13.02.2011, 19:20
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by kLx - 17.02.2011, 15:23
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by RingoRus - 28.02.2011, 10:56
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Akmet - 28.02.2011, 13:58
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Sheeba - 28.02.2011, 17:24
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by MahmutBey - 01.03.2011, 16:41
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Unknown123 - 01.03.2011, 18:34
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Burridge - 01.03.2011, 19:13
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by CJ101 - 02.03.2011, 17:26
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Redirect Left - 06.03.2011, 17:38
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by CraZy_KiLLaH - 08.03.2011, 10:35
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by tr.power - 08.03.2011, 18:01
Re: AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by HACKHERS - 08.03.2011, 18:54
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by StrickenKid - 15.03.2011, 22:23
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Fro1sha - 16.03.2011, 06:31
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Akmet - 16.03.2011, 08:32
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by StrickenKid - 16.03.2011, 20:23
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Akmet - 16.03.2011, 20:45
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by StrickenKid - 16.03.2011, 20:47
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Akmet - 16.03.2011, 21:07
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by StrickenKid - 16.03.2011, 21:11
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Akmet - 16.03.2011, 21:14
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by StrickenKid - 16.03.2011, 21:21
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Akmet - 16.03.2011, 21:27
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by StrickenKid - 19.03.2011, 00:13
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Akmet - 19.03.2011, 12:17
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by MyLife - 20.03.2011, 18:36
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Akmet - 20.03.2011, 21:41
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by MyLife - 21.03.2011, 06:14
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Akmet - 21.03.2011, 15:11
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by StrickenKid - 21.03.2011, 23:07
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by russ0 - 22.03.2011, 19:37
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Akmet - 22.03.2011, 22:23
Re: AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by russ0 - 22.03.2011, 22:33
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Akmet - 23.03.2011, 08:23
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by verti4cal - 31.03.2011, 17:11
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Donya - 31.03.2011, 21:37
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by [Ask]Terminator - 01.04.2011, 16:58
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by [MWR]Blood - 01.04.2011, 18:38
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by [Ask]Terminator - 01.04.2011, 18:45
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Akmet - 01.04.2011, 18:51
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by [Ask]Terminator - 01.04.2011, 19:21
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by [Ask]Terminator - 02.04.2011, 19:12
Respuesta: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Fernando_Diaz - 05.04.2011, 19:24
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by dudekz - 26.04.2011, 15:08
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by marko94 - 26.04.2011, 22:20
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Hobod - 29.04.2011, 11:05
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by tostbrot - 30.04.2011, 13:46
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Bubelbub - 04.05.2011, 14:33
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by The_Godboy - 05.05.2011, 14:01
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Brendan_Thomson - 06.05.2011, 18:42
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Stefan_Toretto - 08.05.2011, 17:52
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by dud - 14.05.2011, 12:58
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by ExoSanty - 16.05.2011, 17:30
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by lolumadd_ - 16.05.2011, 19:24
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by -Davee- - 17.05.2011, 04:32
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by lolumadd_ - 18.05.2011, 02:21
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Donya - 18.05.2011, 22:15
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by RobotXX - 23.05.2011, 10:35
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by pantelimonfl - 23.05.2011, 11:47
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Steamator - 19.06.2011, 20:53
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by steki. - 25.06.2011, 10:45
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by langricr - 25.06.2011, 10:55
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by steki. - 25.06.2011, 10:59
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by steki. - 25.06.2011, 11:01
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Warfish - 08.07.2011, 19:08
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by StrickenKid - 09.07.2011, 04:27
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by MdeRooy - 18.07.2011, 14:59
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by StrickenKid - 18.07.2011, 18:19
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by MdeRooy - 18.07.2011, 19:44
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Jr. Jeh - 28.07.2011, 19:42
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Ork3n - 02.08.2011, 14:19
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Jeffry - 06.08.2011, 12:52
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Dennis_Smith - 10.08.2011, 06:26
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Toni - 14.08.2011, 03:55
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by StrickenKid - 14.08.2011, 03:56
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Cole_Phelps - 19.08.2011, 12:11
Re: AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by AndreT - 19.08.2011, 12:57
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Cole_Phelps - 19.08.2011, 13:06
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by ddldl - 11.09.2011, 13:11
AW: Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Tigerkiller - 25.09.2011, 08:56
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Programie - 28.09.2011, 20:19
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Blantas - 29.09.2011, 12:34
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Programie - 03.10.2011, 03:08
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Slice - 09.10.2011, 22:25
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by tony_fitto - 22.10.2011, 16:56
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by GangsTa_ - 22.10.2011, 17:04
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by RingoRus - 06.11.2011, 13:35
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by kr0tchy - 12.11.2011, 13:38
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Luis- - 12.11.2011, 18:44
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by HACKHERS - 19.11.2011, 15:57
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Johndaonee - 22.11.2011, 15:00
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by tliamg - 25.11.2011, 23:01
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Mischi - 29.11.2011, 18:25
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Jon_De - 01.12.2011, 10:19
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Danielo - 09.01.2012, 17:23
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Klick11 - 25.01.2012, 14:40
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by C0dy09 - 25.01.2012, 17:12
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by nacimbogoss - 25.01.2012, 17:47
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by inferno211 - 25.01.2012, 18:39
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by C0dy09 - 25.01.2012, 19:29
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by inferno211 - 25.01.2012, 19:32
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Klick11 - 25.01.2012, 20:00
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by StrickenKid - 25.01.2012, 23:08
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Blacklite - 25.01.2012, 23:20
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by RingoRus - 09.02.2012, 16:07
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by CrawScale - 13.02.2012, 13:44
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by povo - 11.03.2012, 10:11
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Rac3r - 13.03.2012, 13:11
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by rbN. - 13.03.2012, 14:17
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Infamous - 13.03.2012, 14:44
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by rbN. - 14.03.2012, 16:42
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Infamous - 14.03.2012, 17:13
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by eakwarp - 21.03.2012, 21:47
Respuesta: Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by OPremium - 22.03.2012, 00:03
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Blacklite - 24.03.2012, 21:29
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by TheArcher - 24.03.2012, 22:09
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Lechivre - 25.03.2012, 19:56
Respuesta: Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by OPremium - 25.03.2012, 20:24
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by lolumadd_ - 02.04.2012, 05:10
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Kar - 02.04.2012, 05:15
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by lolumadd_ - 02.04.2012, 05:31
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Kar - 02.04.2012, 05:35
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Czeladnik - 06.04.2012, 16:59
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by AndreT - 06.04.2012, 17:36
Re: AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Ainseri - 21.04.2012, 13:41
AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by engel86 - 21.04.2012, 13:48
Re: AW: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Ainseri - 21.04.2012, 14:16
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Spooky - 23.04.2012, 04:34
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by rbN. - 23.04.2012, 12:16
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Ainseri - 23.04.2012, 14:32
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Danny1 - 26.04.2012, 18:23
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Ohioboii614 - 27.04.2012, 08:31
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by kryptonice - 27.04.2012, 09:33
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Danny1 - 27.04.2012, 11:27
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Burridge - 31.05.2012, 09:51
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Djole1337 - 25.11.2012, 20:19
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by TheChimpJr - 02.12.2012, 22:08
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Vizi - 03.12.2012, 08:50
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by !Florian - 09.12.2012, 21:36
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Bicentric - 09.12.2012, 22:02
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by !Florian - 09.12.2012, 22:07
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by ParanoidZ - 17.12.2012, 14:56
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by MagicznyKacper - 20.12.2012, 16:02
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Logan_Adams - 12.01.2013, 19:12
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Geeboi_Mehdi - 13.03.2013, 00:11
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Psycho77 - 18.04.2013, 18:02
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by michaelcosyns - 18.04.2013, 18:33
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Stefand - 06.05.2013, 13:24
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Pooh7 - 06.05.2013, 13:30
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Psycho77 - 27.05.2013, 18:04
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by (SC)=Sky= - 27.05.2013, 19:02
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by rattawit23 - 30.05.2013, 14:58
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by GTA967 - 11.06.2013, 18:47
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Deviant96 - 25.06.2013, 07:30
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by qazwsx - 19.07.2013, 08:11
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Redirect Left - 07.08.2015, 23:49
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by decondelite - 14.08.2015, 19:09
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Pr0GreSiVe - 01.09.2015, 11:43
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Fancy - 01.09.2015, 19:30
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Braindawg - 12.09.2015, 12:01
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by DRIFT_HUNTER - 12.09.2015, 13:15
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Yousha - 27.10.2015, 19:31
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Treyvan - 28.10.2015, 00:07
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by rajabilal555 - 28.12.2015, 06:14
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by DRIFT_HUNTER - 28.12.2015, 08:24
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Noir - 21.02.2016, 21:09
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by decondelite - 24.10.2016, 19:35
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by aakinger123 - 13.11.2016, 14:18
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by TopShooter - 13.11.2016, 15:27
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Bomber07 - 05.01.2017, 00:44
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Private200 - 05.01.2017, 01:39
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Noir - 10.01.2018, 18:57
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by PawnoQ - 10.01.2018, 19:26
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Redirect Left - 10.01.2018, 23:53
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Zeus666 - 19.04.2018, 08:54
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by Kaperstone - 19.04.2018, 15:46
Re: [REL] SA:MP MySQL Plugin 2.1.1 - Released (1/25/2011 - by l0gic - 03.04.2020, 11:08

Forum Jump:


Users browsing this thread: 1 Guest(s)