12.12.2010, 20:18
I found a SMALL error in the PAWNO include:
native mysql_connect(const host[], const user[], const pass[], const db[], MySQL:handle = (MySQL:0), auto_reconnect = 0);
Should be this, if we read the SAMP wiki:
native mysql_connect(const host[], const user[], const pass[], const db[], auto_reconnect = 0, MySQL:handle = (MySQL:0));
But, when running the server, it's the PAWNO's version that is the good one. The pluging needs to be fixed to read the params in the good order.
native mysql_connect(const host[], const user[], const pass[], const db[], MySQL:handle = (MySQL:0), auto_reconnect = 0);
Should be this, if we read the SAMP wiki:
native mysql_connect(const host[], const user[], const pass[], const db[], auto_reconnect = 0, MySQL:handle = (MySQL:0));
But, when running the server, it's the PAWNO's version that is the good one. The pluging needs to be fixed to read the params in the good order.