Hi, ich bin zurzeit dabei ein Fraktions System auf Mysqlbasis zu bauen.
Grade bin ich dabei die Farben aus der DB auszulesen und den Spieler umfärben.  
und bekomme immer folgende Errors:
(17) : error 035: argument type mismatch (argument 3)
(18) : error 035: argument type mismatch (argument 2)
Der Code:
  			new Query[200];
           		format(Query, sizeof(Query), "SELECT `faccolor` FROM `facinfo` WHERE facid = '%s' ", GetPVarInt(playerid, "Factionid"));
           		mysql_query(Query);
           		mysql_store_result();
      			if(!mysql_num_rows())
           		{
           		}
           		else
           		{
     				        new line[750];
		   			if(mysql_fetch_row(line)) //Fetches the line
					{
       					        new data1[2][50]; //The data strings
     					        new data0[1]; //The data variables
       					        sscanf(line, "p|dss", data0[0], data1[0], data1[1]); //Splits the line with sscanf
          				        SetPVarInt(playerid, "Pfaccol", data0[0]);
   					        SetPlayerColor(playerid, data0[0]);
					}
				}
Hoffe ihr wisst die Lösung