20.01.2013, 14:42
OnQueryFinish is not meant to be used with R7 I don't think.
You have to use mysql_function_query(); and send it to a function, created by yourself such as:
You have to use mysql_function_query(); and send it to a function, created by yourself such as:
pawn Код:
mysql_function_query(connectionHandle, query, true, "OnQueryFinish", "i", playerid);
pawn Код:
forward OnQueryFinish(extraid);
public OnQueryFinish(extraid)
{
return 1;
}